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