diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-11-20 10:14:08 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-11-20 10:14:08 +0000 |
commit | ec2615152e2b321265207cd7010d7a3e278b0eb4 (patch) | |
tree | 54a4dd47da3ecc7cb0913c0786a1019e73129303 /media-libs/slv2 | |
parent | alpha/arm/ia64 stable wrt #245960 (diff) | |
download | gentoo-2-ec2615152e2b321265207cd7010d7a3e278b0eb4.tar.gz gentoo-2-ec2615152e2b321265207cd7010d7a3e278b0eb4.tar.bz2 gentoo-2-ec2615152e2b321265207cd7010d7a3e278b0eb4.zip |
version bump
(Portage version: 2.2_rc14/cvs/Linux 2.6.27.5 x86_64)
Diffstat (limited to 'media-libs/slv2')
-rw-r--r-- | media-libs/slv2/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/slv2/slv2-0.6.1.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/media-libs/slv2/ChangeLog b/media-libs/slv2/ChangeLog index 0ca1f782ce5d..ebe8be21af87 100644 --- a/media-libs/slv2/ChangeLog +++ b/media-libs/slv2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/slv2 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.9 2008/07/09 10:36:15 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.10 2008/11/20 10:14:08 aballier Exp $ + +*slv2-0.6.1 (20 Nov 2008) + + 20 Nov 2008; Alexis Ballier <aballier@gentoo.org> +slv2-0.6.1.ebuild: + version bump *slv2-0.6.0 (09 Jul 2008) diff --git a/media-libs/slv2/slv2-0.6.1.ebuild b/media-libs/slv2/slv2-0.6.1.ebuild new file mode 100644 index 000000000000..b9d2a2a5805c --- /dev/null +++ b/media-libs/slv2/slv2-0.6.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/slv2-0.6.1.ebuild,v 1.1 2008/11/20 10:14:08 aballier Exp $ + +EAPI=2 + +inherit multilib toolchain-funcs + +DESCRIPTION="A library to make the use of LV2 plugins as simple as possible for applications" +HOMEPAGE="http://wiki.drobilla.net/SLV2" +SRC_URI="http://download.drobilla.net/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc jack" + +RDEPEND=">=dev-libs/redland-1.0.6 + jack? ( >=media-sound/jack-audio-connection-kit-0.107.0 ) + media-libs/lv2core" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + dev-util/pkgconfig" + +src_configure() { + tc-export CC CXX CPP AR RANLIB + # any better idea? + use jack || sed -i -e "s/jack/nojack/" wscript + ./waf configure \ + --prefix=/usr \ + --libdir=/usr/$(get_libdir)/ \ + --htmldir=/usr/share/doc/${PF}/html \ + $(use doc && echo "--build-docs") \ + || die "failed to configure" +} + +src_compile() { + ./waf || die "failed to build" +} + +src_install() { + ./waf --destdir="${D}" install || die "install failed" + dodoc AUTHORS README ChangeLog +} |