diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2013-08-29 17:38:16 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2013-08-29 17:38:16 +0000 |
commit | f371aaca2aff2567b5a278a8929e8d73fbaad93e (patch) | |
tree | 67e8d8c5cfb8ee4a8c58de03f11527c4d69d40ae /games-strategy | |
parent | fixed one more erroneous 'linux_kernel' use, missed by last commit (diff) | |
download | gentoo-2-f371aaca2aff2567b5a278a8929e8d73fbaad93e.tar.gz gentoo-2-f371aaca2aff2567b5a278a8929e8d73fbaad93e.tar.bz2 gentoo-2-f371aaca2aff2567b5a278a8929e8d73fbaad93e.zip |
respect AR (bug #477608)
(Portage version: 2.1.12.2/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/warzone2100/ChangeLog | 5 | ||||
-rw-r--r-- | games-strategy/warzone2100/warzone2100-3.1.0.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/games-strategy/warzone2100/ChangeLog b/games-strategy/warzone2100/ChangeLog index 30594c42118b..85cf7d10655e 100644 --- a/games-strategy/warzone2100/ChangeLog +++ b/games-strategy/warzone2100/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-strategy/warzone2100 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.80 2013/07/27 22:23:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.81 2013/08/29 17:38:16 mr_bones_ Exp $ + + 29 Aug 2013; Michael Sterrett <mr_bones_@gentoo.org> warzone2100-3.1.0.ebuild: + respect AR (bug #477608) 27 Jul 2013; Agostino Sarubbo <ago@gentoo.org> warzone2100-3.1.0.ebuild: Stable for x86, wrt bug #477424 diff --git a/games-strategy/warzone2100/warzone2100-3.1.0.ebuild b/games-strategy/warzone2100/warzone2100-3.1.0.ebuild index 3a3bfdca2744..128d928cfb5f 100644 --- a/games-strategy/warzone2100/warzone2100-3.1.0.ebuild +++ b/games-strategy/warzone2100/warzone2100-3.1.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/warzone2100-3.1.0.ebuild,v 1.4 2013/07/27 22:23:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/warzone2100-3.1.0.ebuild,v 1.5 2013/08/29 17:38:16 mr_bones_ Exp $ EAPI=5 -inherit autotools eutils versionator gnome2-utils games +inherit autotools toolchain-funcs eutils versionator gnome2-utils games MY_PV=$(get_version_component_range -2) VIDEOS_PV=2.2 @@ -74,6 +74,10 @@ src_configure() { --with-backend=$(usex qt4 "qt" "sdl") } +src_compile() { + emake AR="$(tc-getAR)" +} + src_install() { default rm -f "${D}"/usr/share/doc/${PF}/COPYING* |