Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/win32codecs: ChangeLog win32codecs-20071007-r1.ebuild win32codecs-20071007.ebuild
Date: Mon, 29 Oct 2007 14:34:13
Message-Id: E1ImVgp-0005eU-Dp@stork.gentoo.org
1 beandog 07/10/29 14:34:03
2
3 Modified: ChangeLog
4 Added: win32codecs-20071007-r1.ebuild
5 Removed: win32codecs-20071007.ebuild
6 Log:
7 Fix install of reallibs, bug 197319
8 (Portage version: 2.1.3.16)
9
10 Revision Changes Path
11 1.45 media-libs/win32codecs/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?rev=1.45&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?rev=1.45&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?r1=1.44&r2=1.45
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v
20 retrieving revision 1.44
21 retrieving revision 1.45
22 diff -u -r1.44 -r1.45
23 --- ChangeLog 8 Oct 2007 11:13:19 -0000 1.44
24 +++ ChangeLog 29 Oct 2007 14:34:02 -0000 1.45
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/win32codecs
27 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.44 2007/10/08 11:13:19 beandog Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.45 2007/10/29 14:34:02 beandog Exp $
30 +
31 +*win32codecs-20071007-r1 (29 Oct 2007)
32 +
33 + 29 Oct 2007; Steve Dibb <beandog@g.o> -win32codecs-20071007.ebuild,
34 + +win32codecs-20071007-r1.ebuild:
35 + Fix install of reallibs, bug 197319
36
37 *win32codecs-20071007 (08 Oct 2007)
38
39
40
41
42 1.1 media-libs/win32codecs/win32codecs-20071007-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: win32codecs-20071007-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r1.ebuild,v 1.1 2007/10/29 14:34:02 beandog Exp $
52
53 inherit multilib
54
55 DESCRIPTION="Win32 binary codecs for video and audio playback support"
56 SRC_URI="mirror://mplayer/releases/codecs/all-${PV}.tar.bz2"
57 HOMEPAGE="http://www.mplayerhq.hu/"
58 LICENSE="as-is"
59 SLOT="0"
60 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
61 IUSE="quicktime real"
62
63 RDEPEND="real? ( =virtual/libstdc++-3.3*
64 amd64? ( media-video/realplayer ) )"
65
66 S="${WORKDIR}/all-${PV}"
67
68 RESTRICT="strip"
69
70 QA_TEXTRELS="usr/$(get_libdir)/real/drvc.so
71 usr/$(get_libdir)/real/drv[34].so.6.0
72 usr/$(get_libdir)/win32/vid_*.xa"
73
74 pkg_setup() {
75 # This is a binary x86 package => ABI=x86
76 # Please keep this in future versions
77 # Daniel Gryniewicz <dang@g.o>
78 has_multilib_profile && ABI="x86"
79 }
80
81 src_install() {
82 cd "${S}"
83
84 # see #83221
85 insopts -m0644
86 dodir /usr/$(get_libdir)/win32
87
88 if use real
89 then
90 dodir /usr/$(get_libdir)/real
91 insinto /usr/$(get_libdir)/real
92 doins *so.6.0
93
94 # copy newly introduced codecs from realplayer10
95 # see the ChangeLog online
96 doins *.so
97
98 # fix bug #80321
99 ln -s "${D}"/usr/$(get_libdir)/real/* "${D}"/usr/$(get_libdir)/win32/
100 fi
101
102 insinto /usr/$(get_libdir)/win32
103 if use quicktime
104 then
105 doins *.qtx *.qts qtmlClient.dll
106 fi
107
108 doins *.dll *.ax *.xa *.acm *.vwp *.drv *.DLL
109
110 dodoc README
111
112 dodir /etc/revdep-rebuild
113 cat - > "${D}/etc/revdep-rebuild/50win32codecs" <<EOF
114 SEARCH_DIRS_MASK="/usr/$(get_libdir)/real /usr/$(get_libdir)/win32"
115 EOF
116 }
117
118
119
120 --
121 gentoo-commits@g.o mailing list