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.
50 lines
1.3 KiB
50 lines
1.3 KiB
10 years ago
|
# Copyright 1999-2014 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/raul/raul-0.8.0-r1.ebuild,v 1.1 2014/12/25 19:39:04 mgorny Exp $
|
||
|
|
||
|
EAPI=5
|
||
|
|
||
|
PYTHON_COMPAT=( python2_7 )
|
||
|
|
||
|
inherit waf-utils python-any-r1 eutils
|
||
|
|
||
|
DESCRIPTION="C++ utility library primarily aimed at audio/musical applications"
|
||
|
HOMEPAGE="http://wiki.drobilla.net/Raul"
|
||
|
SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
|
||
|
|
||
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE="debug doc test"
|
||
|
|
||
|
RDEPEND="dev-libs/boost
|
||
|
>=dev-libs/glib-2.14.0"
|
||
|
DEPEND="${RDEPEND}
|
||
|
${PYTHON_DEPS}
|
||
|
virtual/pkgconfig
|
||
|
doc? ( app-doc/doxygen )"
|
||
|
|
||
|
RAUL_TESTS="atomic_test atom_test list_test midi_ringbuffer_test path_test quantize_test queue_test ringbuffer_test smf_test table_test thread_test time_test"
|
||
|
DOCS=( AUTHORS README ChangeLog )
|
||
|
|
||
|
src_prepare() {
|
||
|
epatch "${FILESDIR}/ldconfig2.patch"
|
||
|
epatch "${FILESDIR}/${P}-gcc47.patch"
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
waf-utils_src_configure \
|
||
|
--htmldir=/usr/share/doc/${PF}/html \
|
||
|
$(use debug && echo "--debug") \
|
||
|
$(use doc && echo "--docs") \
|
||
|
$(use test && echo "--test")
|
||
|
}
|
||
|
|
||
|
src_test() {
|
||
|
cd "${S}/build/test" || die
|
||
|
for i in ${RAUL_TESTS} ; do
|
||
|
einfo "Running test ${i}"
|
||
|
LD_LIBRARY_PATH=.. ./${i} || die
|
||
|
done
|
||
|
}
|