blob: 9232f2451378e52b12c3032319a802417034eebd (
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
|
# Copyright 2005-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/liblscp/liblscp-0.2.9.ebuild,v 1.1 2005/05/29 23:25:56 fvdpol Exp $
inherit eutils
DESCRIPTION="liblscp is a C++ library for the Linux Sampler control protocol."
HOMEPAGE="http://www.linuxsampler.org/"
SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="
doc? ( app-doc/doxygen )"
DEPEND="${RDEPEND}"
src_compile() {
econf || die "./configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "einstall failed"
dodoc AUTHORS ChangeLog INSTALL TODO NEWS README
if use doc; then
mv ${S}/doc/html ${D}/usr/share/doc/${PF}/
fi
}
|