Gentoo Archives: gentoo-commits

From: Michael Sterrett <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/asc/
Date: Fri, 18 Dec 2015 00:47:31
Message-Id: 1450399147.cea19e9e49e2d20f96bc0a0acc9a3ced6b9e97d2.mr_bones_@gentoo
1 commit: cea19e9e49e2d20f96bc0a0acc9a3ced6b9e97d2
2 Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 17 18:47:59 2015 +0000
4 Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 18 00:39:07 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea19e9e
7
8 clean old
9
10 Package-Manager: portage-2.2.24
11
12 games-strategy/asc/asc-2.6.0.0.ebuild | 72 -----------------------------------
13 1 file changed, 72 deletions(-)
14
15 diff --git a/games-strategy/asc/asc-2.6.0.0.ebuild b/games-strategy/asc/asc-2.6.0.0.ebuild
16 deleted file mode 100644
17 index b00320b..0000000
18 --- a/games-strategy/asc/asc-2.6.0.0.ebuild
19 +++ /dev/null
20 @@ -1,72 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -WX_GTK_VER=2.8
27 -inherit eutils toolchain-funcs flag-o-matic wxwidgets games
28 -
29 -DESCRIPTION="turn based strategy game designed in the tradition of the Battle Isle series"
30 -HOMEPAGE="http://www.asc-hq.org/"
31 -SRC_URI="mirror://sourceforge/asc-hq/${P}.tar.bz2
32 - http://www.asc-hq.org/music/frontiers.ogg
33 - http://www.asc-hq.org/music/time_to_strike.ogg
34 - http://www.asc-hq.org/music/machine_wars.ogg"
35 -
36 -LICENSE="GPL-2+"
37 -SLOT="0"
38 -KEYWORDS="amd64 x86"
39 -IUSE=""
40 -
41 -RDEPEND="app-arch/bzip2
42 - media-libs/libsdl[video]
43 - media-libs/libpng
44 - media-libs/sdl-image[gif,jpeg,png]
45 - media-libs/sdl-mixer[vorbis]
46 - media-libs/sdl-sound
47 - dev-libs/boost
48 - dev-games/physfs
49 - media-libs/xvid
50 - dev-libs/expat
51 - media-libs/freetype
52 - dev-lang/lua:0
53 - x11-libs/wxGTK:2.8[X]
54 - dev-libs/libsigc++:1.2"
55 -
56 -DEPEND="${RDEPEND}
57 - dev-lang/perl
58 - virtual/pkgconfig
59 - app-arch/zip"
60 -
61 -src_unpack() {
62 - local f
63 -
64 - unpack ${P}.tar.bz2
65 - for f in ${A}
66 - do
67 - case ${f} in
68 - *ogg)
69 - cp "${DISTDIR}/${f}" "${S}/data/music" || die
70 - ;;
71 - esac
72 - done
73 -}
74 -
75 -src_configure() {
76 - # Added --disable-paraguitest for bugs 26402 and 4488
77 - # Added --disable-paragui for bug 61154 since it's not really used much
78 - # and the case is well documented at http://www.asc-hq.org/
79 - if [[ $(gcc-major-version) -eq 4 ]] ; then
80 - replace-flags -O3 -O2
81 - fi
82 - egamesconf \
83 - --disable-paraguitest \
84 - --disable-paragui \
85 - --datadir="${GAMES_DATADIR_BASE}"
86 -}
87 -
88 -src_install() {
89 - default
90 - dohtml -r doc/*
91 - prepgamesdirs
92 -}