diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-06-11 21:14:31 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-06-11 21:14:31 +0000 |
commit | 3c1f0dcaa0fda80ee6bc2e7c6c244142d40db2c1 (patch) | |
tree | 4ed7275a6ebb3e993594024f29e61ca33baf9a83 /media-libs/win32codecs/win32codecs-20060611.ebuild | |
parent | debugger fix, bug #121426 (diff) | |
download | historical-3c1f0dcaa0fda80ee6bc2e7c6c244142d40db2c1.tar.gz historical-3c1f0dcaa0fda80ee6bc2e7c6c244142d40db2c1.tar.bz2 historical-3c1f0dcaa0fda80ee6bc2e7c6c244142d40db2c1.zip |
Updated collection
Package-Manager: portage-2.1_rc4-r4
Diffstat (limited to 'media-libs/win32codecs/win32codecs-20060611.ebuild')
-rw-r--r-- | media-libs/win32codecs/win32codecs-20060611.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/media-libs/win32codecs/win32codecs-20060611.ebuild b/media-libs/win32codecs/win32codecs-20060611.ebuild new file mode 100644 index 000000000000..b2194cd92280 --- /dev/null +++ b/media-libs/win32codecs/win32codecs-20060611.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/win32codecs-20060611.ebuild,v 1.1 2006/06/11 21:14:31 lu_zero Exp $ + +inherit multilib + +DESCRIPTION="Win32 binary codecs for video and audio playback support" +SRC_URI="mirror://mplayer/releases/codecs/all-${PV}.tar.bz2" +HOMEPAGE="http://www.mplayerhq.hu/" +LICENSE="as-is" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd" +IUSE="quicktime real" + +S=${WORKDIR}/all-${PV} + +RESTRICT="nostrip" + +pkg_setup() { + # This is a binary x86 package => ABI=x86 + # Please keep this in future versions + # Daniel Gryniewicz <dang@gentoo.org> + has_multilib_profile && ABI="x86" +} + +src_install() { + cd ${S} + + # see #83221 + insopts -m0644 + dodir /usr/$(get_libdir)/win32 + + if use real + then + dodir /usr/$(get_libdir)/real + insinto /usr/$(get_libdir)/real + doins *so.6.0 + + # copy newly introduced codecs from realplayer10 + # see the ChangeLog online + doins *.so + + # fix bug #80321 + ln -s ${D}/usr/$(get_libdir)/real/* ${D}/usr/$(get_libdir)/win32/ + fi + + insinto /usr/$(get_libdir)/win32 + if use quicktime + then + doins *.qtx *.qts qtmlClient.dll + fi + + doins *.dll *.ax *.xa *.acm *.vwp *.drv *.DLL + + dodoc README +} |