blob: 2cb149bac60dff7650035842f06fbc595f9394bd (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/hlstats/hlstats-1.32.ebuild,v 1.2 2005/08/18 02:23:40 vapier Exp $
inherit games webapp
DESCRIPTION="real-time player rankings/statistics for half-life"
HOMEPAGE="http://www.hlstats.org/"
SRC_URI="mirror://sourceforge/hlstats/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="dev-lang/perl
dev-db/mysql
net-www/apache
virtual/php"
pkg_setup() {
webapp_pkg_setup
games_pkg_setup
}
src_install() {
webapp_src_preinst
dodoc ChangeLog
insinto ${GAMES_LIBDIR}/${PN}
doins *.{pm,plib}
insinto ${GAMES_DATADIR}/${PN}
doins *.sql
sed -i \
-e "s:\./hlstats\.conf:${GAMES_SYSCONFDIR}/hlstats.conf:" \
-e "/^\$opt_libdir =/s:=.*:=\"${GAMES_LIBDIR}/${PN}/\";:" \
*.pl || die "sed pl failed"
dogamesbin *.pl || die "dogamesbin failed"
dobin ${FILESDIR}/hlstats
dosed "s:GENTOO_DIR:${GAMES_BINDIR}:" /usr/bin/hlstats
newinitd ${FILESDIR}/hlstats.rc hlstats
insinto ${GAMES_SYSCONFDIR}
doins hlstats.conf
dodir ${MY_HTDOCSDIR}
cp -r hlstats.php hlstatsimg hlstatsinc ${D}/${MY_HTDOCSDIR}/
webapp_serverowned ${MY_HTDOCSDIR}
webapp_src_install
}
pkg_postinst() {
games_pkg_postinst
einfo "To setup:"
einfo " 1. \`mysqladmin create hlstats\`"
einfo " 2. \`mysql hlstats < ${GAMES_DATADIR}/${PN}/hlstats.sql\`"
einfo " 3. \`mysql hlstats < ${GAMES_DATADIR}/${PN}/gamesupport_GAME.sql\`"
einfo " so if you want cstrike support, replace 'GAME' with 'cstrike'"
einfo " 4. Edit ${GAMES_SYSCONFDIR}/hlstats.conf"
einfo " 5. Edit ${MY_HTDOCSDIR}/hlstats.php"
einfo " 6. \`rc-update add hlstats default\`"
einfo " 7. \`/etc/init.d/hlstats start\`"
einfo " 8. Edit the cfg files of the game servers you want to track ..."
einfo " add these lines to your config file:"
einfo " log on"
einfo " logaddress 1.2.3.4 27500"
einfo " (replace 1.2.3.4 with the IP of the server hlstats is running on)"
einfo " 9. If you want daily awards, setup a cronjob to run hlstats-awards.pl"
einfo " for example, run \`crontab -e\` and add this entry:"
einfo " 30 00 * * * ${GAMES_BINDIR}/hlstats-awards.pl"
einfo " 10. Finally ! Start up the server and after a while goto"
einfo " http://1.2.3.4/hlstats.php"
einfo " (replace 1.2.3.4 with the IP of the server hlstats is running on)"
echo
einfo "To Upgrade:"
einfo " 1. \`mysql hlstats < ${GAMES_DATADIR}/${PN}/upgrade_from_1.31.sql\`"
webapp_pkg_postinst
}
|