diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-12-17 13:47:59 -0500 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-12-17 19:39:07 -0500 |
commit | cea19e9e49e2d20f96bc0a0acc9a3ced6b9e97d2 (patch) | |
tree | 027cc9003e718a41532a5b770b51435f7e69fffb /games-strategy | |
parent | clean old (diff) | |
download | gentoo-cea19e9e49e2d20f96bc0a0acc9a3ced6b9e97d2.tar.gz gentoo-cea19e9e49e2d20f96bc0a0acc9a3ced6b9e97d2.tar.bz2 gentoo-cea19e9e49e2d20f96bc0a0acc9a3ced6b9e97d2.zip |
clean old
Package-Manager: portage-2.2.24
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/asc/asc-2.6.0.0.ebuild | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/games-strategy/asc/asc-2.6.0.0.ebuild b/games-strategy/asc/asc-2.6.0.0.ebuild deleted file mode 100644 index b00320b8b69c..000000000000 --- a/games-strategy/asc/asc-2.6.0.0.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -WX_GTK_VER=2.8 -inherit eutils toolchain-funcs flag-o-matic wxwidgets games - -DESCRIPTION="turn based strategy game designed in the tradition of the Battle Isle series" -HOMEPAGE="http://www.asc-hq.org/" -SRC_URI="mirror://sourceforge/asc-hq/${P}.tar.bz2 - http://www.asc-hq.org/music/frontiers.ogg - http://www.asc-hq.org/music/time_to_strike.ogg - http://www.asc-hq.org/music/machine_wars.ogg" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="app-arch/bzip2 - media-libs/libsdl[video] - media-libs/libpng - media-libs/sdl-image[gif,jpeg,png] - media-libs/sdl-mixer[vorbis] - media-libs/sdl-sound - dev-libs/boost - dev-games/physfs - media-libs/xvid - dev-libs/expat - media-libs/freetype - dev-lang/lua:0 - x11-libs/wxGTK:2.8[X] - dev-libs/libsigc++:1.2" - -DEPEND="${RDEPEND} - dev-lang/perl - virtual/pkgconfig - app-arch/zip" - -src_unpack() { - local f - - unpack ${P}.tar.bz2 - for f in ${A} - do - case ${f} in - *ogg) - cp "${DISTDIR}/${f}" "${S}/data/music" || die - ;; - esac - done -} - -src_configure() { - # Added --disable-paraguitest for bugs 26402 and 4488 - # Added --disable-paragui for bug 61154 since it's not really used much - # and the case is well documented at http://www.asc-hq.org/ - if [[ $(gcc-major-version) -eq 4 ]] ; then - replace-flags -O3 -O2 - fi - egamesconf \ - --disable-paraguitest \ - --disable-paragui \ - --datadir="${GAMES_DATADIR_BASE}" -} - -src_install() { - default - dohtml -r doc/* - prepgamesdirs -} |