blob: 17396a7df57769f0eee3af76c9c00b0ba54affa7 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-sports/trophy/trophy-1.1.3.ebuild,v 1.9 2007/09/30 21:49:15 mr_bones_ Exp $
inherit autotools eutils flag-o-matic toolchain-funcs games
MY_P="${P}-src"
DESCRIPTION="2D Racing Game"
HOMEPAGE="http://trophy.sourceforge.net/"
SRC_URI="mirror://sourceforge/trophy/${MY_P}.tar.gz
mirror://debian/pool/main/t/trophy/${PN}_${PV}-2.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="=dev-games/clanlib-0.6.5*
>=media-libs/hermes-1.3.2"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}/${PN}_${PV}-2.diff"
find -name ".cvsignore" -exec rm -f \{\} \;
cd trophy
sed -i \
-e '/^EXTERN_LIBS/s:= := ${LDFLAGS} :' \
-e 's:-O3::' \
Makefile.in \
|| die "sed failed"
eautoreconf
}
src_compile() {
cd trophy
tc-export CXX
append-flags $(clanlib0.6-config --cflags)
append-ldflags $(clanlib0.6-config --libs)
egamesconf || die
emake || die "emake failed"
}
src_install() {
dodoc AUTHORS README TODO ChangeLog
doman debian/trophy.6
doicon debian/trophy.xpm
make_desktop_entry trophy Trophy trophy.xpm
cd trophy
dogamesbin trophy || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r resources resources.scr || die "doins failed"
prepgamesdirs
}
|