diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-07-30 21:08:42 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-07-30 21:08:42 +0000 |
commit | 81ca1f8ec2bc5852a995251833bd909662032b38 (patch) | |
tree | 762a17a192e09d94a00f27903cf9cb32c652884b /www-plugins | |
parent | Config file location fix for #354649 (diff) | |
download | gentoo-2-81ca1f8ec2bc5852a995251833bd909662032b38.tar.gz gentoo-2-81ca1f8ec2bc5852a995251833bd909662032b38.tar.bz2 gentoo-2-81ca1f8ec2bc5852a995251833bd909662032b38.zip |
Drop non-functional openal support, bug #377005.
(Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins')
-rw-r--r-- | www-plugins/lightspark/ChangeLog | 6 | ||||
-rw-r--r-- | www-plugins/lightspark/lightspark-0.5.0.ebuild | 9 |
2 files changed, 7 insertions, 8 deletions
diff --git a/www-plugins/lightspark/ChangeLog b/www-plugins/lightspark/ChangeLog index 2a04e495d327..d1beb27e9365 100644 --- a/www-plugins/lightspark/ChangeLog +++ b/www-plugins/lightspark/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-plugins/lightspark # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/ChangeLog,v 1.33 2011/07/27 15:36:37 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/ChangeLog,v 1.34 2011/07/30 21:08:42 chithanh Exp $ + + 30 Jul 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + lightspark-0.5.0.ebuild: + Drop non-functional openal support, bug #377005. *lightspark-0.5.0 (27 Jul 2011) diff --git a/www-plugins/lightspark/lightspark-0.5.0.ebuild b/www-plugins/lightspark/lightspark-0.5.0.ebuild index 07cfff473938..06ecad7edf50 100644 --- a/www-plugins/lightspark/lightspark-0.5.0.ebuild +++ b/www-plugins/lightspark/lightspark-0.5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/lightspark-0.5.0.ebuild,v 1.1 2011/07/27 15:36:36 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/lightspark-0.5.0.ebuild,v 1.2 2011/07/30 21:08:42 chithanh Exp $ EAPI=4 inherit cmake-utils nsplugins multilib versionator @@ -12,7 +12,7 @@ SRC_URI="http://launchpad.net/${PN}/trunk/${PN}-$(get_version_component_range 1- LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="nsplugin openal profile pulseaudio rtmp sdl" +IUSE="nsplugin profile pulseaudio rtmp sdl" RDEPEND=">=dev-cpp/libxmlpp-2.33.1:2.6 >=dev-libs/boost-1.42 @@ -23,9 +23,6 @@ RDEPEND=">=dev-cpp/libxmlpp-2.33.1:2.6 media-libs/ftgl >=media-libs/glew-1.5.3 media-libs/libsdl - openal? ( - media-libs/openal - ) pulseaudio? ( media-sound/pulseaudio ) @@ -46,13 +43,11 @@ RDEPEND=">=dev-cpp/libxmlpp-2.33.1:2.6 DEPEND="${RDEPEND} dev-lang/nasm dev-util/pkgconfig" -REQUIRED_USE="openal? ( pulseaudio )" S=${WORKDIR}/${P/_rc*/} src_configure() { local audiobackends - use openal && audiobackends+="openal" use pulseaudio && audiobackends+="pulse" use sdl && audiobackends+="sdl" |