blob: 1764d21350732b1afea4221a9e11341faacfa000 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-0.10.040218.ebuild,v 1.16 2005/11/28 18:21:11 mr_bones_ Exp $
inherit eutils flag-o-matic games
DESCRIPTION="UFO: Alien Invasion - X-COM inspired strategy game"
HOMEPAGE="http://www.ufoai.net/"
SRC_URI="http://n.ethz.ch/student/dbeyeler/download/ufoai_source_040218.zip
http://people.ee.ethz.ch/~baepeter/linux_ufoaidemo.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
RDEPEND="virtual/x11
media-libs/jpeg
media-libs/libvorbis
media-libs/libogg"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd source/linux
epatch "${FILESDIR}"/${PV}-Makefile.patch
}
src_compile() {
filter-flags -fstack-protector #51116
cd "${S}"/source/linux
emake build_release \
OPTCFLAGS="${CFLAGS}" \
|| die "emake failed"
}
src_install() {
dodir "${GAMES_DATADIR}/${PN}"
cp -rf "${S}"/ufo/* "${D}${GAMES_DATADIR}/${PN}" || die "cp failed"
if use x86 ; then
ARCH=i386
fi
exeinto "${GAMES_DATADIR}/${PN}"
doexe "${S}"/source/linux/release${ARCH}-glibc/{ref_gl.so,ref_glx.so,ufo} \
|| die "doexe ufo"
exeinto "${GAMES_DATADIR}/${PN}/base"
doexe "${S}"/source/linux/release${ARCH}-glibc/game${ARCH}.so \
|| die "doexe game${ARCH}.so"
games_make_wrapper ufo-ai ./ufo "${GAMES_DATADIR}/${PN}"
prepgamesdirs
}
|