diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-12-31 12:38:40 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-12-31 12:38:40 +0000 |
commit | 4edfef5f268766a940f9541116e778e66a31992c (patch) | |
tree | f82367f7a2693136b2efb6264d0f1d7b395dcc0f /games-fps/warsow | |
parent | properly disable alstream if non native abi; reported by Michael Mair-Keimbe... (diff) | |
download | gentoo-2-4edfef5f268766a940f9541116e778e66a31992c.tar.gz gentoo-2-4edfef5f268766a940f9541116e778e66a31992c.tar.bz2 gentoo-2-4edfef5f268766a940f9541116e778e66a31992c.zip |
remove angelscript useflag since disabling it breaks runtime
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-fps/warsow')
-rw-r--r-- | games-fps/warsow/ChangeLog | 5 | ||||
-rw-r--r-- | games-fps/warsow/warsow-1.03.ebuild | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/games-fps/warsow/ChangeLog b/games-fps/warsow/ChangeLog index ba0aa5e41f39..9a103bdc2e98 100644 --- a/games-fps/warsow/ChangeLog +++ b/games-fps/warsow/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-fps/warsow # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/warsow/ChangeLog,v 1.55 2013/11/09 12:44:30 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/warsow/ChangeLog,v 1.56 2013/12/31 12:38:40 hasufell Exp $ + + 31 Dec 2013; Julian Ospald <hasufell@gentoo.org> warsow-1.03.ebuild: + remove angelscript useflag since disabling it breaks runtime *warsow-1.03 (09 Nov 2013) diff --git a/games-fps/warsow/warsow-1.03.ebuild b/games-fps/warsow/warsow-1.03.ebuild index 471d0799c62b..e83ea19403ca 100644 --- a/games-fps/warsow/warsow-1.03.ebuild +++ b/games-fps/warsow/warsow-1.03.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/warsow/warsow-1.03.ebuild,v 1.1 2013/11/09 12:44:30 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/warsow/warsow-1.03.ebuild,v 1.2 2013/12/31 12:38:40 hasufell Exp $ EAPI=5 inherit eutils check-reqs gnome2-utils flag-o-matic games @@ -23,7 +23,7 @@ SRC_URI="http://funpark.warsow-esport.net/~warsow/${BASE_DATA_PV}/${BASE_DATA_P} LICENSE="GPL-2 ZLIB warsow" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+angelscript debug dedicated irc openal server" +IUSE="debug dedicated irc openal server" RDEPEND=">=dev-libs/libRocket-1.2.1_p20130110 media-libs/freetype @@ -100,8 +100,7 @@ src_prepare() { src_compile() { yesno() { use ${1} && echo YES || echo NO ; } - use angelscript && - emake -C ../libsrcs/angelscript/angelSVN/sdk/angelscript/projects/gnuc + emake -C ../libsrcs/angelscript/angelSVN/sdk/angelscript/projects/gnuc local arch if use amd64 ; then @@ -138,7 +137,7 @@ src_compile() { SYSTEM_LIBS=YES \ BASE_ARCH=${arch} \ BINDIR=lib \ - BUILD_ANGELWRAP=$(yesno angelscript) \ + BUILD_ANGELWRAP=YES \ DEBUG_BUILD=$(yesno debug) \ ${myconf[@]} } |