blob: 6f17949ef8385493caca58040e04826442be8faf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
WX_GTK_VER=3.0
inherit autotools toolchain-funcs flag-o-matic wxwidgets
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
dev-games/physfs
dev-lang/lua:0
dev-libs/boost
dev-libs/expat
dev-libs/libsigc++:1.2
media-libs/libpng:0
media-libs/libsdl[video]
media-libs/sdl-image[gif,jpeg,png]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-sound
media-libs/freetype
media-libs/xvid
x11-libs/wxGTK:${WX_GTK_VER}[X]"
DEPEND="${RDEPEND}
app-arch/zip
dev-lang/perl
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}/"/${P}-gcc6-nothrow-in-dtors.patch
"${FILESDIR}/"/${P}-freetype_pkgconfig.patch #657998
)
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_prepare() {
default
# required for freetype_pkgconfig patch
eautoreconf
}
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
local myeconfargs=(
--disable-paraguitest
--disable-paragui
--datadir="/usr/share"
)
econf "${myeconfargs[@]}"
}
src_install() {
default
dodoc -r doc/*
}
|