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-r3.ebuild
Date: Tue, 28 Oct 2008 17:49:05
Message-Id: E1Kusgh-0003yj-Hj@stork.gentoo.org
1 beandog 08/10/28 17:49:03
2
3 Modified: ChangeLog
4 Added: win32codecs-20071007-r3.ebuild
5 Log:
6 Drop realplayer support, security bug 232999, moving real codecs to media-libs/realcodecs, bug 240341
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
8
9 Revision Changes Path
10 1.49 media-libs/win32codecs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?rev=1.49&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?rev=1.49&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/ChangeLog?r1=1.48&r2=1.49
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v
19 retrieving revision 1.48
20 retrieving revision 1.49
21 diff -u -r1.48 -r1.49
22 --- ChangeLog 21 Nov 2007 00:18:45 -0000 1.48
23 +++ ChangeLog 28 Oct 2008 17:49:03 -0000 1.49
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-libs/win32codecs
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.48 2007/11/21 00:18:45 beandog Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/ChangeLog,v 1.49 2008/10/28 17:49:03 beandog Exp $
30 +
31 +*win32codecs-20071007-r3 (28 Oct 2008)
32 +
33 + 28 Oct 2008; Steve Dibb <beandog@g.o>
34 + +win32codecs-20071007-r3.ebuild:
35 + Drop realplayer support, security bug 232999, moving real codecs to
36 + media-libs/realcodecs, bug 240341
37
38 21 Nov 2007; Steve Dibb <beandog@g.o> -win32codecs-20050216.ebuild,
39 -win32codecs-20061022-r1.ebuild, -win32codecs-20071007-r1.ebuild:
40
41
42
43 1.1 media-libs/win32codecs/win32codecs-20071007-r3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: win32codecs-20071007-r3.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/win32codecs/win32codecs-20071007-r3.ebuild,v 1.1 2008/10/28 17:49:03 beandog Exp $
53
54 inherit multilib
55
56 DESCRIPTION="Win32 binary codecs for video and audio playback support"
57 SRC_URI="mirror://mplayer/releases/codecs/all-${PV}.tar.bz2"
58 HOMEPAGE="http://www.mplayerhq.hu/"
59 LICENSE="as-is"
60 SLOT="0"
61 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
62 IUSE=""
63
64 S="${WORKDIR}/all-${PV}"
65
66 RESTRICT="strip"
67
68 QA_TEXTRELS="usr/$(get_libdir)/win32/vid_*.xa"
69
70 pkg_setup() {
71 # This is a binary x86 package => ABI=x86
72 # Please keep this in future versions
73 # Daniel Gryniewicz <dang@g.o>
74 has_multilib_profile && ABI="x86"
75 }
76
77 src_install() {
78 cd "${S}"
79
80 # see #83221
81 insopts -m0644
82 dodir /usr/$(get_libdir)/win32
83
84 insinto /usr/$(get_libdir)/win32
85
86 doins *.dll *.ax *.xa *.acm *.vwp *.drv *.DLL
87
88 dodoc README
89
90 dodir /etc/revdep-rebuild
91 cat - > "${D}/etc/revdep-rebuild/50win32codecs" <<EOF
92 SEARCH_DIRS_MASK="/usr/$(get_libdir)/win32"
93 EOF
94 }