diff options
author | James Le Cuirot <chewi@gentoo.org> | 2019-12-27 00:19:18 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2019-12-27 00:25:53 +0000 |
commit | 8901773bdbd36ccf9157642a98e5f39fd0245e54 (patch) | |
tree | d3df4baf5ef22103e084ee80dff95deeedbf7ddd /games-server/ut2004-ded/ut2004-ded-3369.3-r2.ebuild | |
parent | net-libs/libktorrent: Port to ecm.eclass and kde.org.eclass (diff) | |
download | gentoo-8901773bdbd36ccf9157642a98e5f39fd0245e54.tar.gz gentoo-8901773bdbd36ccf9157642a98e5f39fd0245e54.tar.bz2 gentoo-8901773bdbd36ccf9157642a98e5f39fd0245e54.zip |
Revert "games-server/ut2004-ded: drop vulnerable package"
This reverts commit 5e1e96c14effb4f076191f9d8023547cb7e15ff4.
This package was dropped because of CVE-2008-6441 and
CVE-2008-7011. However, UT2004 was reported to *not* be vulnerable to
the former and the latter was almost certainly fixed in 3369.3. I
cannot find any release notes but the published workaround related to
3369.2 and 3369.3 was built just three days after the vulnerability
was announced.
Bug: https://bugs.gentoo.org/285010
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-server/ut2004-ded/ut2004-ded-3369.3-r2.ebuild')
-rw-r--r-- | games-server/ut2004-ded/ut2004-ded-3369.3-r2.ebuild | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/games-server/ut2004-ded/ut2004-ded-3369.3-r2.ebuild b/games-server/ut2004-ded/ut2004-ded-3369.3-r2.ebuild new file mode 100644 index 000000000000..63f7dcb52408 --- /dev/null +++ b/games-server/ut2004-ded/ut2004-ded-3369.3-r2.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit check-reqs eutils + +BONUSPACK_P="dedicatedserver3339-bonuspack.zip" +PATCH_P="ut2004-lnxpatch${PV%.*}-2.tar.bz2" +DESCRIPTION="Unreal Tournament 2004 Linux Dedicated Server" +HOMEPAGE="https://liandri.beyondunreal.com/Unreal_Tournament_2004" +SRC_URI=" + https://ut2004.ut-files.com/Entire_Server_Download/${BONUSPACK_P} + https://ut2004.ut-files.com/Patches/Linux/${PATCH_P} + https://dev.gentoo.org/~chewi/distfiles/ut2004-v${PV/./-}-linux-dedicated.7z +" + +LICENSE="ut2003" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +RESTRICT="bindist mirror strip" + +BDEPEND=" + app-arch/p7zip + app-arch/unzip +" + +RDEPEND=" + !games-fps/ut2004 + !games-fps/ut2004-data + games-fps/ut2004-bonuspack-ece + games-fps/ut2004-bonuspack-mega + sys-libs/glibc +" + +CHECKREQS_DISK_BUILD="2G" +QA_PREBUILT="*" + +S="${WORKDIR}" +DIR="/opt/${PN%-ded}" + +src_prepare() { + default + + if use amd64; then + mv ut2004-ucc-bin-09192008/ucc-bin{-linux-amd64,} || die + fi + + cp -r UT2004-Patch/* ./ || die + mv ut2004-ucc-bin-09192008/ucc-bin System/ || die + rm -r System/{ut2004-bin*,*.dll,*.exe} UT2004-Patch/ ut2004-ucc-bin-09192008/ || die + + # In ut2004-bonuspack-ece. + rm \ + Animations/{MechaSkaarjAnims,MetalGuardAnim,NecrisAnim,ONSBPAnimations}.ukx \ + Help/BonusPackReadme.txt \ + Maps/ONS-{Adara,Aridoom,Ascendancy,IslandHop,Tricky,Urban}.ut2 \ + Sounds/{CicadaSnds,DistantBooms,ONSBPSounds}.uax \ + StaticMeshes/{BenMesh02,BenTropicalSM01,HourAdara,ONS-BPJW1,PC_UrbanStatic}.usx \ + System/{ONS-{Adara,IslandHop,Tricky,Urban},OnslaughtBP}.int \ + System/xaplayersl3.upl \ + Textures/{AW-2k4XP,BenTex02,BenTropical01,BonusParticles,CicadaTex,Construction_S,HourAdaraTexor,ONSBP{_DestroyedVehicles,Textures},PC_UrbanTex,UT2004ECEPlayerSkins}.utx \ + || die + + # In ut2004-bonuspack-mega. + rm System/{Manifest.in[it],Packages.md5} || die +} + +src_install() { + insinto "${DIR}" + doins -r * + fperms +x "${DIR}"/System/ucc-bin + + make_wrapper ${PN} "./ucc-bin server" "${DIR}"/System + newconfd "${FILESDIR}"/${PN}.confd ${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} +} + +pkg_postinst() { + elog "You should take the time to edit the default server INI. Consult the INI" + elog "Reference at https://unrealadmin.org/server_ini_reference/ut2004 for" + elog "assistance in adjusting ${DIR}/System/Default.ini." + elog + elog "To have your server authenticate properly to the central server, you" + elog "MUST visit https://www.unrealadmin.org/server_cdkey and request a key." + elog "This is not required if you want an unlisted private server with" + elog "[DoUplink=False]." +} |