blob: e55c0c86e8451102fafe76b80ffb2d47617ff0eb (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/galaxyhack/galaxyhack-1.74.ebuild,v 1.3 2009/02/11 21:35:08 tupone Exp $
EAPI=2
inherit eutils games
DESCRIPTION="Multiplayer AI script based strategy game."
HOMEPAGE="http://galaxyhack.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
mirror://gentoo/${PN}.png"
LICENSE="GPL-2 galaxyhack"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer
>=dev-libs/boost-1.34"
S=${WORKDIR}/${PN}/src
src_prepare() {
edos2unix Makefile
epatch \
"${FILESDIR}"/${P}-destdirs.patch \
"${FILESDIR}"/${P}-boost.patch \
"${FILESDIR}"/${P}-gcc43.patch \
"${FILESDIR}"/${P}-gentoo.patch
sed -i "s:@GAMES_DATADIR@:${GAMES_DATADIR}:" \
Main.cpp \
|| die "sed Main.cpp failed"
sed -i "/Base data path/s:pwd:${GAMES_DATADIR}/${PN}:" \
../settings.dat \
|| die "sed settings.dat failed"
}
src_install() {
dogamesbin "${PN}" || die "dogamesbin failed"
cd ..
insinto "${GAMES_DATADIR}"/${PN}
doins -r fleets gamedata graphics music standardpictures \
settings.dat || die "doins failed"
dodoc readme.txt
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} GalaxyHack
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "Settings will default to those found in"
elog "${GAMES_DATADIR}/galaxyhack/settings.dat"
elog "Per user settings can be specified by creating"
elog "~/.galaxyhack/settings.dat"
elog "Additional user submitted fleets can be downloaded from"
elog "http://galaxyhack.sourceforge.net/viewfleets.php"
}
|