diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-12 09:10:54 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-12 09:10:54 +0000 |
commit | 82f1807b063072ec1cd0f39a220acf08e87183df (patch) | |
tree | f6910d9665ba928bf0d381320e42adf59b2e4698 /media-libs/liblrdf | |
parent | reduce chance of race condition - bug #98189 (diff) | |
download | gentoo-2-82f1807b063072ec1cd0f39a220acf08e87183df.tar.gz gentoo-2-82f1807b063072ec1cd0f39a220acf08e87183df.tar.bz2 gentoo-2-82f1807b063072ec1cd0f39a220acf08e87183df.zip |
EAPI2fy
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/liblrdf')
-rw-r--r-- | media-libs/liblrdf/liblrdf-0.4.0.ebuild | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/media-libs/liblrdf/liblrdf-0.4.0.ebuild b/media-libs/liblrdf/liblrdf-0.4.0.ebuild index 988a99b0fd59..0da7d75ac104 100644 --- a/media-libs/liblrdf/liblrdf-0.4.0.ebuild +++ b/media-libs/liblrdf/liblrdf-0.4.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/liblrdf-0.4.0.ebuild,v 1.11 2009/02/12 17:41:53 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/liblrdf-0.4.0.ebuild,v 1.12 2009/05/12 09:10:54 ssuominen Exp $ -inherit autotools libtool base +inherit autotools eutils DESCRIPTION="A library for the manipulation of RDF file in LADSPA plugins" HOMEPAGE="http://lrdf.sourceforge.net" @@ -17,19 +17,12 @@ RDEPEND=">=media-libs/raptor-0.9.12 DEPEND="${RDEPEND} dev-util/pkgconfig" -PATCHES=( - "${FILESDIR}"/${P}-dontbuild-tests.patch -) - -src_unpack() { - base_src_unpack - cd "${S}" - +src_prepare() { + epatch "${FILESDIR}"/${P}-dontbuild-tests.patch eautoreconf - elibtoolize } src_install() { - emake DESTDIR="${D}" install || die "emake install failed." + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README } |