Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/em8300-libraries: ChangeLog em8300-libraries-0.18.0.ebuild
Date: Fri, 26 Feb 2010 16:07:55
Message-Id: E1Nl2jJ-0003he-Oh@stork.gentoo.org
1 ssuominen 10/02/26 16:07:53
2
3 Modified: ChangeLog
4 Added: em8300-libraries-0.18.0.ebuild
5 Log:
6 Version bump. Include copy of gtk-2.0.m4 for eautoreconf (AM_PATH_GTK_2_0) wrt #299308.
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.41 media-video/em8300-libraries/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/em8300-libraries/ChangeLog?rev=1.41&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/em8300-libraries/ChangeLog?rev=1.41&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/em8300-libraries/ChangeLog?r1=1.40&r2=1.41
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/em8300-libraries/ChangeLog,v
19 retrieving revision 1.40
20 retrieving revision 1.41
21 diff -u -r1.40 -r1.41
22 --- ChangeLog 26 Feb 2010 15:45:15 -0000 1.40
23 +++ ChangeLog 26 Feb 2010 16:07:52 -0000 1.41
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-video/em8300-libraries
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/em8300-libraries/ChangeLog,v 1.40 2010/02/26 15:45:15 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/em8300-libraries/ChangeLog,v 1.41 2010/02/26 16:07:52 ssuominen Exp $
29 +
30 +*em8300-libraries-0.18.0 (26 Feb 2010)
31 +
32 + 26 Feb 2010; Samuli Suominen <ssuominen@g.o>
33 + +em8300-libraries-0.18.0.ebuild:
34 + Version bump. Include copy of gtk-2.0.m4 for eautoreconf (AM_PATH_GTK_2_0)
35 + wrt #299308.
36
37 26 Feb 2010; Samuli Suominen <ssuominen@g.o>
38 em8300-libraries-0.17.4.ebuild:
39
40
41
42 1.1 media-video/em8300-libraries/em8300-libraries-0.18.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/em8300-libraries/em8300-libraries-0.18.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/em8300-libraries/em8300-libraries-0.18.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: em8300-libraries-0.18.0.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-video/em8300-libraries/em8300-libraries-0.18.0.ebuild,v 1.1 2010/02/26 16:07:52 ssuominen Exp $
52
53 EAPI=2
54 inherit autotools
55
56 MY_P=${P/-libraries}
57
58 DESCRIPTION="em8300 (RealMagic Hollywood+/Creative DXR3) video decoder card libraries"
59 HOMEPAGE="http://dxr3.sourceforge.net"
60 SRC_URI="mirror://sourceforge/dxr3/${MY_P}.tar.gz
61 http://dev.gentoo.org/~ssuominen/em8300-gtk-2.0.m4.tbz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="gtk modules"
67
68 COMMON_DEPEND="gtk? ( x11-libs/gtk+:2 )"
69 RDEPEND="${COMMON_DEPEND}
70 modules? ( ~media-video/em8300-modules-${PV} )"
71 DEPEND="${COMMON_DEPEND}
72 dev-util/pkgconfig"
73
74 S=${WORKDIR}/${MY_P}
75
76 src_prepare() {
77 # Separate kernel modules and fix Makefile bug.
78 sed -i \
79 -e 's:modules/\ ::g' \
80 -e "s:test -z \"\$(firmwaredir)\":test -z\"\$(DESTDIR)(firmwaredir)\":g" \
81 Makefile.am || die
82
83 # Fix asneeded linking.
84 sed -i \
85 -e "s:AM_LDFLAGS:LDADD:" \
86 {dhc,overlay}/Makefile.am || die
87
88 AT_M4DIR=${WORKDIR} eautoreconf
89 }
90
91 src_configure() {
92 econf \
93 $(use_enable gtk gtktest)
94 }
95
96 src_install() {
97 dodir /lib/firmware
98 emake DESTDIR="${D}" em8300incdir=/usr/include/linux install || die
99 dodoc AUTHORS ChangeLog README
100 }
101
102 pkg_postinst() {
103 elog "The em8300 libraries and modules have now been installed,"
104 elog "you will probably want to add /usr/bin/em8300setup to your"
105 elog "/etc/conf.d/local.start so that your em8300 card is "
106 elog "properly initialized on boot."
107 elog
108 elog "If you still need a microcode other than the one included"
109 elog "with the package, you can simply use em8300setup <microcode.ux>"
110 }