diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-12-07 13:39:05 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-12-07 13:39:05 +0000 |
commit | 0147018dc8d34388cd54ad5904a7e600f4fca555 (patch) | |
tree | 95712c734ebe217d6f8a7a5641947473ed594ffb /media-libs/lilv/lilv-0.5.0.ebuild | |
parent | Whitespace. (diff) | |
download | historical-0147018dc8d34388cd54ad5904a7e600f4fca555.tar.gz historical-0147018dc8d34388cd54ad5904a7e600f4fca555.tar.bz2 historical-0147018dc8d34388cd54ad5904a7e600f4fca555.zip |
initial import, ebuild by me
Package-Manager: portage-2.2.0_alpha79/cvs/Linux x86_64
Diffstat (limited to 'media-libs/lilv/lilv-0.5.0.ebuild')
-rw-r--r-- | media-libs/lilv/lilv-0.5.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/media-libs/lilv/lilv-0.5.0.ebuild b/media-libs/lilv/lilv-0.5.0.ebuild new file mode 100644 index 000000000000..0d3466d06e07 --- /dev/null +++ b/media-libs/lilv/lilv-0.5.0.ebuild @@ -0,0 +1,51 @@ +# 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 $ + +EAPI=4 + +inherit base multilib toolchain-funcs + +DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications" +HOMEPAGE="http://drobilla.net/software/lilv/" +SRC_URI="http://download.drobilla.net/${P}.tar.bz2" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc test" + +RDEPEND=">=media-libs/lv2core-6 + >=dev-libs/serd-0.5 + >=dev-libs/sord-0.5" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + dev-util/pkgconfig" + +PATCHES=( "${FILESDIR}/ldconfig.patch" ) + +src_configure() { + tc-export CC CXX CPP AR RANLIB + ./waf configure \ + --prefix=/usr \ + --libdir="/usr/$(get_libdir)" \ + --mandir=/usr/share/man \ + --docdir=/usr/share/doc/${PF} \ + $(use test && echo "--test") \ + $(use doc && echo "--docs") \ + || die + #$(use dyn-manifest && echo "--dyn-manifest") \ +} + +src_compile() { + ./waf || die +} + +src_test() { + ./waf test || die +} + +src_install() { + ./waf install --destdir="${D}" || die + dodoc AUTHORS README ChangeLog +} |