summaryrefslogtreecommitdiff
path: root/games-arcade/gunocide2ex/gunocide2ex-1.0-r2.ebuild
blob: 920de2e8b41e181d3a11e2089db0bc2a2b4f41c0 (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
84
85
86
87
88
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit desktop edos2unix toolchain-funcs unpacker

DESCRIPTION="Fast-paced 2D shoot'em'up"
HOMEPAGE="http://g2ex.sourceforge.net/"
SRC_URI="mirror://sourceforge/g2ex/g2ex-setup.run"
S="${WORKDIR}"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"

DEPEND="
	media-libs/libsdl[video]
	media-libs/sdl-ttf
	media-libs/sdl-mixer[vorbis]
"
RDEPEND="
	${DEPEND}
	acct-group/gamestat
"

PATCHES=(
	"${FILESDIR}"/${P}-build.patch
	"${FILESDIR}"/${P}-glibc2.10.patch
)

src_unpack() {
	unpack_makeself
	mkdir binary || die
}

src_prepare() {
	default

	edos2unix config.cfg

	sed -i \
		-e "s:/usr/local/games/gunocide2ex/config\.cfg:/etc/${PN}.cfg:" \
		-e "s:/usr/local/games/gunocide2ex/hscore\.dat:/var/games/gunocide2ex/${PN}-hscore.dat:" \
		-e "s:memleaks.log:/dev/null:" \
		src/*.{h,cpp} || die

	sed -i \
		-e "s:/usr/local/games:/usr/share:" \
		src/*.{h,cpp} $(find gfx -name '*.txt') || die
}

src_compile() {
	cd src || die

	tc-export CXX

	emake \
		CXXFLAGS="${CXXFLAGS} $(sdl-config --cflags)" \
		$(echo *.cpp | sed 's/\.cpp/.o/g')

	$(tc-getCXX) ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -o ${PN} *.o -lpthread -lSDL -lSDL_ttf -lSDL_mixer || die
}

src_install() {
	dobin src/${PN}
	dosym ${PN} /usr/bin/g2ex

	insinto /usr/share/${PN}
	doins -r gfx sfx lvl credits arial.ttf

	insinto /etc
	newins config.cfg ${PN}.cfg

	insinto /var/games/${PN}
	newins hscore.dat ${PN}-hscore.dat

	fperms 660 /var/games/${PN}/${PN}-hscore.dat
	fowners -R root:gamestat /var/games/${PN}
	fperms g+s /usr/bin/g2ex

	dodoc history doc/MANUAL_DE
	docinto html
	dodoc doc/manual_de.html

	newicon g2icon.xpm ${PN}.xpm
	make_desktop_entry ${PN} "Gunocide II EX"
}