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.
gentoo-overlay/net-libs/libdexter/libdexter-0.1.4.ebuild

37 lines
823 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/libdexter-0.1.4.ebuild,v 1.5 2012/05/05 02:54:25 jdhore Exp $
inherit flag-o-matic
DESCRIPTION="Libdexter is a plugin-based, distributed sampling library"
HOMEPAGE="http://libdexter.sourceforge.net/"
SRC_URI="mirror://sourceforge/libdexter/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND=""
DEPEND="${RDEPEND}
virtual/pkgconfig
>=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 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README NEWS AUTHORS TODO
}