diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-12-07 13:48:22 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-12-07 13:48:22 +0000 |
commit | 83abf94a15d8d41bfc0dd2cae685536c0d76af3a (patch) | |
tree | 94175f7bff17cbe5887b0b284f5e992ac817de1b | |
parent | x86 stable wrt security bug #383991 (diff) | |
download | gentoo-2-83abf94a15d8d41bfc0dd2cae685536c0d76af3a.tar.gz gentoo-2-83abf94a15d8d41bfc0dd2cae685536c0d76af3a.tar.bz2 gentoo-2-83abf94a15d8d41bfc0dd2cae685536c0d76af3a.zip |
convert to waf-utils.eclass and bump to eapi4
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
-rw-r--r-- | media-libs/lv2core/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/lv2core/lv2core-6.0.ebuild | 21 |
2 files changed, 8 insertions, 18 deletions
diff --git a/media-libs/lv2core/ChangeLog b/media-libs/lv2core/ChangeLog index a72172e17f04..600b7048a806 100644 --- a/media-libs/lv2core/ChangeLog +++ b/media-libs/lv2core/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/lv2core # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v 1.8 2011/12/07 13:15:36 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v 1.9 2011/12/07 13:48:22 aballier Exp $ + + 07 Dec 2011; Alexis Ballier <aballier@gentoo.org> lv2core-6.0.ebuild: + convert to waf-utils.eclass and bump to eapi4 *lv2core-6.0 (07 Dec 2011) diff --git a/media-libs/lv2core/lv2core-6.0.ebuild b/media-libs/lv2core/lv2core-6.0.ebuild index ed5ee267a896..ac1e38e4f5fe 100644 --- a/media-libs/lv2core/lv2core-6.0.ebuild +++ b/media-libs/lv2core/lv2core-6.0.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/lv2core-6.0.ebuild,v 1.1 2011/12/07 13:15:36 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/lv2core-6.0.ebuild,v 1.2 2011/12/07 13:48:22 aballier Exp $ -EAPI=2 +EAPI=4 -inherit multilib toolchain-funcs +inherit waf-utils DESCRIPTION="LV2 is a simple but extensible successor of LADSPA" HOMEPAGE="http://lv2plug.in/" @@ -17,17 +17,4 @@ IUSE="" DEPEND="" RDEPEND="!<media-libs/slv2-0.4.2" - -src_configure() { - tc-export CC CXX CPP AR RANLIB - ./waf configure --prefix=/usr --libdir=/usr/$(get_libdir) || die "failed to configure" -} - -src_compile() { - ./waf || die "failed to build" -} - -src_install() { - ./waf --destdir="${D}" install || die "install failed" - dodoc AUTHORS README NEWS || die -} +DOCS=( "AUTHORS" "README" "NEWS" ) |