diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-05-15 17:09:01 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-05-15 17:09:01 +0000 |
commit | 8149926f7853dbb5a166dd4f0f2dfa0f55eed81b (patch) | |
tree | 2239da7d71c98ff5da06ae647d6102cc067e96d7 /media-libs/id3lib | |
parent | stable amd64, bug 177728 (diff) | |
download | gentoo-2-8149926f7853dbb5a166dd4f0f2dfa0f55eed81b.tar.gz gentoo-2-8149926f7853dbb5a166dd4f0f2dfa0f55eed81b.tar.bz2 gentoo-2-8149926f7853dbb5a166dd4f0f2dfa0f55eed81b.zip |
Remove USE="examples" for bug 178654.
(Portage version: 2.1.2.7)
Diffstat (limited to 'media-libs/id3lib')
-rw-r--r-- | media-libs/id3lib/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/id3lib/id3lib-3.8.3-r5.ebuild | 18 |
2 files changed, 9 insertions, 14 deletions
diff --git a/media-libs/id3lib/ChangeLog b/media-libs/id3lib/ChangeLog index 6f899e20eaae..363092219259 100644 --- a/media-libs/id3lib/ChangeLog +++ b/media-libs/id3lib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/id3lib # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/ChangeLog,v 1.54 2007/04/18 17:17:08 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/ChangeLog,v 1.55 2007/05/15 17:09:01 drac Exp $ + + 15 May 2007; Samuli Suominen <drac@gentoo.org> id3lib-3.8.3-r5.ebuild: + Remove USE="examples" for bug 178654. 18 Apr 2007; nixnut <nixnut@gentoo.org> id3lib-3.8.3-r5.ebuild: Stable on ppc wrt bug 130922 diff --git a/media-libs/id3lib/id3lib-3.8.3-r5.ebuild b/media-libs/id3lib/id3lib-3.8.3-r5.ebuild index ed3f976e1efb..872635ca1237 100644 --- a/media-libs/id3lib/id3lib-3.8.3-r5.ebuild +++ b/media-libs/id3lib/id3lib-3.8.3-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 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-r5.ebuild,v 1.10 2007/04/18 17:17:08 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/id3lib-3.8.3-r5.ebuild,v 1.11 2007/05/15 17:09:01 drac Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -8,7 +8,7 @@ WANT_AUTOMAKE="latest" inherit eutils autotools MY_P=${P/_/} -S=${WORKDIR}/${MY_P} +S="${WORKDIR}"/${MY_P} DESCRIPTION="Id3 library for C/C++" HOMEPAGE="http://id3lib.sourceforge.net/" @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd" -IUSE="doc examples" +IUSE="doc" RESTRICT="test" @@ -39,8 +39,8 @@ src_unpack() { } src_compile() { - econf || die "econf failed" - emake || die "emake failed" + econf || die "econf failed." + emake || die "emake failed." if use doc; then cd doc/ @@ -50,16 +50,8 @@ src_compile() { src_install() { emake DESTDIR="${D}" install || die "Install failed" - dodoc AUTHORS ChangeLog HISTORY README THANKS TODO - # some example programs to be placed in docs dir. - if use examples; then - cp -pPR examples ${D}/usr/share/doc/${PF}/examples - cd ${D}/usr/share/doc/${PF}/examples - make distclean - fi - if use doc; then dohtml -r doc fi |