blob: 176e27a163985e0ead94224d714142e98951e1b0 (
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
|
# Copyright 1999-2004 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.4 2004/06/24 23:20:25 agriffis Exp $
inherit games eutils
DESCRIPTION="client for Valve Software's Steam content delivery program"
HOMEPAGE="http://www.steampowered.com/"
SRC_URI="hldsupdatetool.bin hldsupdatetool_readme.txt"
LICENSE="ValveServer"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RESTRICT="fetch"
S=${WORKDIR}
pkg_nofetch() {
einfo "Please download ${A} from the following ftp server:"
einfo "server: ftp.valvesoftware.com"
einfo "user: hlserver"
einfo "password: hlserver"
einfo "directory: Linux/steam"
}
src_unpack() {
unpack_pdv hldsupdatetool.bin 4
chmod a+x steam
cp ${DISTDIR}/hldsupdatetool_readme.txt .
}
src_install() {
exeinto ${GAMES_PREFIX_OPT}/halflife
doexe steam
dogamesbin ${FILESDIR}/steam
dosed "s:GENTOO_DIR:${GAMES_PREFIX_OPT}/halflife:" ${GAMES_BINDIR}/steam
dodoc hldsupdatetool_readme.txt
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
einfo 'Steam Usage ! (note: please do this as root)'
einfo '1. Run `steam` to update itself.'
einfo '2. Run `steam` again to get help menu.'
einfo '3. Create an account:'
einfo ' steam -create linux1@here.com comPlexPass "Your hint" "answer"'
einfo '4. Update the halflife modules you want:'
einfo " steam -update cstrike ${GAMES_PREFIX_OPT}/halflife linux1@here.com comPlexPass"
einfo " steam -update tfc ${GAMES_PREFIX_OPT}/halflife linux1@here.com comPlexPass"
einfo " steam -update valve ${GAMES_PREFIX_OPT}/halflife linux1@here.com comPlexPass"
einfo ' *Note: tfc contains tfc, dmc, and ricochet mods'
einfo '5. After your first update, you only have to run:'
einfo ' steam -update cstrike'
einfo ' steam -update tfc'
einfo ' steam -update valve'
echo
einfo "For more info, see /usr/share/doc/${PF}/Steam_README.txt.gz"
}
|