diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-05-09 14:15:54 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-05-09 14:15:54 +0000 |
commit | 3271f9e310f93996c9019368604da7c97e971613 (patch) | |
tree | bc90562390cce4581cc9063d06e8be06317f13b4 /games-action | |
parent | restrict splitdebug (diff) | |
download | gentoo-2-3271f9e310f93996c9019368604da7c97e971613.tar.gz gentoo-2-3271f9e310f93996c9019368604da7c97e971613.tar.bz2 gentoo-2-3271f9e310f93996c9019368604da7c97e971613.zip |
convert system-libs useflag to bundled-libs
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/trine2/ChangeLog | 6 | ||||
-rw-r--r-- | games-action/trine2/metadata.xml | 2 | ||||
-rw-r--r-- | games-action/trine2/trine2-1.16.ebuild | 12 |
3 files changed, 12 insertions, 8 deletions
diff --git a/games-action/trine2/ChangeLog b/games-action/trine2/ChangeLog index 7aacf7f404a3..4d70a559db53 100644 --- a/games-action/trine2/ChangeLog +++ b/games-action/trine2/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/trine2 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/trine2/ChangeLog,v 1.4 2013/05/09 14:13:08 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/trine2/ChangeLog,v 1.5 2013/05/09 14:15:54 hasufell Exp $ + + 09 May 2013; Julian Ospald <hasufell@gentoo.org> metadata.xml, + trine2-1.16.ebuild: + convert system-libs useflag to bundled-libs 09 May 2013; Julian Ospald <hasufell@gentoo.org> trine2-1.16.ebuild: restrict splitdebug diff --git a/games-action/trine2/metadata.xml b/games-action/trine2/metadata.xml index aa527189e358..a621e7741f02 100644 --- a/games-action/trine2/metadata.xml +++ b/games-action/trine2/metadata.xml @@ -7,8 +7,8 @@ <name>Julian Ospald</name> </maintainer> <use> + <flag name='bundled-libs'>Use bundled libraries.</flag> <flag name='launcher'>Install gtk+ launcher</flag> - <flag name='system-libs'>Use system provided libraries.</flag> </use> </pkgmetadata> diff --git a/games-action/trine2/trine2-1.16.ebuild b/games-action/trine2/trine2-1.16.ebuild index ba8786c8d6cd..2a4370921b8f 100644 --- a/games-action/trine2/trine2-1.16.ebuild +++ b/games-action/trine2/trine2-1.16.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-action/trine2/trine2-1.16.ebuild,v 1.5 2013/05/09 14:13:08 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/trine2/trine2-1.16.ebuild,v 1.6 2013/05/09 14:15:54 hasufell Exp $ EAPI=5 inherit eutils unpacker gnome2-utils games @@ -13,13 +13,13 @@ SRC_URI="${PN}_linux_installer.run" LICENSE="all-rights-reserved" SLOT="0" KEYWORDS="-* ~amd64 ~x86" -IUSE="+launcher system-libs" +IUSE="bundled-libs +launcher" RESTRICT="fetch bindist splitdebug" QA_PREBUILT="${GAMES_PREFIX_OPT}/${PN}/${PN}* ${GAMES_PREFIX_OPT}/${PN}/lib/*" -# TODO: system-libs: no libsdl-1.3, no physx +# TODO: bundled-libs: no libsdl-1.3, no physx RDEPEND=" amd64? ( app-emulation/emul-linux-x86-baselibs @@ -28,7 +28,7 @@ RDEPEND=" app-emulation/emul-linux-x86-soundlibs app-emulation/emul-linux-x86-xlibs launcher? ( app-emulation/emul-linux-x86-gtklibs ) - system-libs? ( media-gfx/nvidia-cg-toolkit[multilib] ) + !bundled-libs? ( media-gfx/nvidia-cg-toolkit[multilib] ) ) x86? ( dev-libs/glib:2 @@ -48,7 +48,7 @@ RDEPEND=" x11-libs/libXinerama x11-libs/libXxf86vm ) - system-libs? ( media-gfx/nvidia-cg-toolkit ) + !bundled-libs? ( media-gfx/nvidia-cg-toolkit ) )" S=${WORKDIR} @@ -76,7 +76,7 @@ src_install() { newexe "bin/trine2_linux_32bit" ${PN} exeinto "${dir}/lib" - use system-libs && { find lib/lib32 -type f -name "libCg*.so*" -delete || die ;} + use bundled-libs || { find lib/lib32 -type f -name "libCg*.so*" -delete || die ;} doexe lib/lib32/* games_make_wrapper ${PN} "./${PN}" "${dir}" "${dir}/lib" |