diff options
Diffstat (limited to 'media-video/em8300-libraries/em8300-libraries-0.16.0_rc2.ebuild')
-rw-r--r-- | media-video/em8300-libraries/em8300-libraries-0.16.0_rc2.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/media-video/em8300-libraries/em8300-libraries-0.16.0_rc2.ebuild b/media-video/em8300-libraries/em8300-libraries-0.16.0_rc2.ebuild new file mode 100644 index 000000000000..a38b08e8c496 --- /dev/null +++ b/media-video/em8300-libraries/em8300-libraries-0.16.0_rc2.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2006 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.16.0_rc2.ebuild,v 1.1 2006/11/17 16:29:08 flameeyes Exp $ + +WANT_AUTOMAKE=1.9 +WANT_AUTOCONF=2.5 + +inherit flag-o-matic autotools + +MY_P="${P/_/-}" ; MY_P="${MY_P/-libraries/}" + +DESCRIPTION="em8300 (RealMagic Hollywood+/Creative DXR3) video decoder card libraries" +HOMEPAGE="http://dxr3.sourceforge.net" +SRC_URI="http://dxr3.sourceforge.net/download/${MY_P}.tar.gz" + +RDEPEND="media-video/em8300-modules + gtk? ( >=x11-libs/gtk+-2.0 )" + +DEPEND="dev-util/pkgconfig + gtk? ( >=x11-libs/gtk+-2.0 )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="gtk" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack "${A}" + cd "${S}" + + # Separate kernel modules. + sed -i -e 's:modules/\ ::g' Makefile.am + + # Fix Makefile bug. + sed -i -e "s:test -z \"\$(firmwaredir)\":test -z\"\$(DESTDIR)(firmwaredir)\":g" Makefile.am + + eautomake +} + +src_compile () { + use amd64 && append-flags -fPIC + + econf \ + $(use_enable gtk gtktest) || die "econf failed." + + emake || die "emake failed." +} + +src_install () { + dodir /lib/firmware + emake DESTDIR="${D}" em8300incdir=/usr/include/linux install || die "emake + install failed." + + dodoc AUTHORS ChangeLog NEWS 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>" +} |