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/a2jmidid: ChangeLog a2jmidid-8.ebuild
Date: Mon, 20 May 2013 16:33:11
Message-Id: 20130520163305.ABFB12171D@flycatcher.gentoo.org
1 aballier 13/05/20 16:33:05
2
3 Modified: ChangeLog
4 Added: a2jmidid-8.ebuild
5 Log:
6 version bump, add a dbus useflag by Rodrigo Severo, bug #417701
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.8 media-sound/a2jmidid/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 20 May 2013 16:17:35 -0000 1.7
24 +++ ChangeLog 20 May 2013 16:33:05 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/a2jmidid
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v 1.7 2013/05/20 16:17:35 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v 1.8 2013/05/20 16:33:05 aballier Exp $
30 +
31 +*a2jmidid-8 (20 May 2013)
32 +
33 + 20 May 2013; Alexis Ballier <aballier@g.o> +a2jmidid-8.ebuild:
34 + version bump, add a dbus useflag by Rodrigo Severo, bug #417701
35
36 20 May 2013; Alexis Ballier <aballier@g.o> a2jmidid-6.ebuild:
37 convert to waf-utils and improve python code, bug #313931 by Arfrever Frehtes
38
39
40
41 1.1 media-sound/a2jmidid/a2jmidid-8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/a2jmidid-8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/a2jmidid-8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: a2jmidid-8.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-8.ebuild,v 1.1 2013/05/20 16:33:05 aballier Exp $
51
52 EAPI="4"
53 PYTHON_DEPEND="2"
54 NO_WAF_LIBDIR=1
55
56 inherit python toolchain-funcs waf-utils
57
58 DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
59 HOMEPAGE="http://home.gna.org/a2jmidid/"
60 SRC_URI="http://download.gna.org/a2jmidid/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="dbus"
66
67 RDEPEND="media-libs/alsa-lib
68 media-sound/jack-audio-connection-kit
69 dbus? ( sys-apps/dbus )"
70 DEPEND="${RDEPEND}
71 virtual/pkgconfig"
72
73 DOCS=(AUTHORS README NEWS internals.txt)
74
75 pkg_setup() {
76 python_set_active_version 2
77 python_pkg_setup
78 }
79
80 src_configure() {
81 if use dbus ; then
82 waf-utils_src_configure
83 else
84 waf-utils_src_configure --disable-dbus
85 fi
86 }
87
88 src_install() {
89 waf-utils_src_install
90 python_convert_shebangs -r 2 "${ED}"
91 }