Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
Date: Mon, 28 Nov 2011 06:18:57
Message-Id: 20111128061842.5D89D2004B@flycatcher.gentoo.org
1 radhermit 11/11/28 06:18:42
2
3 Modified: ChangeLog libsoundtouch-1.6.0.ebuild
4 Log:
5 Revert to autotools eclass (fixes bug #392103).
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.49 media-libs/libsoundtouch/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.49&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.49&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.48&r2=1.49
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
19 retrieving revision 1.48
20 retrieving revision 1.49
21 diff -u -r1.48 -r1.49
22 --- ChangeLog 27 Nov 2011 04:17:19 -0000 1.48
23 +++ ChangeLog 28 Nov 2011 06:18:42 -0000 1.49
24 @@ -1,6 +1,9 @@
25 # ChangeLog for media-libs/libsoundtouch
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.48 2011/11/27 04:17:19 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.49 2011/11/28 06:18:42 radhermit Exp $
29 +
30 + 28 Nov 2011; Tim Harder <radhermit@g.o> libsoundtouch-1.6.0.ebuild:
31 + Revert to autotools eclass (fixes bug #392103).
32
33 27 Nov 2011; Tim Harder <radhermit@g.o> libsoundtouch-1.6.0.ebuild:
34 Build in the source tree.
35
36
37
38 1.8 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.8&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.8&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.7&r2=1.8
43
44 Index: libsoundtouch-1.6.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
47 retrieving revision 1.7
48 retrieving revision 1.8
49 diff -u -r1.7 -r1.8
50 --- libsoundtouch-1.6.0.ebuild 27 Nov 2011 04:17:19 -0000 1.7
51 +++ libsoundtouch-1.6.0.ebuild 28 Nov 2011 06:18:42 -0000 1.8
52 @@ -1,9 +1,9 @@
53 # Copyright 1999-2011 Gentoo FoundationOU
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.7 2011/11/27 04:17:19 radhermit Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.8 2011/11/28 06:18:42 radhermit Exp $
57
58 EAPI=4
59 -inherit autotools-utils eutils flag-o-matic
60 +inherit autotools eutils flag-o-matic
61
62 MY_PN=${PN/lib}
63
64 @@ -18,8 +18,6 @@
65
66 S=${WORKDIR}/${MY_PN}
67
68 -AUTOTOOLS_IN_SOURCE_BUILD=1
69 -
70 src_prepare() {
71 epatch "${FILESDIR}"/${P}-flags.patch
72 sed -i -e "s:^\(pkgdoc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
73 @@ -46,5 +44,5 @@
74
75 src_install() {
76 emake DESTDIR="${D}" pkgdocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
77 - remove_libtool_files all
78 + find "${ED}" -name '*.la' -exec rm -f {} +
79 }