You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
inherit eutils
|
|
|
|
|
|
|
|
DESCRIPTION="LinuxSampler is a software audio sampler engine with professional grade features"
|
|
|
|
HOMEPAGE="http://www.linuxsampler.org/"
|
|
|
|
SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE="doc jack sqlite static-libs"
|
|
|
|
|
|
|
|
RDEPEND="sqlite? ( >=dev-db/sqlite-3.3 )
|
|
|
|
>=media-libs/libgig-4.0.0
|
|
|
|
media-libs/alsa-lib
|
|
|
|
jack? ( media-sound/jack-audio-connection-kit )"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
virtual/pkgconfig
|
|
|
|
doc? ( app-doc/doxygen )"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
# Force regeneration of the file to let it build with all bison
|
|
|
|
# versions, bug #556204
|
|
|
|
rm -f src/network/lscpparser.cpp || die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf --enable-alsa-driver \
|
|
|
|
--disable-arts-driver \
|
|
|
|
$(use_enable jack jack-driver) \
|
|
|
|
$(use_enable sqlite instruments-db) \
|
|
|
|
$(use_enable static-libs static)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake
|
|
|
|
if use doc; then
|
|
|
|
emake docs
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
|
|
|
|
if use doc; then
|
|
|
|
dohtml -r doc/html/*
|
|
|
|
fi
|
|
|
|
|
|
|
|
prune_libtool_files
|
|
|
|
}
|