blob: 9c266a4f834d753e7f556365a3db0485d4f81eae (
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
75
76
77
78
79
80
81
82
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/em8300-libraries/em8300-libraries-0.12.0-r1.ebuild,v 1.9 2004/06/25 00:39:50 agriffis Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="em8300 (RealMagic Hollywood+/Creative DXR3) video decoder card libraries"
HOMEPAGE="http://dxr3.sourceforge.net"
SRC_URI="mirror://sourceforge/dxr3/${P/-libraries/}.tar.gz"
DEPEND="media-video/em8300-modules
x11-libs/gtk+"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
src_unpack () {
unpack ${A}
cd ${WORKDIR}
mv ${A/.tar.gz/} ${P}
cd ${S}
#Eliminate extra compiling and prune out some disk space usage
sed -e "s:modules/\ ::g" \
-e "s:\ modules.tar.gz::g" \
Makefile.in > Makefile.in.hacked
mv Makefile.in.hacked Makefile.in
}
src_compile () {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--datadir=/usr/share || die
make all || die
}
src_install () {
cd ${S}/scripts
mv microcode_upload.pl microcode_upload.pl.old
sed -e "s:/usr/share/misc/em8300.uc:/usr/share/em8300/em8300.uc:g" \
< microcode_upload.pl.old > microcode_upload.pl
rm microcode_upload.pl.old
cd ${S}
make em8300incdir=${D}/usr/include/linux/ \
prefix=${D}/usr \
datadir=${D}/usr/share \
sysconfdir=/etc \
oldincludedir=${D}/usr/include \
install || die
insinto /usr/share/em8300
doins modules/em8300.uc
#this isn't how the installer does this, but it makes more
#sense than copying it like they do.
dosym /usr/share/em8300/microcode_upload.pl /usr/bin/em8300init
dodoc AUTHORS COPYING ChangeLog NEWS README
}
pkg_postinst() {
einfo
einfo "The em8300 libraries and modules have now beein installed,"
einfo "you will probably want to add /usr/bin/em8300init to your"
einfo "/etc/conf.d/local.start so that your em8300 card is "
einfo "properly initialized on boot."
einfo
einfo "If you still need a microcode other than the one included"
einfo "with the package, you can simply use em8300init <microcode.ux>"
einfo
}
|