blob: d79c1b766b0277f7392b5101fc9d0889a2f48b82 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="Virtual MIDI Piano Keyboard"
HOMEPAGE="http://vmpk.sourceforge.net/"
SRC_URI="mirror://sourceforge/vmpk/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
>=media-sound/drumstick-1.0.0
x11-libs/libxcb
dbus? ( dev-qt/qtdbus:5 )"
DEPEND="${RDEPEND}
app-text/docbook-xsl-stylesheets
dev-qt/linguist-tools:5
virtual/pkgconfig"
src_configure() {
local mycmakeargs=(
-DENABLE_DBUS=$(usex dbus)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
rm -rf "${D}/usr/share/doc/packages" || die
}
|