diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-07-08 17:52:46 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-07-08 17:52:46 +0000 |
commit | 8bd4a6036d942cc11176e2c53e98366baaa13e57 (patch) | |
tree | 78e00325723961d5a0e7b699d4eba4d05671ada2 /games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild | |
parent | added 64bit fix. see bug #52634 for more information (Manifest recommit) (diff) | |
download | gentoo-2-8bd4a6036d942cc11176e2c53e98366baaa13e57.tar.gz gentoo-2-8bd4a6036d942cc11176e2c53e98366baaa13e57.tar.bz2 gentoo-2-8bd4a6036d942cc11176e2c53e98366baaa13e57.zip |
Updated to close bug #54726.
Diffstat (limited to 'games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild')
-rw-r--r-- | games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild b/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild new file mode 100644 index 000000000000..9650e4760d46 --- /dev/null +++ b/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-server/ut2003-ded/ut2003-ded-2225-r2.ebuild,v 1.1 2004/07/08 17:52:46 wolf31o2 Exp $ + +inherit games + +DESCRIPTION="Unreal Tournament 2003 Linux Dedicated Server" +HOMEPAGE="http://www.ut2003.com/" +SRC_URI="http://games.gci.net/pub/UT2003/ut2003-lnxded-${PV}.tar.bz2 + ftp://3dgamers.in-span.net/pub/3dgamers3/games/unrealtourn2/ut2003-lnxded-${PV}.tar.bz2 + http://download.factoryunreal.com/mirror/UT2003CrashFix.zip" + +LICENSE="ut2003" +SLOT="0" +KEYWORDS="x86" +RESTRICT="nostrip nomirror" +IUSE="" + +DEPEND="app-arch/unzip" + +S=${WORKDIR} + +dir=${GAMES_PREFIX_OPT}/${PN} +Ddir=${D}/${dir} + +src_unpack() { + unpack ut2003-lnxded-${PV}.tar.bz2 \ + || die "unpacking dedicated server files." + unzip ${DISTDIR}/UT2003CrashFix.zip \ + || die "unpacking crash-fix" +} + +src_install() { + einfo "This will take a while ... go get a pizza or something" + + dodir ${dir} + mv ${S}/ut2003_dedicated/* ${Ddir} + + # Here we apply DrSiN's crash patch + cp ${S}/CrashFix/System/crashfix.u ${Ddir}/System + + ed ${Ddir}/System/Default.ini >/dev/null 2>&1 <<EOT +$ +?Engine.GameInfo? +a +AccessControlClass=crashfix.iaccesscontrolini +. +w +q +EOT + + # Here we apply fix for bug #54726 + dosed "s:UplinkToGamespy=True:UplinkToGamespy=False:" \ + ${dir}/System/Default.ini + + prepgamesdirs +} + +pkg_postinst() { + ewarn "NOTE: To have your server authenticate properly, you" + ewarn " MUST visit the following site and request a key." + ewarn "http://ut2003master.epicgames.com/ut2003server/cdkey.php" + echo + ewarn "If you are not installing for the first time and you plan on running" + ewarn "a server, you will probably need to edit your" + ewarn "~/.ut2003/System/UT2003.ini file and add a line that says" + ewarn "AccessControlClass=crashfix.iaccesscontrolini to your" + ewarn "[Engine.GameInfo] section to close a security issue." + echo + + games_pkg_postinst +} |