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/qtractor: ChangeLog qtractor-0.5.5.ebuild
Date: Sat, 30 Jun 2012 12:52:14
Message-Id: 20120630125158.DD7262004B@flycatcher.gentoo.org
1 aballier 12/06/30 12:51:58
2
3 Modified: ChangeLog
4 Added: qtractor-0.5.5.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.45 media-sound/qtractor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/ChangeLog?rev=1.45&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/ChangeLog?rev=1.45&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/ChangeLog?r1=1.44&r2=1.45
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v
20 retrieving revision 1.44
21 retrieving revision 1.45
22 diff -u -r1.44 -r1.45
23 --- ChangeLog 5 May 2012 08:47:48 -0000 1.44
24 +++ ChangeLog 30 Jun 2012 12:51:58 -0000 1.45
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/qtractor
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.44 2012/05/05 08:47:48 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.45 2012/06/30 12:51:58 aballier Exp $
30 +
31 +*qtractor-0.5.5 (30 Jun 2012)
32 +
33 + 30 Jun 2012; Alexis Ballier <aballier@g.o> +qtractor-0.5.5.ebuild:
34 + version bump
35
36 05 May 2012; Michał Górny <mgorny@g.o> qtractor-0.5.4.ebuild:
37 dev-util/pkgconfig -> virtual/pkgconfig
38
39
40
41 1.1 media-sound/qtractor/qtractor-0.5.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/qtractor-0.5.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/qtractor-0.5.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qtractor-0.5.5.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/qtractor/qtractor-0.5.5.ebuild,v 1.1 2012/06/30 12:51:58 aballier Exp $
51
52 EAPI=2
53
54 inherit qt4-r2 flag-o-matic
55
56 DESCRIPTION="Qtractor is an Audio/MIDI multi-track sequencer."
57 HOMEPAGE="http://qtractor.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63
64 IUSE="debug dssi libsamplerate mad osc rubberband vorbis suil sse zlib"
65
66 RDEPEND=">=x11-libs/qt-core-4.2:4
67 >=x11-libs/qt-gui-4.7:4[gtkstyle]
68 media-libs/alsa-lib
69 media-libs/libsndfile
70 media-sound/jack-audio-connection-kit
71 media-libs/ladspa-sdk
72 dssi? ( media-libs/dssi )
73 mad? ( media-libs/libmad )
74 libsamplerate? ( media-libs/libsamplerate )
75 media-libs/lilv
76 osc? ( media-libs/liblo )
77 rubberband? ( media-libs/rubberband )
78 suil? ( media-libs/suil )
79 vorbis? ( media-libs/libvorbis )
80 zlib? ( sys-libs/zlib )"
81 DEPEND="${RDEPEND}
82 virtual/pkgconfig"
83
84 DOCS="README ChangeLog TODO AUTHORS"
85
86 src_configure() {
87 econf \
88 $(use_enable mad libmad) \
89 $(use_enable libsamplerate) \
90 $(use_enable vorbis libvorbis) \
91 $(use_enable osc liblo) \
92 --enable-ladspa \
93 $(use_enable dssi) \
94 --enable-lilv \
95 $(use_enable rubberband librubberband) \
96 $(use suil || echo " --disable-suil") \
97 $(use_enable sse) \
98 $(use_enable zlib libz) \
99 $(use_enable debug)
100 eqmake4 qtractor.pro -o qtractor.mak
101 }