From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RYHoO-0001Is-PL for garchives@archives.gentoo.org; Wed, 07 Dec 2011 13:45:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D678B21C070; Wed, 7 Dec 2011 13:45:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9100221C070 for ; Wed, 7 Dec 2011 13:45:21 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA6FC1B400F for ; Wed, 7 Dec 2011 13:45:20 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2139) id 9E3792004B; Wed, 7 Dec 2011 13:45:19 +0000 (UTC) From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-libs/lilv: lilv-0.5.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: lilv-0.5.0.ebuild ChangeLog X-VCS-Directories: media-libs/lilv X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: <20111207134519.9E3792004B@flycatcher.gentoo.org> Date: Wed, 7 Dec 2011 13:45:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: ff7f14fa-6569-46f3-b315-f8b7cc2e0658 X-Archives-Hash: 9917f0dbdec73aac31fe510b13827b24 aballier 11/12/07 13:45:19 Modified: lilv-0.5.0.ebuild ChangeLog Log: convert to waf-utils.eclass =20 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64) Revision Changes Path 1.2 media-libs/lilv/lilv-0.5.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/li= lv-0.5.0.ebuild?rev=3D1.2&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/li= lv-0.5.0.ebuild?rev=3D1.2&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/li= lv-0.5.0.ebuild?r1=3D1.1&r2=3D1.2 Index: lilv-0.5.0.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/media-libs/lilv/lilv-0.5.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- lilv-0.5.0.ebuild 7 Dec 2011 13:39:05 -0000 1.1 +++ lilv-0.5.0.ebuild 7 Dec 2011 13:45:19 -0000 1.2 @@ -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/lilv/lilv-0.5.0.ebuild,v 1= .1 2011/12/07 13:39:05 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/lilv-0.5.0.ebuild,v 1= .2 2011/12/07 13:45:19 aballier Exp $ =20 EAPI=3D4 =20 -inherit base multilib toolchain-funcs +inherit base waf-utils =20 DESCRIPTION=3D"Library to make the use of LV2 plugins as simple as possi= ble for applications" HOMEPAGE=3D"http://drobilla.net/software/lilv/" @@ -23,29 +23,17 @@ dev-util/pkgconfig" =20 PATCHES=3D( "${FILESDIR}/ldconfig.patch" ) +DOCS=3D( "AUTHORS" "README" "ChangeLog" ) =20 src_configure() { - tc-export CC CXX CPP AR RANLIB - ./waf configure \ - --prefix=3D/usr \ - --libdir=3D"/usr/$(get_libdir)" \ - --mandir=3D/usr/share/man \ - --docdir=3D/usr/share/doc/${PF} \ + waf-utils_src_configure \ + "--mandir=3D/usr/share/man" \ + "--docdir=3D/usr/share/doc/${PF}" \ $(use test && echo "--test") \ - $(use doc && echo "--docs") \ - || die - #$(use dyn-manifest && echo "--dyn-manifest") \ -} - -src_compile() { - ./waf || die + $(use doc && echo "--docs") + #$(use dyn-manifest && echo "--dyn-manifest") \ } =20 src_test() { ./waf test || die } - -src_install() { - ./waf install --destdir=3D"${D}" || die - dodoc AUTHORS README ChangeLog -} 1.2 media-libs/lilv/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/Ch= angeLog?rev=3D1.2&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/Ch= angeLog?rev=3D1.2&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/Ch= angeLog?r1=3D1.1&r2=3D1.2 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 7 Dec 2011 13:39:05 -0000 1.1 +++ ChangeLog 7 Dec 2011 13:45:19 -0000 1.2 @@ -1,6 +1,9 @@ # ChangeLog for media-libs/lilv # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.1 2011/= 12/07 13:39:05 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.2 2011/= 12/07 13:45:19 aballier Exp $ + + 07 Dec 2011; Alexis Ballier lilv-0.5.0.ebuild: + convert to waf-utils.eclass =20 *lilv-0.5.0 (07 Dec 2011) =20