diff options
author | 2009-12-13 21:28:12 +0000 | |
---|---|---|
committer | 2009-12-13 21:28:12 +0000 | |
commit | 68c80fb7764f0aef6251d250e44b17efc5e3c6af (patch) | |
tree | 81b1cf590fd36c6ccaa945dac5c7d70a7712d84a /games-arcade | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-68c80fb7764f0aef6251d250e44b17efc5e3c6af.tar.gz gentoo-2-68c80fb7764f0aef6251d250e44b17efc5e3c6af.tar.bz2 gentoo-2-68c80fb7764f0aef6251d250e44b17efc5e3c6af.zip |
Update live ebuild syntax to new cmake-utils one.
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/tuxanci/ChangeLog | 5 | ||||
-rw-r--r-- | games-arcade/tuxanci/tuxanci-9999.ebuild | 25 |
2 files changed, 18 insertions, 12 deletions
diff --git a/games-arcade/tuxanci/ChangeLog b/games-arcade/tuxanci/ChangeLog index 214b02db5efa..0000919ec5b6 100644 --- a/games-arcade/tuxanci/ChangeLog +++ b/games-arcade/tuxanci/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/tuxanci # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxanci/ChangeLog,v 1.6 2009/11/16 19:01:56 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxanci/ChangeLog,v 1.7 2009/12/13 21:28:12 scarabeus Exp $ + + 13 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> tuxanci-9999.ebuild: + Update live ebuild syntax to new cmake-utils one. *tuxanci-9999 (16 Nov 2009) diff --git a/games-arcade/tuxanci/tuxanci-9999.ebuild b/games-arcade/tuxanci/tuxanci-9999.ebuild index 52f6af19dea4..c559d087e54a 100644 --- a/games-arcade/tuxanci/tuxanci-9999.ebuild +++ b/games-arcade/tuxanci/tuxanci-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxanci/tuxanci-9999.ebuild,v 1.1 2009/11/16 19:01:56 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxanci/tuxanci-9999.ebuild,v 1.2 2009/12/13 21:28:12 scarabeus Exp $ EAPI="2" @@ -40,21 +40,24 @@ DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" src_configure() { - local mycmakeargs="$(cmake-utils_use_with sound AUDIO) + local mycmakeargs+=( + $(cmake-utils_use_with sound AUDIO) $(cmake-utils_use_build dedicated SERVER) $(cmake-utils_use_with nls) $(cmake-utils_use_with opengl) $(cmake-utils_use_enable ipv6) - $(cmake-utils_use_enable debug)" + $(cmake-utils_use_enable debug) + ) - mycmakeargs="${mycmakeargs} - -DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX} - -DCMAKE_INSTALL_ICONDIR=${GAMES_DATADIR_BASE}/pixmaps/ - -DCMAKE_INSTALL_DESKTOPDIR=${GAMES_DATADIR_BASE}/applications/ - -DCMAKE_DATA_PATH=${GAMES_DATADIR} - -DCMAKE_LOCALE_PATH=${GAMES_DATADIR_BASE}/locale/ - -DCMAKE_DOC_PATH=${GAMES_DATADIR_BASE}/doc/${PF} - -DCMAKE_CONF_PATH=${GAMES_SYSCONFDIR}" + mycmakeargs+=( + "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}" + "-DCMAKE_INSTALL_ICONDIR=${GAMES_DATADIR_BASE}/pixmaps/" + "-DCMAKE_INSTALL_DESKTOPDIR=${GAMES_DATADIR_BASE}/applications/" + "-DCMAKE_DATA_PATH=${GAMES_DATADIR}" + "-DCMAKE_LOCALE_PATH=${GAMES_DATADIR_BASE}/locale/" + "-DCMAKE_DOC_PATH=${GAMES_DATADIR_BASE}/doc/${PF}" + "-DCMAKE_CONF_PATH=${GAMES_SYSCONFDIR}" + ) cmake-utils_src_configure } |