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: qtractor-0.6.7.ebuild ChangeLog
Date: Mon, 01 Jun 2015 09:19:59
Message-Id: 20150601091955.26B77A14@oystercatcher.gentoo.org
1 aballier 15/06/01 09:19:55
2
3 Modified: ChangeLog
4 Added: qtractor-0.6.7.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.65 media-sound/qtractor/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/ChangeLog?rev=1.65&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/ChangeLog?rev=1.65&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/ChangeLog?r1=1.64&r2=1.65
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v
21 retrieving revision 1.64
22 retrieving revision 1.65
23 diff -u -r1.64 -r1.65
24 --- ChangeLog 30 Mar 2015 07:39:35 -0000 1.64
25 +++ ChangeLog 1 Jun 2015 09:19:55 -0000 1.65
26 @@ -1,6 +1,11 @@
27 # ChangeLog for media-sound/qtractor
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.64 2015/03/30 07:39:35 aballier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.65 2015/06/01 09:19:55 aballier Exp $
31 +
32 +*qtractor-0.6.7 (01 Jun 2015)
33 +
34 + 01 Jun 2015; Alexis Ballier <aballier@g.o> +qtractor-0.6.7.ebuild:
35 + version bump
36
37 *qtractor-0.6.6 (30 Mar 2015)
38
39
40
41
42 1.1 media-sound/qtractor/qtractor-0.6.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/qtractor-0.6.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qtractor/qtractor-0.6.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qtractor-0.6.7.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.6.7.ebuild,v 1.1 2015/06/01 09:19:55 aballier Exp $
52
53 EAPI=2
54
55 inherit qt4-r2 flag-o-matic
56
57 DESCRIPTION="Qtractor is an Audio/MIDI multi-track sequencer"
58 HOMEPAGE="http://qtractor.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64
65 IUSE="debug dssi libsamplerate mad osc rubberband vorbis cpu_flags_x86_sse zlib"
66
67 RDEPEND=">=dev-qt/qtcore-4.2:4
68 >=dev-qt/qtgui-4.7:4
69 media-libs/alsa-lib
70 media-libs/libsndfile
71 media-sound/jack-audio-connection-kit
72 media-libs/ladspa-sdk
73 >=media-libs/lilv-0.16.0
74 media-libs/lv2
75 media-libs/suil
76 dssi? ( media-libs/dssi )
77 mad? ( media-libs/libmad )
78 libsamplerate? ( media-libs/libsamplerate )
79 osc? ( media-libs/liblo )
80 rubberband? ( media-libs/rubberband )
81 vorbis? ( media-libs/libvorbis )
82 zlib? ( sys-libs/zlib )"
83 DEPEND="${RDEPEND}
84 virtual/pkgconfig"
85
86 DOCS="README ChangeLog TODO AUTHORS"
87
88 src_configure() {
89 econf \
90 $(use_enable mad libmad) \
91 $(use_enable libsamplerate) \
92 $(use_enable vorbis libvorbis) \
93 $(use_enable osc liblo) \
94 --enable-ladspa \
95 $(use_enable dssi) \
96 --enable-lilv \
97 $(use_enable rubberband librubberband) \
98 $(use_enable cpu_flags_x86_sse sse) \
99 $(use_enable zlib libz) \
100 $(use_enable debug)
101 eqmake4 qtractor.pro -o qtractor.mak
102 }