diff options
Diffstat (limited to 'games-server/halflife-server/halflife-server-3.1.1.1e.ebuild')
-rw-r--r-- | games-server/halflife-server/halflife-server-3.1.1.1e.ebuild | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/games-server/halflife-server/halflife-server-3.1.1.1e.ebuild b/games-server/halflife-server/halflife-server-3.1.1.1e.ebuild new file mode 100644 index 000000000000..714b186441cd --- /dev/null +++ b/games-server/halflife-server/halflife-server-3.1.1.1e.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-server/halflife-server/halflife-server-3.1.1.1e.ebuild,v 1.1 2004/04/18 08:36:45 vapier Exp $ + +inherit games eutils + +MY_PV=${PV//.} +MY_PN=hlds_l_3111_full +DESCRIPTION="Halflife Linux Server" +SRC_URI="${MY_PN}.bin + hlds_l_${MY_PV}_update.tar.gz" +HOMEPAGE="http://www.valve.com/ http://www.fileplanet.com/files/50000/58368.shtml" + +LICENSE="ValveServer" +SLOT="0" +KEYWORDS="-* ~x86" +RESTRICT="nostrip fetch" + +DEPEND="sys-apps/util-linux" +RDEPEND="dedicated? ( app-misc/screen )" + +S=${WORKDIR}/hlds_l + +pkg_nofetch() { + einfo "Please goto fileplanet and download ${MY_BIN}" + einfo "http://www.fileplanet.com/files/50000/58368.shtml" + einfo "And then download hlds_l_${MY_PV}_update.tar.gz" + einfo "http://www.3dgamers.com/dl/games/halflife/hlds_l_${MY_PV}_update.tar.gz" +} + +src_unpack() { + unpack_pdv ${MY_PN}.bin 4 + echo ">>> Unpacking ${MY_PN}.tar.gz to ${S}" + tar -zxf ${MY_PN}.tar.gz + unpack hlds_l_${MY_PV}_update.tar.gz + rm ${MY_PN}.tar.gz +} + +src_install() { + local dir=${GAMES_PREFIX_OPT}/halflife + dodir ${dir} + + mv ${S}/* ${D}/${dir}/ || die + dodir ${dir}/valve/logs + + dogamesbin ${FILESDIR}/hlds + dosed "s:GENTOO_DIR:${dir}:" ${GAMES_BINDIR}/hlds + + exeinto /etc/init.d ; newexe ${FILESDIR}/hlds.rc hlds + dosed "s:GENTOO_DIR:${GAMES_BINDIR}:" /etc/init.d/hlds + dosed "s:GENTOO_GAMES_USER:${GAMES_USER_DED}:" /etc/init.d/hlds + insinto /etc/conf.d ; newins ${FILESDIR}/hlds.conf.d hlds + dosed "s:GENTOO_DIR:${dir}:" /etc/conf.d/hlds + + local cdir=${GAMES_SYSCONFDIR}/halflife + dodir ${cdir} + # this allows users to upgrade w/out losing their previous settings + [ -e ${dir}/hltv.cfg ] && mv ${D}/${dir}/hltv.cfg{,.sample} + dosym {${dir},${cdir}}/hltv.cfg + for mod in tfc valve dmc ricochet ; do + dodir ${cdir}/${mod} + for cfg in server.cfg liblist.gam mapcycle.txt motd.txt ; do + [ -e ${dir}/${mod}/${cfg} ] && [ -e ${D}/${dir}/${mod}/${cfg} ] && \ + mv ${D}/${dir}/${mod}/${cfg}{,.sample} + dosym {${dir},${cdir}}/${mod}/${cfg} + done + done + + prepgamesdirs +} + +pkg_postinst() { + local dir=${GAMES_PREFIX_OPT}/halflife + touch ${dir}/hltv.cfg + touch ${dir}/{dmc,ricochet,tfc,valve}/{server.cfg,liblist.gam,mapcycle.txt,motd.txt} + + games_pkg_postinst + + einfo "To start the dedicated server, just run" + einfo "/etc/init.d/hlds start" + echo + einfo "The server utilizes screen so you can get to" + einfo "the console by typing:" + einfo " screen -r hlds" + echo + einfo "To configure your server, just edit the file:" + einfo "${GAMES_PREFIX_OPT}/halflife/valve/server.cfg" +} |