diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:31 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:54:42 +0100 |
commit | fe9b9d0e1c2100aaebc9a3efb005b53e3c14c464 (patch) | |
tree | 89a675e7812dd30cada62684925735db187ce452 /games-strategy | |
parent | games-strategy/0ad-data: Remove old (diff) | |
download | gentoo-fe9b9d0e1c2100aaebc9a3efb005b53e3c14c464.tar.gz gentoo-fe9b9d0e1c2100aaebc9a3efb005b53e3c14c464.tar.bz2 gentoo-fe9b9d0e1c2100aaebc9a3efb005b53e3c14c464.zip |
games-strategy/asc: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/asc/asc-2.6.0.0-r1.ebuild | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/games-strategy/asc/asc-2.6.0.0-r1.ebuild b/games-strategy/asc/asc-2.6.0.0-r1.ebuild deleted file mode 100644 index 7287ddeffb63..000000000000 --- a/games-strategy/asc/asc-2.6.0.0-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -WX_GTK_VER=3.0 -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:0 - 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:${WX_GTK_VER}[X] - dev-libs/libsigc++:1.2" - -DEPEND="${RDEPEND} - dev-lang/perl - virtual/pkgconfig - app-arch/zip" - -PATCHES=( "${FILESDIR}/"/${P}-gcc6-nothrow-in-dtors.patch ) - -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() { - need-wxwidgets unicode - # 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 -} |