Gentoo Archives: gentoo-commits

From: "Joe Peterson (lavajoe)" <lavajoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/faad2: ChangeLog faad2-2.6.1-r1.ebuild
Date: Thu, 08 May 2008 12:08:09
Message-Id: E1Ju4us-0004sU-JJ@stork.gentoo.org
1 lavajoe 08/05/08 12:08:06
2
3 Modified: ChangeLog
4 Added: faad2-2.6.1-r1.ebuild
5 Log:
6 Patched to detect writes to a broken pipe (bug #204227)
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.96 media-libs/faad2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/faad2/ChangeLog?rev=1.96&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/faad2/ChangeLog?rev=1.96&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/faad2/ChangeLog?r1=1.95&r2=1.96
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/faad2/ChangeLog,v
19 retrieving revision 1.95
20 retrieving revision 1.96
21 diff -u -r1.95 -r1.96
22 --- ChangeLog 9 Mar 2008 10:34:12 -0000 1.95
23 +++ ChangeLog 8 May 2008 12:08:06 -0000 1.96
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/faad2
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/faad2/ChangeLog,v 1.95 2008/03/09 10:34:12 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/faad2/ChangeLog,v 1.96 2008/05/08 12:08:06 lavajoe Exp $
29 +
30 +*faad2-2.6.1-r1 (08 May 2008)
31 +
32 + 08 May 2008; Joe Peterson <lavajoe@g.o>
33 + +files/faad2-2.6.1-broken-pipe.patch, +faad2-2.6.1-r1.ebuild:
34 + Patched to detect writes to a broken pipe (bug #204227)
35
36 09 Mar 2008; Alexis Ballier <aballier@g.o>
37 +files/faad2-2.6.1-libtool22.patch, faad2-2.6.1.ebuild:
38
39
40
41 1.1 media-libs/faad2/faad2-2.6.1-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/faad2/faad2-2.6.1-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/faad2/faad2-2.6.1-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: faad2-2.6.1-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/faad2/faad2-2.6.1-r1.ebuild,v 1.1 2008/05/08 12:08:06 lavajoe Exp $
51
52 inherit eutils autotools
53
54 DESCRIPTION="AAC audio decoding library"
55 HOMEPAGE="http://www.audiocoding.com/"
56 SRC_URI="mirror://sourceforge/faac/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="drm"
62
63 RDEPEND=""
64 DEPEND=""
65
66 S="${WORKDIR}/${PN}"
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71
72 epatch "${FILESDIR}/${P}-abi_has_changed.patch"
73 epatch "${FILESDIR}/${P}-libtool22.patch"
74 epatch "${FILESDIR}/${P}-broken-pipe.patch"
75 eautoreconf
76 }
77
78 src_compile() {
79 econf \
80 $(use_with drm)\
81 --without-xmms \
82 || die "econf failed"
83
84 emake || die
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die
89
90 dodoc AUTHORS ChangeLog NEWS README README.linux TODO
91 }
92
93 pkg_postinst() {
94 elog "Please note that from ${PN}-2.0* to ${P}, ABI has changed"
95 elog "So if you are upgrading from those versions, you need to rebuild"
96 elog "all the packages linked against ${PN}."
97 elog "You can use revdep-rebuild from app-portage/gentoolkit if you are"
98 elog "using portage or reconcilio if you are using paludis, or ..."
99 }
100
101
102
103 --
104 gentoo-commits@l.g.o mailing list