summaryrefslogtreecommitdiff
blob: 578b8716d0bc1a8b3fb75b736bbc7bca3bb75e52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

RESTRICT="mirror"

inherit linux-mod eutils multilib

DESCRIPTION="eHD PCI card; driver svn r${PV}"
HOMEPAGE="http://www.reel-multimedia.com"
SRC_URI="http://vdr.websitec.de/download/${PN}/${P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}
		>=sys-fs/udev-141"

S=${WORKDIR}/hdshm3

MODULE_NAMES="hdshm(misc:${S}/x86/driver)"
BUILD_TARGETS="all"

pkg_setup() {

	if ! kernel_is 2 6; then
		die "This package works only with 2.6 kernel!"
	fi

	linux-mod_pkg_setup

	BUILD_PARAMS="INCLUDE=${KV_DIR}"
}

src_prepare() {

	if kernel_is ge 2 6 26 ; then
		sed -i "${S}"/src/driver/hdshm.c \
			-e "s:pci_get_device_reverse:pci_get_device:" \
			-e "s:class_device_create:device_create:" \
			-e "s:class_device_destroy:device_destroy:"
	fi
}

src_install() {
	linux-mod_src_install

	insinto $(get_libdir)/udev/rules.d
	doins "${FILESDIR}"/45-reelbox.rules

	insinto /etc/modprobe.d
	doins "${FILESDIR}"/hdshm.conf
}

pkg_postinst() {
	linux-mod_pkg_postinst

	OLD_PARAM=$( cat /etc/make.conf | grep EHD_FRAMEBUFFER )

	if [ -n "${OLD_PARAM}" ]; then
		echo
		elog "The EHD_FRAMEBUFFER= parameter in /etc/make.conf is deprecated."
		elog "You can safely remove it."
	fi
		echo
		elog "Use for your scripts, progs, ..."
		elog "the device /dev/fb_reel"
		echo
}