Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/oggtst: oggtst-0.0.ebuild ChangeLog
Date: Thu, 02 Dec 2010 18:31:15
Message-Id: 20101202183102.8E11220054@flycatcher.gentoo.org
1 flameeyes 10/12/02 18:31:02
2
3 Modified: oggtst-0.0.ebuild ChangeLog
4 Log:
5 Properly rebuild autotools rather than depend on automake 1.4 for symlinked files. This also allows to use parallel make for build and install.
6
7 (Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 media-sound/oggtst/oggtst-0.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild?r1=1.18&r2=1.19
15
16 Index: oggtst-0.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- oggtst-0.0.ebuild 16 Jun 2009 18:00:42 -0000 1.18
23 +++ oggtst-0.0.ebuild 2 Dec 2010 18:31:02 -0000 1.19
24 @@ -1,6 +1,8 @@
25 -# Copyright 1999-2009 Gentoo Foundation
26 +# Copyright 1999-2010 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild,v 1.18 2009/06/16 18:00:42 klausman Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild,v 1.19 2010/12/02 18:31:02 flameeyes Exp $
30 +
31 +inherit autotools
32
33 DESCRIPTION="A tool for calculating ogg-vorbis playing time"
34 HOMEPAGE="http://gnometoaster.rulez.org/"
35 @@ -13,17 +15,19 @@
36
37 RDEPEND=">=media-libs/libao-0.8.0
38 >=media-libs/libvorbis-1.0_rc2"
39 -DEPEND="${RDEPEND}
40 - =sys-devel/automake-1.4*"
41
42 S=${WORKDIR}/${PN}
43
44 -src_compile() {
45 - econf || die
46 - emake -j1 || die
47 +src_unpack() {
48 + unpack ${A}
49 + cd "${S}"
50 +
51 + # upstream didn't use make dist to create the tarball, there are
52 + # unbound symlinks inside it.
53 + eautoreconf
54 }
55
56 src_install() {
57 - make DESTDIR="${D}" install || die
58 + emake DESTDIR="${D}" install || die
59 dodoc AUTHORS ChangeLog README
60 }
61
62
63
64 1.12 media-sound/oggtst/ChangeLog
65
66 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/oggtst/ChangeLog?rev=1.12&view=markup
67 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/oggtst/ChangeLog?rev=1.12&content-type=text/plain
68 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/oggtst/ChangeLog?r1=1.11&r2=1.12
69
70 Index: ChangeLog
71 ===================================================================
72 RCS file: /var/cvsroot/gentoo-x86/media-sound/oggtst/ChangeLog,v
73 retrieving revision 1.11
74 retrieving revision 1.12
75 diff -u -r1.11 -r1.12
76 --- ChangeLog 16 Jun 2009 18:00:42 -0000 1.11
77 +++ ChangeLog 2 Dec 2010 18:31:02 -0000 1.12
78 @@ -1,6 +1,10 @@
79 # ChangeLog for media-sound/oggtst
80 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
81 -# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/ChangeLog,v 1.11 2009/06/16 18:00:42 klausman Exp $
82 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
83 +# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/ChangeLog,v 1.12 2010/12/02 18:31:02 flameeyes Exp $
84 +
85 + 02 Dec 2010; Diego E. Pettenò <flameeyes@g.o> oggtst-0.0.ebuild:
86 + Properly rebuild autotools rather than depend on automake 1.4 for symlinked
87 + files. This also allows to use parallel make for build and install.
88
89 16 Jun 2009; Tobias Klausmann <klausman@g.o> oggtst-0.0.ebuild:
90 Keyworded on alpha, bug #272779