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-r4.ebuild win32codecs-20071007-r3.ebuild
Date: Wed, 29 Oct 2008 17:02:06
Message-Id: E1KvEQl-0001OH-CE@stork.gentoo.org
1 beandog 08/10/29 17:02:03
2
3 Modified: ChangeLog
4 Added: win32codecs-20071007-r4.ebuild
5 Removed: win32codecs-20071007-r3.ebuild
6 Log:
7 Keep real use flag, drop realplayer dep
8 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
9
10 Revision Changes Path
11 1.51 media-libs/win32codecs/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?rev=1.51&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?rev=1.51&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?r1=1.50&r2=1.51
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v
20 retrieving revision 1.50
21 retrieving revision 1.51
22 diff -u -r1.50 -r1.51
23 --- ChangeLog 28 Oct 2008 18:34:31 -0000 1.50
24 +++ ChangeLog 29 Oct 2008 17:02:03 -0000 1.51
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/win32codecs
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.50 2008/10/28 18:34:31 beandog Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.51 2008/10/29 17:02:03 beandog Exp $
30 +
31 +*win32codecs-20071007-r4 (29 Oct 2008)
32 +
33 + 29 Oct 2008; Steve Dibb <beandog@g.o>
34 + -win32codecs-20071007-r3.ebuild, +win32codecs-20071007-r4.ebuild:
35 + Keep real use flag, drop realplayer dep
36
37 28 Oct 2008; Steve Dibb <beandog@g.o>
38 win32codecs-20071007-r2.ebuild, win32codecs-20071007-r3.ebuild:
39
40
41
42 1.1 media-libs/win32codecs/win32codecs-20071007-r4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: win32codecs-20071007-r4.ebuild
48 ===================================================================
49 # Copyright 1999-2008 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-r4.ebuild,v 1.1 2008/10/29 17:02:03 beandog Exp $
52
53 inherit multilib
54
55 DESCRIPTION="Windows 32-bit 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="real"
62
63 RDEPEND="real? ( =virtual/libstdc++-3.3* )"
64
65 S="${WORKDIR}/all-${PV}"
66
67 RESTRICT="strip binchecks"
68
69 pkg_setup() {
70 # This is a binary x86 package => ABI=x86
71 # Please keep this in future versions
72 # Daniel Gryniewicz <dang@g.o>
73 has_multilib_profile && ABI="x86"
74 }
75
76 src_install() {
77 # see #83221
78 insopts -m0644
79 dodir /usr/$(get_libdir)/win32
80
81 if use real
82 then
83 dodir /usr/$(get_libdir)/real
84 insinto /usr/$(get_libdir)/real
85 doins *so.6.0
86
87 # copy newly introduced codecs from realplayer10
88 # see the ChangeLog online
89 doins *.so
90
91 # fix bug #80321
92 ln -s "${D}"/usr/$(get_libdir)/real/* "${D}"/usr/$(get_libdir)/win32/
93 fi
94
95 insinto /usr/$(get_libdir)/win32
96
97 doins *.dll *.ax *.xa *.acm *.vwp *.drv *.DLL
98
99 dodoc README
100
101 dodir /etc/revdep-rebuild
102 cat - > "${D}/etc/revdep-rebuild/50win32codecs" <<EOF
103 SEARCH_DIRS_MASK="/usr/$(get_libdir)/real /usr/$(get_libdir)/win32"
104 EOF
105 }