blob: d8cbd14619702399198537a3526c120be685adf1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/asc/asc-1.13.8.0.ebuild,v 1.1 2003/09/10 05:27:31 vapier Exp $
inherit 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/asc-source-${PV}.tar.gz
http://www.asc-hq.org/frontiers.mp3
http://www.asc-hq.org/time_to_strike.mp3
http://www.asc-hq.org/machine_wars.mp3"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND=">=media-libs/libsdl-1.1.3
media-libs/sdl-image
media-libs/sdl-mixer
>=media-libs/sdlmm-0.1.8
>=media-libs/paragui-1.0.1
sys-apps/bzip2"
src_unpack() {
unpack ${A}
cd ${S}/data/music && cp ${DISTDIR}/*mp3 . || die "cp music failed"
}
src_compile() {
# Added --disable-paraguitest for bugs 26402 and 4488
egamesconf \
--datadir=${GAMES_DATADIR_BASE} \
--disable-paraguitest \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog README TODO asc.lsm
dohtml -r doc/*
prepgamesdirs
}
|