blob: 324d6d72796ccd0d3cab11b1ac9323cbbceb959c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 2006-2007 Gentoo Foundation
# Distributed under the terms of the GNU Lesser General Public License v2.1
# $Header:
inherit flag-o-matic
DESCRIPTION="Libdexter is a plugin-based, distributed sampling library"
HOMEPAGE="http://www.libdexter.org"
SRC_URI="mirror://sourceforge/libdexter/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND=""
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.15
>=dev-libs/glib-2.10
doc? (
>=dev-util/gtk-doc-1.6
~app-text/docbook-xml-dtd-4.1.2
)"
src_compile() {
econf \
$(use_enable doc gtk-doc) || die "econf failed"
emake -s || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README NEWS AUTHORS TODO
}
|