diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2012-03-04 03:55:23 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2012-03-04 03:55:23 +0000 |
commit | e4cca854fdf120dde6142689a67715c9c4523b30 (patch) | |
tree | fc1332415c79c0742a2d508417d340b789f91ac0 /media-video/em8300-libraries/em8300-libraries-0.18.0_p20120124.ebuild | |
parent | masked em8300-modules-0.18.0_p20120124 em8300-libraries-0.18.0_p20120124 for ... (diff) | |
download | gentoo-2-e4cca854fdf120dde6142689a67715c9c4523b30.tar.gz gentoo-2-e4cca854fdf120dde6142689a67715c9c4523b30.tar.bz2 gentoo-2-e4cca854fdf120dde6142689a67715c9c4523b30.zip |
snapshot for testing, pmasked, bug #350211
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'media-video/em8300-libraries/em8300-libraries-0.18.0_p20120124.ebuild')
-rw-r--r-- | media-video/em8300-libraries/em8300-libraries-0.18.0_p20120124.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/media-video/em8300-libraries/em8300-libraries-0.18.0_p20120124.ebuild b/media-video/em8300-libraries/em8300-libraries-0.18.0_p20120124.ebuild new file mode 100644 index 000000000000..89d00f6ed746 --- /dev/null +++ b/media-video/em8300-libraries/em8300-libraries-0.18.0_p20120124.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2012 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.18.0_p20120124.ebuild,v 1.1 2012/03/04 03:55:23 hd_brummy Exp $ + +EAPI=2 +inherit autotools + +MY_P=${P/-libraries} + +DESCRIPTION="em8300 (RealMagic Hollywood+/Creative DXR3) video decoder card libraries" +HOMEPAGE="http://dxr3.sourceforge.net" +SRC_URI="http://vdr.websitec.de/download/${MY_P}.tar.gz + mirror://gentoo/em8300-gtk-2.0.m4.tbz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="gtk modules" + +COMMON_DEPEND="gtk? ( x11-libs/gtk+:2 )" +RDEPEND="${COMMON_DEPEND} + modules? ( ~media-video/em8300-modules-${PV} )" +DEPEND="${COMMON_DEPEND} + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + # Separate kernel modules and fix Makefile bug. + sed -i \ + -e 's:modules/\ ::g' \ + -e "s:test -z \"\$(firmwaredir)\":test -z\"\$(DESTDIR)(firmwaredir)\":g" \ + Makefile.am || die + + # Fix asneeded linking. + sed -i \ + -e "s:AM_LDFLAGS:LDADD:" \ + {dhc,overlay}/Makefile.am || die + + AT_M4DIR=${WORKDIR} eautoreconf +} + +src_configure() { + econf \ + $(use_enable gtk gtktest) +} + +src_install() { + dodir /lib/firmware + emake DESTDIR="${D}" em8300incdir=/usr/include/linux install || die + dodoc AUTHORS ChangeLog README +} + +pkg_postinst() { + elog "The em8300 libraries and modules have now been installed," + elog "you will probably want to add /usr/bin/em8300setup to your" + elog "/etc/conf.d/local.start so that your em8300 card is " + elog "properly initialized on boot." + elog + elog "If you still need a microcode other than the one included" + elog "with the package, you can simply use em8300setup <microcode.ux>" +} |