games-server/ut2003-ded: remova last rited package

Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
This commit is contained in:
Mikle Kolyada
2018-12-29 15:27:32 +03:00
parent 082dd610af
commit b53c88d523
3 changed files with 0 additions and 84 deletions

View File

@@ -1,2 +0,0 @@
DIST UT2003CrashFix.zip 2764 BLAKE2B 697c35a02f447d0d436fc32bebdeafbca55ef644d951e92085c33f7597108625770b76e027f31287cd2ac66607692ff8c908f6971f936a134d58d0effc2586fc SHA512 24fdaac873b08a0860c23f66b9bd93922fc4f64486adbe9bfefeb340f9d9374778b5e7bacd0e12cc79d819fb340e007ab2a7f1f45c9e4f27ab3ab6b11033d444
DIST ut2003-lnxded-2225.tar.bz2 304132056 BLAKE2B 3d3beb840eaa33b1bed4ca8b0c95c1a872b893275c404572f76a97764d09e4b8947f36b102559c1d344e6bbf4f013b9b202a47bc41083dd6c3f15da6759df62c SHA512 33ea560fe2583c2c82d0d1499e5ad16fcd70efdede27e088cb9e5a14cf6ce72f57fad8783e4b5a3fe2dbfc9277fc4d0094d6ad854a1a2150a9d04d967516fee4

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>games@gentoo.org</email>
<name>Gentoo Games Project</name>
</maintainer>
<longdescription>
Unreal Tounament 2003 is a first-person 3-D shooter and sequel to the 1999 Game of the Year, Unreal Tournament. The game was ported to Linux by Ryan "icculus" Gordon under contract from Epic Games and the Linux installer was released in the retail box. This is the dedicated server portion of the game and does not require the retail discs to use.
</longdescription>
</pkgmetadata>

View File

@@ -1,71 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit games
DESCRIPTION="Unreal Tournament 2003 Linux Dedicated Server"
HOMEPAGE="http://www.ut2003.com/"
SRC_URI="http://www.agaland.it/misc/ut2003/ut2003-lnxded-${PV}.tar.bz2
mirror://gentoo/UT2003CrashFix.zip"
LICENSE="ut2003"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT="mirror strip"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}
dir=${GAMES_PREFIX_OPT}/${PN}
Ddir=${D}/${dir}
QA_PREBUILT="${dir:1}/System/*"
src_unpack() {
unpack ut2003-lnxded-${PV}.tar.bz2
unzip "${DISTDIR}"/UT2003CrashFix.zip || die
}
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
sed -i \
-e "s:UplinkToGamespy=True:UplinkToGamespy=False:" \
"${D}${dir}"/System/Default.ini || die
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
ewarn "NOTE: To have your server authenticate properly, you"
ewarn " MUST visit the following site and request a key."
ewarn "http://ut2003.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."
}