blob: 63aa7f5b57609fdfdce1153015ee58338d081289 (
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
37
38
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qsampler/qsampler-0.2.2_p2345.ebuild,v 1.1 2012/05/31 09:56:40 yngwin Exp $
EAPI=4
inherit eutils qt4-r2
MY_P=${P/_p/.}
DESCRIPTION="A graphical frontend to the LinuxSampler engine"
HOMEPAGE="http://qsampler.sourceforge.net"
SRC_URI="mirror://gentoo/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +libgig"
DEPEND="media-libs/alsa-lib
>=media-libs/liblscp-0.5.5
x11-libs/libX11
x11-libs/qt-core:4
x11-libs/qt-gui:4
libgig? ( >=media-libs/libgig-3.2.1 )"
RDEPEND="${DEPEND}
>=media-sound/linuxsampler-0.5"
S=${WORKDIR}/${MY_P}
src_configure() {
econf $(use_enable debug) \
$(use_enable libgig)
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS ChangeLog README TODO
doman debian/${PN}.1
}
|