Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/qjackctl: ChangeLog qjackctl-0.3.3-r1.ebuild
Date: Fri, 10 Oct 2008 12:28:41
Message-Id: E1KoH6l-0005Xm-Bl@stork.gentoo.org
1 flameeyes 08/10/10 12:28:39
2
3 Modified: ChangeLog
4 Added: qjackctl-0.3.3-r1.ebuild
5 Log:
6 Update to EAPI=2 and USE deps.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.58 media-sound/qjackctl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/ChangeLog?rev=1.58&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/ChangeLog?rev=1.58&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/ChangeLog?r1=1.57&r2=1.58
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v
19 retrieving revision 1.57
20 retrieving revision 1.58
21 diff -u -r1.57 -r1.58
22 --- ChangeLog 27 Jul 2008 01:08:05 -0000 1.57
23 +++ ChangeLog 10 Oct 2008 12:28:39 -0000 1.58
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/qjackctl
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.57 2008/07/27 01:08:05 carlo Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.58 2008/10/10 12:28:39 flameeyes Exp $
29 +
30 +*qjackctl-0.3.3-r1 (10 Oct 2008)
31 +
32 + 10 Oct 2008; Diego Pettenò <flameeyes@g.o>
33 + +qjackctl-0.3.3-r1.ebuild:
34 + Update to EAPI=2 and USE deps.
35
36 27 Jul 2008; Carsten Lohrke <carlo@g.o> qjackctl-0.3.2.ebuild,
37 qjackctl-0.3.3.ebuild:
38
39
40
41 1.1 media-sound/qjackctl/qjackctl-0.3.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qjackctl-0.3.3-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.3-r1.ebuild,v 1.1 2008/10/10 12:28:39 flameeyes Exp $
51
52 EAPI=2
53
54 inherit eutils qt4
55
56 DESCRIPTION="A Qt application to control the JACK Audio Connection Kit and ALSA sequencer connections."
57 HOMEPAGE="http://qjackctl.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/qjackctl/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
63
64 IUSE="alsa debug"
65
66 DEPEND="alsa? ( media-libs/alsa-lib[midi] )
67 || ( (
68 x11-libs/qt-core:4
69 x11-libs/qt-gui:4
70 ) =x11-libs/qt-4.3*:4 )
71 media-sound/jack-audio-connection-kit"
72
73 src_configure() {
74 econf \
75 $(use_enable alsa alsa-seq) \
76 $(use_enable debug) \
77 || die "econf failed"
78
79 # Emulate what the Makefile does, so that we can get the correct
80 # compiler used.
81 eqmake4 ${PN}.pro -o ${PN}.mak || die "eqmake4 failed"
82 }
83
84 src_compile() {
85 emake -f ${PN}.mak || die "emake failed"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "make install failed"
90
91 rm "${D}/usr/share/applications/qjackctl.desktop"
92
93 # Upstream desktop file is invalid, better stick with our for now.
94 make_desktop_entry "${PN}" "QjackCtl" "${PN}"
95
96 dodoc README ChangeLog TODO AUTHORS
97 }