diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-12-02 18:31:02 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-12-02 18:31:02 +0000 |
commit | a924524588b811bdc02752686e9fd183025b10c9 (patch) | |
tree | 18d9619192c902dcb5b924dfb60fa26a3cd348ca /media-sound/oggtst | |
parent | Remove old versions (yes this means removing stable versions) as they are gen... (diff) | |
download | gentoo-2-a924524588b811bdc02752686e9fd183025b10c9.tar.gz gentoo-2-a924524588b811bdc02752686e9fd183025b10c9.tar.bz2 gentoo-2-a924524588b811bdc02752686e9fd183025b10c9.zip |
Properly rebuild autotools rather than depend on automake 1.4 for symlinked files. This also allows to use parallel make for build and install.
(Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/oggtst')
-rw-r--r-- | media-sound/oggtst/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/oggtst/oggtst-0.0.ebuild | 20 |
2 files changed, 18 insertions, 10 deletions
diff --git a/media-sound/oggtst/ChangeLog b/media-sound/oggtst/ChangeLog index 82a019057cf8..6699e25f8c08 100644 --- a/media-sound/oggtst/ChangeLog +++ b/media-sound/oggtst/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/oggtst -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/ChangeLog,v 1.11 2009/06/16 18:00:42 klausman Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/ChangeLog,v 1.12 2010/12/02 18:31:02 flameeyes Exp $ + + 02 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org> oggtst-0.0.ebuild: + Properly rebuild autotools rather than depend on automake 1.4 for symlinked + files. This also allows to use parallel make for build and install. 16 Jun 2009; Tobias Klausmann <klausman@gentoo.org> oggtst-0.0.ebuild: Keyworded on alpha, bug #272779 diff --git a/media-sound/oggtst/oggtst-0.0.ebuild b/media-sound/oggtst/oggtst-0.0.ebuild index 13254ae5ba0b..90ff69b566c8 100644 --- a/media-sound/oggtst/oggtst-0.0.ebuild +++ b/media-sound/oggtst/oggtst-0.0.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild,v 1.18 2009/06/16 18:00:42 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/oggtst/oggtst-0.0.ebuild,v 1.19 2010/12/02 18:31:02 flameeyes Exp $ + +inherit autotools DESCRIPTION="A tool for calculating ogg-vorbis playing time" HOMEPAGE="http://gnometoaster.rulez.org/" @@ -13,17 +15,19 @@ IUSE="" RDEPEND=">=media-libs/libao-0.8.0 >=media-libs/libvorbis-1.0_rc2" -DEPEND="${RDEPEND} - =sys-devel/automake-1.4*" S=${WORKDIR}/${PN} -src_compile() { - econf || die - emake -j1 || die +src_unpack() { + unpack ${A} + cd "${S}" + + # upstream didn't use make dist to create the tarball, there are + # unbound symlinks inside it. + eautoreconf } src_install() { - make DESTDIR="${D}" install || die + emake DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog README } |