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/qjackctl: ChangeLog qjackctl-0.3.5.ebuild
Date: Thu, 01 Oct 2009 21:37:10
Message-Id: E1MtTKl-0006o2-7z@stork.gentoo.org
1 aballier 09/10/01 21:37:07
2
3 Modified: ChangeLog
4 Added: qjackctl-0.3.5.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.62 media-sound/qjackctl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/ChangeLog?rev=1.62&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/ChangeLog?rev=1.62&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/ChangeLog?r1=1.61&r2=1.62
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v
19 retrieving revision 1.61
20 retrieving revision 1.62
21 diff -u -r1.61 -r1.62
22 --- ChangeLog 1 Aug 2009 06:34:14 -0000 1.61
23 +++ ChangeLog 1 Oct 2009 21:37:06 -0000 1.62
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/qjackctl
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.61 2009/08/01 06:34:14 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.62 2009/10/01 21:37:06 aballier Exp $
29 +
30 +*qjackctl-0.3.5 (01 Oct 2009)
31 +
32 + 01 Oct 2009; Alexis Ballier <aballier@g.o> +qjackctl-0.3.5.ebuild:
33 + version bump
34
35 01 Aug 2009; Samuli Suominen <ssuominen@g.o> qjackctl-0.3.2.ebuild,
36 qjackctl-0.3.4.ebuild:
37
38
39
40 1.1 media-sound/qjackctl/qjackctl-0.3.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: qjackctl-0.3.5.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.5.ebuild,v 1.1 2009/10/01 21:37:06 aballier Exp $
50
51 EAPI=2
52
53 inherit qt4
54
55 DESCRIPTION="A Qt application to control the JACK Audio Connection Kit and ALSA sequencer connections."
56 HOMEPAGE="http://qjackctl.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/qjackctl/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
62
63 IUSE="alsa dbus debug portaudio"
64
65 RDEPEND="alsa? ( media-libs/alsa-lib )
66 x11-libs/qt-core:4
67 x11-libs/qt-gui:4
68 dbus? ( x11-libs/qt-dbus )
69 portaudio? ( media-libs/portaudio )
70 >=media-sound/jack-audio-connection-kit-0.109.2"
71 DEPEND="${RDEPEND}"
72
73 src_configure() {
74 econf \
75 $(use_enable alsa alsa-seq) \
76 $(use_enable dbus) \
77 $(use_enable debug) \
78 $(use_enable portaudio)
79
80 # Emulate what the Makefile does, so that we can get the correct
81 # compiler used.
82 eqmake4 ${PN}.pro -o ${PN}.mak || die "eqmake4 failed"
83 }
84
85 src_compile() {
86 emake -f ${PN}.mak || die "emake failed"
87 lupdate ${PN}.pro || die "lupdate failed"
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "make install failed"
92 dodoc README ChangeLog TODO AUTHORS TRANSLATORS
93 }