Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/vmpk: ChangeLog vmpk-0.5.0.ebuild
Date: Thu, 02 Aug 2012 12:46:58
Message-Id: 20120802124641.A152C2004B@flycatcher.gentoo.org
1 aballier 12/08/02 12:46:41
2
3 Modified: ChangeLog
4 Added: vmpk-0.5.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 media-sound/vmpk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vmpk/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vmpk/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vmpk/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/vmpk/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 31 Jul 2012 16:17:30 -0000 1.13
24 +++ ChangeLog 2 Aug 2012 12:46:41 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/vmpk
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/vmpk/ChangeLog,v 1.13 2012/07/31 16:17:30 kensington Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/vmpk/ChangeLog,v 1.14 2012/08/02 12:46:41 aballier Exp $
30 +
31 +*vmpk-0.5.0 (02 Aug 2012)
32 +
33 + 02 Aug 2012; Alexis Ballier <aballier@g.o> +vmpk-0.5.0.ebuild:
34 + version bump
35
36 31 Jul 2012; Michael Palimaka <kensington@g.o> vmpk-0.3.1.ebuild,
37 vmpk-0.3.2.ebuild, vmpk-0.3.3.ebuild, vmpk-0.4.0.ebuild:
38
39
40
41 1.1 media-sound/vmpk/vmpk-0.5.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vmpk/vmpk-0.5.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vmpk/vmpk-0.5.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vmpk-0.5.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/vmpk/vmpk-0.5.0.ebuild,v 1.1 2012/08/02 12:46:41 aballier Exp $
51
52 EAPI=4
53
54 inherit cmake-utils eutils
55
56 DESCRIPTION="Virtual MIDI Piano Keyboard"
57 HOMEPAGE="http://vmpk.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/vmpk/${P}.tar.bz2"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="alsa dbus jack"
64
65 RDEPEND=">=x11-libs/qt-core-4.8:4
66 >=x11-libs/qt-gui-4.8:4
67 >=x11-libs/qt-svg-4.8:4
68 alsa? ( media-libs/alsa-lib )
69 dbus? ( >=x11-libs/qt-dbus-4.8:4 )
70 jack? ( media-sound/jack-audio-connection-kit )"
71 DEPEND="${RDEPEND}
72 app-text/docbook-xsl-stylesheets
73 virtual/pkgconfig"
74
75 DOCS=( AUTHORS ChangeLog NEWS README TODO )
76
77 src_configure() {
78 local mycmakeargs=(
79 "$(cmake-utils_use_enable alsa ALSA)"
80 "$(cmake-utils_use_enable dbus DBUS)"
81 "$(cmake-utils_use_enable jack JACK)"
82 )
83 cmake-utils_src_configure
84 }
85
86 src_install() {
87 cmake-utils_src_install
88 rm -rf "${D}/usr/share/doc/packages"
89 }