blob: 1466c52f896d14f4a8dbb45456260e6026e317d3 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop edos2unix toolchain-funcs readme.gentoo-r1
DESCRIPTION="Multiplayer AI script based strategy game"
HOMEPAGE="http://galaxyhack.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
mirror://gentoo/${PN}.png"
S="${WORKDIR}/${PN}/src"
LICENSE="GPL-2 galaxyhack"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
>=dev-libs/boost-1.34:=
media-libs/libsdl[video]
media-libs/sdl-image[png]
media-libs/sdl-mixer[mod,vorbis]
"
RDEPEND="${DEPEND}"
DISABLE_AUTOFORMATTING="yes"
DOC_CONTENTS="
Settings will default to those found in
/usr/share/galaxyhack/settings.dat
Per user settings can be specified by creating
~/.galaxyhack/settings.dat
Additional user submitted fleets can be downloaded from
http://galaxyhack.sourceforge.net/viewfleets.php
"
PATCHES=(
"${FILESDIR}"/${P}-destdirs.patch
"${FILESDIR}"/${P}-boost.patch
"${FILESDIR}"/${P}-gcc43.patch
"${FILESDIR}"/${P}-boost-1.50.patch
"${FILESDIR}"/${P}-format.patch
"${FILESDIR}"/${P}-gentoo.patch
)
src_prepare() {
edos2unix *.cpp Makefile
default
sed -i "s:@GAMES_DATADIR@:/usr/share:" \
Main.cpp || die
sed -i "/Base data path/s:pwd:/usr/share/${PN}:" \
../settings.dat || die
sed -i \
-e 's:INSTALL_DIR="${GAMES_DATADIR}":INSTALL_DIR="/usr/share/":' \
-e 's:INSTALL_BIN_DIR="${GAMES_BINDIR}":INSTALL_BIN_DIR="/usr/bin":' \
Makefile || die
}
src_configure() {
tc-export CXX
}
src_install() {
dobin ${PN}
cd .. || die
insinto /usr/share/${PN}
doins -r fleets gamedata graphics music standardpictures \
settings.dat
dodoc readme.txt
readme.gentoo_create_doc
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} GalaxyHack
}
pkg_postinst() {
readme.gentoo_print_elog
}
|