blob: b7063d57ab8ecf6f2318d70a317a9724b21dfb7c (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGIT_REPO_URI="https://git.code.sf.net/p/qsampler/code"
inherit qmake-utils xdg autotools git-r3
DESCRIPTION="Graphical frontend to the LinuxSampler engine"
HOMEPAGE="https://qsampler.sourceforge.io/ https://www.linuxsampler.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug +libgig"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-libs/alsa-lib
>=media-libs/liblscp-0.5.6:=
x11-libs/libX11
libgig? ( >=media-libs/libgig-3.3.0:= )
"
RDEPEND="${DEPEND}
>=media-sound/linuxsampler-0.5
"
BDEPEND="dev-qt/linguist-tools:5"
DOCS=( AUTHORS ChangeLog README TODO TRANSLATORS )
PATCHES=( "${FILESDIR}/${P}-Makefile.patch" )
src_prepare() {
default
emake -f Makefile.git
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable debug)
$(use_enable libgig)
)
ac_qmake="$(qt5_get_bindir)/qmake" \
econf "${myeconfargs[@]}"
cd src || die
eqmake5 src.pro -o Makefile
}
|