blob: ce4431798b2d93d23fb901023a77a0dab68fed19 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/tetrix/tetrix-1.13.16.1.40c-r2.ebuild,v 1.7 2004/06/24 23:21:29 agriffis Exp $
inherit eutils gcc games
MY_SV=${PV#*.*.*.}
MY_PV=${PV%.${MY_SV}}
MY_P="tetrinetx-${MY_PV}+qirc-${MY_SV}"
DESCRIPTION="A GNU TetriNET server"
HOMEPAGE="http://tetrinetx.sourceforge.net/"
SRC_URI="mirror://sourceforge/tetrinetx/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="net-libs/adns"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-droproot.patch
epatch ${FILESDIR}/${PV}-paths.patch
sed -i \
-e "s:GENTOO_CONFDIR:${GAMES_SYSCONFDIR}/${PN}:" \
-e "s:GENTOO_STATEDIR:${GAMES_STATEDIR}/${PN}:" \
-e "s:GENTOO_LOGDIR:${GAMES_LOGDIR}:" \
src/config.h bin/game.conf
}
src_compile() {
cd src
$(gcc-getCC) ${CFLAGS} main.c -o tetrix -ladns || die "compile failed"
}
src_install() {
dodoc AUTHORS ChangeLog README README.qirc.spectators
dogamesbin src/tetrix
insinto ${GAMES_SYSCONFDIR}/${PN}
doins bin/*
exeinto /etc/init.d
newexe ${FILESDIR}/tetrix.rc tetrix
keepdir ${GAMES_STATEDIR}/${PN}
dodir ${GAMES_LOGDIR}
touch ${D}/${GAMES_LOGDIR}/${PN}.log
prepgamesdirs
fowners ${GAMES_USER_DED}:${GAMES_GROUP} ${GAMES_STATEDIR}/${PN}
fowners ${GAMES_USER_DED}:${GAMES_GROUP} ${GAMES_LOGDIR}/${PN}.log
}
|