47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/slv2-0.6.6.ebuild,v 1.3 2009/11/07 18:07:34 volkmar Exp $
|
|
|
|
EAPI=2
|
|
|
|
inherit multilib toolchain-funcs eutils
|
|
|
|
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 ~ppc 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_prepare() {
|
|
epatch "${FILESDIR}/ldconfig.patch"
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export CC CXX CPP AR RANLIB
|
|
./waf configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/$(get_libdir)/ \
|
|
--htmldir=/usr/share/doc/${PF}/html \
|
|
$(use doc && echo "--build-docs") \
|
|
$(use jack || echo "--no-jack") \
|
|
|| die "failed to configure"
|
|
}
|
|
|
|
src_compile() {
|
|
./waf || die "failed to build"
|
|
}
|
|
|
|
src_install() {
|
|
./waf --destdir="${D}" install || die "install failed"
|
|
dodoc AUTHORS README ChangeLog
|
|
}
|