blob: 9a5b43ac8d19e39723b26725b833e7cea0a2c212 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/halflife-steam/halflife-steam-2.0.ebuild,v 1.12 2007/03/12 17:56:25 genone Exp $
inherit eutils games
DESCRIPTION="client for Valve Software's Steam content delivery program"
HOMEPAGE="http://www.steampowered.com/"
SRC_URI="http://www.steampowered.com/download/hldsupdatetool.bin"
LICENSE="ValveServer"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RESTRICT="mirror"
S=${WORKDIR}
src_unpack() {
unpack_pdv hldsupdatetool.bin 4
chmod a+x steam
}
src_install() {
exeinto "${GAMES_PREFIX_OPT}"/halflife
doexe steam || die
newinitd "${FILESDIR}"/hlds.rc hlds
sed -i \
-e "s:@GAMES_USER@:${GAMES_USER_DED}:" \
-e "s:@GAMES_GROUP@:${GAMES_GROUP}:" \
"${D}"/etc/init.d/hlds || die "sed init.d"
newconfd "${FILESDIR}"/hlds.confd hlds
sed -i \
-e "s:@GAMESDIR@:${GAMES_PREFIX_OPT}/halflife:" \
"${D}"/etc/conf.d/hlds || die "sed conf.d"
games_make_wrapper steam ./steam "${GAMES_PREFIX_OPT}"/halflife "${GAMES_PREFIX_OPT}"/halflife
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog 'Steam Usage ! (note: please do this as root)'
elog '1. Run `steam` to update itself.'
elog '2. Run `steam` again to get help menu.'
elog '3. Update the halflife modules you want:'
elog " steam -command update -game 'Counter-Strike Source' -dir ${GAMES_PREFIX_OPT}/halflife"
elog " steam -command update -game cstrike -dir ${GAMES_PREFIX_OPT}/halflife"
elog " steam -command update -game tfc -dir ${GAMES_PREFIX_OPT}/halflife"
elog " steam -command update -game valve -dir ${GAMES_PREFIX_OPT}/halflife"
elog ' *Note: tfc contains tfc, dmc, and ricochet mods'
elog '5. After your first update, you only have to run:'
elog ' steam -update "Counter-Strike Source"'
elog ' steam -update cstrike'
elog ' steam -update tfc'
elog ' steam -update valve'
elog
elog "For more info, see ${GAMES_PREFIX_OPT}/halflife"
}
|