blob: a8006d79e583045f69933d8a794837e48c57924d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# 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.4 2006/10/03 07:32:54 flameeyes 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"
RDEPEND="real? ( =virtual/libstdc++-3.3* )"
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
dodir /etc/revdep-rebuild
cat - > "${D}/etc/revdep-rebuild/50win32codecs" <<EOF
SEARCH_DIRS_MASK="/usr/$(get_libdir)/real /usr/$(get_libdir)/win32"
EOF
}
|