Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/a52dec: ChangeLog a52dec-0.7.4-r6.ebuild
Date: Thu, 02 May 2013 04:09:19
Message-Id: 20130502040912.AB2762171D@flycatcher.gentoo.org
1 ssuominen 13/05/02 04:09:12
2
3 Modified: ChangeLog a52dec-0.7.4-r6.ebuild
4 Log:
5 Fix automake-1.13 compability wrt #466978 by Alphat-PC and Thomas. Remove unnecessary epunt_cxx call (unnecessary when eautoreconf is executed to modernize files)
6
7 (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.67 media-libs/a52dec/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/a52dec/ChangeLog?rev=1.67&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/a52dec/ChangeLog?rev=1.67&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/a52dec/ChangeLog?r1=1.66&r2=1.67
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/a52dec/ChangeLog,v
19 retrieving revision 1.66
20 retrieving revision 1.67
21 diff -u -r1.66 -r1.67
22 --- ChangeLog 17 May 2012 13:55:59 -0000 1.66
23 +++ ChangeLog 2 May 2013 04:09:12 -0000 1.67
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/a52dec
26 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/ChangeLog,v 1.66 2012/05/17 13:55:59 aballier Exp $
28 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/ChangeLog,v 1.67 2013/05/02 04:09:12 ssuominen Exp $
30 +
31 + 02 May 2013; Samuli Suominen <ssuominen@g.o> a52dec-0.7.4-r6.ebuild:
32 + Fix automake-1.13 compability wrt #466978 by Alphat-PC and Thomas. Remove
33 + unnecessary epunt_cxx call (unnecessary when eautoreconf is executed to
34 + modernize files)
35
36 17 May 2012; Alexis Ballier <aballier@g.o> a52dec-0.7.4-r6.ebuild:
37 keyword ~amd64-fbsd
38
39
40
41 1.19 media-libs/a52dec/a52dec-0.7.4-r6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild?rev=1.19&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild?rev=1.19&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild?r1=1.18&r2=1.19
46
47 Index: a52dec-0.7.4-r6.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild,v
50 retrieving revision 1.18
51 retrieving revision 1.19
52 diff -u -r1.18 -r1.19
53 --- a52dec-0.7.4-r6.ebuild 17 May 2012 13:55:59 -0000 1.18
54 +++ a52dec-0.7.4-r6.ebuild 2 May 2013 04:09:12 -0000 1.19
55 @@ -1,8 +1,8 @@
56 -# Copyright 1999-2012 Gentoo Foundation
57 +# Copyright 1999-2013 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild,v 1.18 2012/05/17 13:55:59 aballier Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild,v 1.19 2013/05/02 04:09:12 ssuominen Exp $
61
62 -EAPI=3
63 +EAPI=5
64 inherit autotools eutils flag-o-matic
65
66 DESCRIPTION="library for decoding ATSC A/52 streams used in DVD"
67 @@ -24,8 +24,11 @@
68 "${FILESDIR}"/${P}-tests-optional.patch \
69 "${FILESDIR}"/${P}-test-hidden-symbols.patch
70
71 + sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die #466978
72 +
73 eautoreconf
74 - epunt_cxx
75 +# epunt_cxx is not required with eautoreconf wrt #458298
76 +# epunt_cxx
77 }
78
79 src_configure() {
80 @@ -42,16 +45,16 @@
81 }
82
83 src_compile() {
84 - emake CFLAGS="${CFLAGS}" || die
85 + emake CFLAGS="${CFLAGS}"
86 }
87
88 src_install() {
89 - emake DESTDIR="${D}" install || die
90 + emake DESTDIR="${D}" install
91
92 insinto /usr/include/a52dec
93 - doins liba52/a52_internal.h || die
94 + doins liba52/a52_internal.h
95
96 dodoc AUTHORS ChangeLog HISTORY NEWS README TODO doc/liba52.txt
97
98 - find "${ED}" -name '*.la' -exec rm -f {} +
99 + prune_libtool_files --all
100 }