diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-25 15:06:04 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-25 15:06:04 +0000 |
commit | 332774adbb6d562637a06f4fd24e4266e531b240 (patch) | |
tree | 909970ab7106e3b75df1e67a3bce1071f0ffb043 /media-libs/id3lib | |
parent | ppc64 stable wrt #403173 (diff) | |
download | gentoo-2-332774adbb6d562637a06f4fd24e4266e531b240.tar.gz gentoo-2-332774adbb6d562637a06f4fd24e4266e531b240.tar.bz2 gentoo-2-332774adbb6d562637a06f4fd24e4266e531b240.zip |
ppc/ppc64 stable wrt #393807
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/id3lib')
-rw-r--r-- | media-libs/id3lib/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/id3lib/id3lib-3.8.3-r8.ebuild | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/media-libs/id3lib/ChangeLog b/media-libs/id3lib/ChangeLog index 4f56210ad0e5..347fa2e6c098 100644 --- a/media-libs/id3lib/ChangeLog +++ b/media-libs/id3lib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/id3lib # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/ChangeLog,v 1.77 2012/01/01 15:58:06 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/ChangeLog,v 1.78 2012/02/25 15:06:04 ssuominen Exp $ + + 25 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> id3lib-3.8.3-r8.ebuild: + ppc/ppc64 stable wrt #393807 01 Jan 2012; Raúl Porcel <armin76@gentoo.org> id3lib-3.8.3-r8.ebuild: alpha/ia64/sh/sparc stable wrt #393807 diff --git a/media-libs/id3lib/id3lib-3.8.3-r8.ebuild b/media-libs/id3lib/id3lib-3.8.3-r8.ebuild index 3fa68aa47b18..fa853bb45e41 100644 --- a/media-libs/id3lib/id3lib-3.8.3-r8.ebuild +++ b/media-libs/id3lib/id3lib-3.8.3-r8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/id3lib-3.8.3-r8.ebuild,v 1.7 2012/01/01 15:58:06 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/id3lib-3.8.3-r8.ebuild,v 1.8 2012/02/25 15:06:04 ssuominen Exp $ -EAPI=2 +EAPI=4 inherit autotools eutils DESCRIPTION="Id3 library for C/C++" @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P/_}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" IUSE="doc" RDEPEND="sys-libs/zlib" @@ -19,10 +19,12 @@ DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" RESTRICT="test" + S=${WORKDIR}/${P/_} src_prepare() { - epatch "${FILESDIR}"/${P}-zlib.patch \ + epatch \ + "${FILESDIR}"/${P}-zlib.patch \ "${FILESDIR}"/${P}-test_io.patch \ "${FILESDIR}"/${P}-autoconf259.patch \ "${FILESDIR}"/${P}-doxyinput.patch \ @@ -37,15 +39,15 @@ src_prepare() { } src_compile() { - emake || die "emake failed" + emake if use doc; then cd doc - doxygen Doxyfile || die "doxygen failed" + doxygen Doxyfile || die fi } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + emake DESTDIR="${D}" install dodoc AUTHORS ChangeLog HISTORY README THANKS TODO use doc && dohtml -r doc } |