summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dibb <beandog@gentoo.org>2008-10-28 17:49:03 +0000
committerSteve Dibb <beandog@gentoo.org>2008-10-28 17:49:03 +0000
commit8f0b29341ffd8298e4b2052aef70ef2296f6633b (patch)
treea671911f3aa6d41fc9b900d93bbd6c746e907d8b /media-libs/win32codecs
parentAdd inheritage of flag-o-matic eclass. Fixes bug #244625. (diff)
downloadgentoo-2-8f0b29341ffd8298e4b2052aef70ef2296f6633b.tar.gz
gentoo-2-8f0b29341ffd8298e4b2052aef70ef2296f6633b.tar.bz2
gentoo-2-8f0b29341ffd8298e4b2052aef70ef2296f6633b.zip
Drop realplayer support, security bug 232999, moving real codecs to media-libs/realcodecs, bug 240341
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'media-libs/win32codecs')
-rw-r--r--media-libs/win32codecs/ChangeLog11
-rw-r--r--media-libs/win32codecs/win32codecs-20071007-r3.ebuild45
2 files changed, 54 insertions, 2 deletions
diff --git a/media-libs/win32codecs/ChangeLog b/media-libs/win32codecs/ChangeLog
index dfb3017e19f2..a1e928088985 100644
--- a/media-libs/win32codecs/ChangeLog
+++ b/media-libs/win32codecs/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-libs/win32codecs
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.48 2007/11/21 00:18:45 beandog Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.49 2008/10/28 17:49:03 beandog Exp $
+
+*win32codecs-20071007-r3 (28 Oct 2008)
+
+ 28 Oct 2008; Steve Dibb <beandog@gentoo.org>
+ +win32codecs-20071007-r3.ebuild:
+ Drop realplayer support, security bug 232999, moving real codecs to
+ media-libs/realcodecs, bug 240341
21 Nov 2007; Steve Dibb <beandog@gentoo.org> -win32codecs-20050216.ebuild,
-win32codecs-20061022-r1.ebuild, -win32codecs-20071007-r1.ebuild:
diff --git a/media-libs/win32codecs/win32codecs-20071007-r3.ebuild b/media-libs/win32codecs/win32codecs-20071007-r3.ebuild
new file mode 100644
index 000000000000..e06b8847eff7
--- /dev/null
+++ b/media-libs/win32codecs/win32codecs-20071007-r3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r3.ebuild,v 1.1 2008/10/28 17:49:03 beandog 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=""
+
+S="${WORKDIR}/all-${PV}"
+
+RESTRICT="strip"
+
+QA_TEXTRELS="usr/$(get_libdir)/win32/vid_*.xa"
+
+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
+
+ insinto /usr/$(get_libdir)/win32
+
+ doins *.dll *.ax *.xa *.acm *.vwp *.drv *.DLL
+
+ dodoc README
+
+ dodir /etc/revdep-rebuild
+ cat - > "${D}/etc/revdep-rebuild/50win32codecs" <<EOF
+SEARCH_DIRS_MASK="/usr/$(get_libdir)/win32"
+EOF
+}