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: lmms-0.4.2.ebuild ChangeLog
Date: Sat, 10 Jan 2009 12:15:03
Message-Id: E1LLck1-0002wP-C3@stork.gentoo.org
1 aballier 09/01/10 12:15:01
2
3 Modified: ChangeLog
4 Added: lmms-0.4.2.ebuild
5 Log:
6 version bump, thanks Thomas, bug #254369
7 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
8
9 Revision Changes Path
10 1.5 media-sound/lmms/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lmms/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lmms/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lmms/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 10 Nov 2008 11:29:36 -0000 1.4
23 +++ ChangeLog 10 Jan 2009 12:15:01 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/lmms
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.4 2008/11/10 11:29:36 aballier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.5 2009/01/10 12:15:01 aballier Exp $
30 +
31 +*lmms-0.4.2 (10 Jan 2009)
32 +
33 + 10 Jan 2009; Alexis Ballier <aballier@g.o> +lmms-0.4.2.ebuild:
34 + version bump, thanks Thomas, bug #254369
35
36 *lmms-0.4.0 (10 Nov 2008)
37
38
39
40
41 1.1 media-sound/lmms/lmms-0.4.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lmms/lmms-0.4.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lmms/lmms-0.4.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lmms-0.4.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/lmms-0.4.2.ebuild,v 1.1 2009/01/10 12:15:01 aballier Exp $
51
52 EAPI="2"
53
54 inherit eutils cmake-utils
55
56 DESCRIPTION="free alternative to popular programs such as Fruityloops, Cubase and Logic"
57 HOMEPAGE="http://lmms.sourceforge.net"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
59
60 LICENSE="GPL-2 LGPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64"
63
64 IUSE="alsa debug fftw fluidsynth jack ogg pulseaudio sdl stk vst"
65 #portaudio: disabled upstream
66
67 RDEPEND="|| ( (
68 x11-libs/qt-core
69 x11-libs/qt-gui[accessibility]
70 ) >=x11-libs/qt-4.3.0:4[accessibility] )
71 >=media-libs/libsndfile-1.0.11
72 media-libs/libsamplerate
73 alsa? ( media-libs/alsa-lib )
74 fftw? ( =sci-libs/fftw-3* )
75 jack? ( >=media-sound/jack-audio-connection-kit-0.99.0 )
76 ogg? ( media-libs/libvorbis
77 media-libs/libogg )
78 fluidsynth? ( media-sound/fluidsynth )
79 pulseaudio? ( media-sound/pulseaudio )
80 sdl? ( media-libs/libsdl
81 >=media-libs/sdl-sound-1.0.1 )
82 stk? ( media-libs/stk )
83 vst? ( app-emulation/wine )"
84 # portaudio? ( media-libs/portaudio )
85 DEPEND="${RDEPEND}
86 >=dev-util/cmake-2.4.5"
87
88 DOCS="README AUTHORS ChangeLog TODO"
89
90 src_configure() {
91 mycmakeargs="${mycmakeargs}
92 -DWANT_SYSTEM_SR=TRUE
93 -DWANT_CAPS=TRUE
94 -DWANT_TAP=TRUE
95 $(cmake-utils_use_want alsa ALSA)
96 $(cmake-utils_use_want fftw FFTW3F)
97 $(cmake-utils_use_want jack JACK)
98 $(cmake-utils_use_want ogg OGGVORBIS)
99 $(cmake-utils_use_want pulseaudio PULSEAUDIO)
100 $(cmake-utils_use_want sdl SDL)
101 $(cmake-utils_use_want stk STK)
102 $(cmake-utils_use_want vst VST)
103 $(cmake-utils_use_want fluidsynth SF2)"
104 #$(cmake-utils_use_want portaudio PORTAUDIO)
105 cmake-utils_src_configure
106 }