blob: 695efcfe38d4f06b8874c475af3bdbd35d8876da (
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 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qsampler/qsampler-0.2.1.ebuild,v 1.2 2008/01/27 11:01:01 aballier Exp $
EAPI="1"
inherit qt4
DESCRIPTION="QSampler is a graphical frontend to the LinuxSampler engine."
HOMEPAGE="http://www.linuxsampler.org"
SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +libgig"
RDEPEND="$(qt4_min_version 4.1)
>=media-libs/liblscp-0.5.5
libgig? ( >=media-libs/libgig-3.2.1 )
>=media-sound/linuxsampler-0.5
media-libs/alsa-lib"
DEPEND="${RDEPEND}"
src_compile() {
econf $(use_enable debug) \
$(use_enable libgig)
eqmake4 qsampler.pro -o qsampler.mak
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog README TODO
doman debian/${PN}.1
}
|