summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Savchenko <bircoph@gentoo.org>2022-07-31 12:33:46 +0300
committerAndrew Savchenko <bircoph@gentoo.org>2022-07-31 12:33:46 +0300
commitc07fc4c4d3da8b9cf051d48a172fd96dd6e8840f (patch)
tree45199b48dfc2a2c60f1625543f1f6fb30a2e106f
parentmedia-video/mplayer: update to EAPI=8 (diff)
downloadbircoph-c07fc4c4d3da8b9cf051d48a172fd96dd6e8840f.tar.gz
bircoph-c07fc4c4d3da8b9cf051d48a172fd96dd6e8840f.tar.bz2
bircoph-c07fc4c4d3da8b9cf051d48a172fd96dd6e8840f.zip
win32codecs: drop old
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
-rw-r--r--media-libs/win32codecs/Manifest1
-rw-r--r--media-libs/win32codecs/win32codecs-20071007-r4.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/media-libs/win32codecs/Manifest b/media-libs/win32codecs/Manifest
index 280f32d..e69de29 100644
--- a/media-libs/win32codecs/Manifest
+++ b/media-libs/win32codecs/Manifest
@@ -1 +0,0 @@
-DIST all-20071007.tar.bz2 13864479 SHA256 7aae7fc658d7a9a1766002435fd75436fead9c2d45eac3d67588c313cde0d8da SHA512 b2ca67a8c7d87a9a62a78fce2c4bcba2a33604afdecf68275035107caea5421c03853dfbd642c915c3374fcfdb477fcb41fab051158e2aaaf61f091ada9229a2 WHIRLPOOL 50b4e2a08f6630d72ae684fd69c45929fcc37df0c442cef431ce09e7220f074f2d86b94ee6c675b0d3b8c6c15bd4983264c2c3063544cf466a3cc96239c44b07
diff --git a/media-libs/win32codecs/win32codecs-20071007-r4.ebuild b/media-libs/win32codecs/win32codecs-20071007-r4.ebuild
deleted file mode 100644
index 1b20a2e..0000000
--- a/media-libs/win32codecs/win32codecs-20071007-r4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib
-
-DESCRIPTION="Windows 32-bit binary codecs for video and audio playback support"
-SRC_URI="mirror://mplayer/releases/codecs/all-${PV}.tar.bz2"
-HOMEPAGE="http://www.mplayerhq.hu/"
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="real"
-
-RDEPEND="real? ( =virtual/libstdc++-3.3* )"
-
-S="${WORKDIR}/all-${PV}"
-
-RESTRICT="strip binchecks"
-
-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() {
- insinto /usr/$(get_libdir)/win32
- doins *.dll *.ax *.xa *.acm *.vwp *.drv *.DLL *.qtx *.qts
-
- if use real
- then
- insinto /usr/$(get_libdir)/real
- doins *so.6.0
-
- # copy newly introduced codecs from realplayer10
- # see the ChangeLog online
- doins *.so
-
- # fix bug #80321
- local x
- for x in *so.6.0 *.so; do
- dosym ../real/$x /usr/$(get_libdir)/win32
- done
- fi
-
- dodoc README
-
- cat > "${T}/50${PN}" <<EOF
-SEARCH_DIRS_MASK="${EPREFIX}/usr/$(get_libdir)/real ${EPREFIX}/usr/$(get_libdir)/win32"
-EOF
- insinto /etc/revdep-rebuild
- doins "${T}/50${PN}"
-}