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/lmms: ChangeLog lmms-0.4.9-r2.ebuild
Date: Sat, 26 Feb 2011 15:10:02
Message-Id: 20110226150952.549BB20054@flycatcher.gentoo.org
1 aballier 11/02/26 15:09:52
2
3 Modified: ChangeLog
4 Added: lmms-0.4.9-r2.ebuild
5 Log:
6 Do not build ladspa plugins available in the tree, rather rdepend on them since it can find them.
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.17 media-sound/lmms/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lmms/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lmms/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lmms/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 26 Feb 2011 14:46:50 -0000 1.16
24 +++ ChangeLog 26 Feb 2011 15:09:52 -0000 1.17
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/lmms
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.16 2011/02/26 14:46:50 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.17 2011/02/26 15:09:52 aballier Exp $
30 +
31 +*lmms-0.4.9-r2 (26 Feb 2011)
32 +
33 + 26 Feb 2011; Alexis Ballier <aballier@g.o> +lmms-0.4.9-r2.ebuild:
34 + Do not build ladspa plugins available in the tree, rather rdepend on them
35 + since it can find them.
36
37 *lmms-0.4.9-r1 (26 Feb 2011)
38
39
40
41
42 1.1 media-sound/lmms/lmms-0.4.9-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lmms/lmms-0.4.9-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lmms/lmms-0.4.9-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lmms-0.4.9-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/lmms-0.4.9-r2.ebuild,v 1.1 2011/02/26 15:09:52 aballier Exp $
52
53 EAPI="2"
54
55 inherit eutils cmake-utils
56
57 DESCRIPTION="free alternative to popular programs such as Fruityloops, Cubase and Logic"
58 HOMEPAGE="http://lmms.sourceforge.net"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2 LGPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64
65 IUSE="alsa debug fftw fluidsynth jack ogg pulseaudio sdl stk vst"
66
67 RDEPEND="x11-libs/qt-core:4
68 x11-libs/qt-gui:4[accessibility]
69 >=media-libs/libsndfile-1.0.11
70 >=media-libs/libsamplerate-0.1.7
71 x11-libs/libXinerama
72 alsa? ( media-libs/alsa-lib )
73 fftw? ( =sci-libs/fftw-3* >=x11-libs/fltk-1.3.0_rc:1.1 )
74 jack? ( >=media-sound/jack-audio-connection-kit-0.99.0 )
75 ogg? ( media-libs/libvorbis
76 media-libs/libogg )
77 fluidsynth? ( media-sound/fluidsynth )
78 pulseaudio? ( media-sound/pulseaudio )
79 sdl? ( media-libs/libsdl
80 >=media-libs/sdl-sound-1.0.1 )
81 stk? ( media-libs/stk )
82 vst? ( app-emulation/wine )"
83 DEPEND="${RDEPEND}
84 >=dev-util/cmake-2.4.5"
85 RDEPEND="${RDEPEND}
86 media-plugins/swh-plugins
87 media-plugins/caps-plugins
88 media-plugins/tap-plugins"
89
90 DOCS="README AUTHORS TODO"
91
92 PATCHES=( "${FILESDIR}/${PN}-unembedfltk.patch" )
93 src_configure() {
94 mycmakeargs="${mycmakeargs}
95 -DWANT_SYSTEM_SR=TRUE
96 -DWANT_CAPS=FALSE
97 -DWANT_TAP=FALSE
98 -DWANT_SWH=FALSE
99 -DWANT_CMT=TRUE
100 -DWANT_CALF=TRUE
101 $(cmake-utils_use_want alsa ALSA)
102 $(cmake-utils_use_want fftw FFTW3F)
103 $(cmake-utils_use_want jack JACK)
104 $(cmake-utils_use_want ogg OGGVORBIS)
105 $(cmake-utils_use_want pulseaudio PULSEAUDIO)
106 $(cmake-utils_use_want sdl SDL)
107 $(cmake-utils_use_want stk STK)
108 $(cmake-utils_use_want vst VST)
109 $(cmake-utils_use_want fluidsynth SF2)"
110 cmake-utils_src_configure
111 }