diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-10-02 17:58:43 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-10-02 17:58:43 +0000 |
commit | 137ab5497f292ed75cfc453978b85dd24be61558 (patch) | |
tree | 2205cbfdb113de5a499ad5a257bcbf5a9d35a8a3 /media-sound/lmms | |
parent | stable ppc, bug 238794 (diff) | |
download | gentoo-2-137ab5497f292ed75cfc453978b85dd24be61558.tar.gz gentoo-2-137ab5497f292ed75cfc453978b85dd24be61558.tar.bz2 gentoo-2-137ab5497f292ed75cfc453978b85dd24be61558.zip |
We need qt4 with the accessibility useflag turned on, bug #239294, fix by Thomas 'gimpel' Kuther
(Portage version: 2.2_rc11/cvs/Linux 2.6.26.5 x86_64)
Diffstat (limited to 'media-sound/lmms')
-rw-r--r-- | media-sound/lmms/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/lmms/lmms-0.4.0_rc2.ebuild | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/media-sound/lmms/ChangeLog b/media-sound/lmms/ChangeLog index 82676be1897e..cc29b22abf56 100644 --- a/media-sound/lmms/ChangeLog +++ b/media-sound/lmms/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/lmms # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.2 2008/09/23 21:00:59 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/ChangeLog,v 1.3 2008/10/02 17:58:43 aballier Exp $ + + 02 Oct 2008; Alexis Ballier <aballier@gentoo.org> lmms-0.4.0_rc2.ebuild: + We need qt4 with the accessibility useflag turned on, bug #239294, fix by + Thomas 'gimpel' Kuther *lmms-0.4.0_rc2 (23 Sep 2008) diff --git a/media-sound/lmms/lmms-0.4.0_rc2.ebuild b/media-sound/lmms/lmms-0.4.0_rc2.ebuild index 6090f57192d0..1af7ff2207cc 100644 --- a/media-sound/lmms/lmms-0.4.0_rc2.ebuild +++ b/media-sound/lmms/lmms-0.4.0_rc2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/lmms-0.4.0_rc2.ebuild,v 1.1 2008/09/23 21:00:59 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lmms/lmms-0.4.0_rc2.ebuild,v 1.2 2008/10/02 17:58:43 aballier Exp $ -EAPI="1" +EAPI="2" inherit eutils cmake-utils @@ -20,8 +20,8 @@ IUSE="alsa debug fftw fluidsynth jack ogg pch portaudio pulseaudio sdl stk vst" RDEPEND="|| ( ( x11-libs/qt-core - x11-libs/qt-gui - ) >=x11-libs/qt-4.3.0:4 ) + x11-libs/qt-gui[accessibility] + ) >=x11-libs/qt-4.3.0:4[accessibility] ) >=media-libs/libsndfile-1.0.11 media-libs/libsamplerate alsa? ( media-libs/alsa-lib ) @@ -43,7 +43,7 @@ S="${WORKDIR}/${MY_P}" DOCS="README AUTHORS ChangeLog TODO" -src_compile() { +src_configure() { mycmakeargs="${mycmakeargs} -DWANT_SYSTEM_SR=TRUE -DWANT_CAPS=TRUE @@ -60,5 +60,5 @@ src_compile() { $(cmake-utils_use_want fluidsynth SF2) $(cmake-utils_use_want pch PCH)" - cmake-utils_src_compile + cmake-utils_src_configure } |