blob: 577548d18e4b286609603da82b5c62102e48a7d0 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/vmpk/vmpk-0.3.2.ebuild,v 1.1 2010/06/19 19:25:54 aballier Exp $
inherit cmake-utils eutils
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="x11-libs/qt-core
x11-libs/qt-gui
x11-libs/qt-svg
dbus? ( x11-libs/qt-dbus )
media-libs/alsa-lib"
DEPEND="${RDEPEND}
app-text/docbook-xsl-stylesheets
dev-util/pkgconfig"
DOCS="AUTHORS ChangeLog NEWS README TODO"
src_compile() {
local mycmakeargs=( "$(cmake-utils_use_enable dbus DBUS)" )
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
rm -rf "${D}/usr/share/doc/packages"
}
|