blob: 3011645a2d0a41bc1835337150cf2404549c3d14 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop wrapper
PATCH_P="${PN}-lnxpatch${PV%.*}-2.tar.bz2"
DESCRIPTION="Editor's Choice Edition plus Mega Pack for the well-known first-person shooter"
HOMEPAGE="https://liandri.beyondunreal.com/Unreal_Tournament_2004"
SRC_URI="
http://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"
RDEPEND="
!games-server/ut2004-ded
games-fps/ut2004-bonuspack-ece
games-fps/ut2004-bonuspack-mega
>=games-fps/ut2004-data-3186-r5
media-libs/libsdl
media-libs/openal
sys-libs/glibc
sys-libs/libstdc++-v3:5
virtual/opengl
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libXext
"
BDEPEND="app-arch/p7zip"
S="${WORKDIR}/${PN^^}-Patch"
DIR="/opt/${PN}"
# The executable pages are required. Bug #114733.
QA_PREBUILT="*"
src_prepare() {
default
if use amd64; then
mv System/${PN}-bin{-linux-amd64,} || die
mv ../${PN}-ucc-bin-09192008/ucc-bin-linux-amd64 System/ucc-bin || die
else
rm System/${PN}-bin-linux-amd64 || die
mv ../${PN}-ucc-bin-09192008/ucc-bin System/ucc-bin || die
fi
# In ut2004-bonuspack-mega.
rm System/{Manifest.in[it],Packages.md5} || die
}
src_install() {
insinto "${DIR}"
doins -r .
fperms +x "${DIR}"/System/{ucc,${PN}}-bin
dosym ../../../usr/$(get_libdir)/libopenal.so "${DIR}"/System/openal.so
dosym ../../../usr/$(get_libdir)/libSDL-1.2.so.0 "${DIR}"/System/libSDL-1.2.so.0
make_wrapper ${PN} ./${PN}-bin "${DIR}"/System "${DIR}"
make_wrapper ${PN}-ded "./ucc-bin server" "${DIR}"/System
make_desktop_entry ${PN} "Unreal Tournament 2004"
newconfd "${FILESDIR}"/${PN}-ded.confd ${PN}-ded
newinitd "${FILESDIR}"/${PN}-ded.initd ${PN}-ded
}
pkg_postinst() {
# Here is where we check for the existence of a cdkey.
# If we don't find one, we ask the user for it.
if [[ -f "${EROOT}${DIR}"/System/cdkey ]] ; then
einfo "A cdkey file is already present in ${EPREFIX}${DIR}/System"
else
ewarn "You MUST run this before playing the game:"
ewarn "emerge --config =${CATEGORY}/${PF}"
ewarn "That way you can [re]enter your cdkey."
fi
elog "Starting with 3369, the game supports render-to-texture. To enable"
elog "it, you will need the Nvidia drivers of at least version 7676 and"
elog "you should edit the following:"
elog 'Set "UseRenderTargets=True" in the "[OpenGLDrv.OpenGLRenderDevice]"'
elog 'section of your UT2004.ini or Default.ini and set "bPlayerShadows=True"'
elog 'and "bBlobShadow=False" in the "[UnrealGame.UnrealPawn]" section of'
elog 'your User.ini or DefUser.ini.'
}
pkg_postrm() {
ewarn "This package leaves a cdkey file in ${EROOT}${DIR}/System that you need"
ewarn "to remove to completely get rid of this game's files."
}
pkg_config() {
ewarn "Your CD key is NOT checked for validity here so"
ewarn "make sure you type it in correctly."
ewarn "If you CTRL+C out of this, the game will not run!"
ewarn
einfo "CD key format is: XXXXX-XXXXX-XXXXX-XXXXX"
while true ; do
einfo "Please enter your CD key:"
read CDKEY1
einfo "Please re-enter your CD key:"
read CDKEY2
if [[ -z ${CDKEY1} ]] || [[ -z ${CDKEY2} ]] ; then
echo "You entered a blank CD key. Try again."
else
if [[ ${CDKEY1} == ${CDKEY2} ]] ; then
echo "${CDKEY1^^}" > "${EROOT}${DIR}"/System/cdkey || die
einfo "Thank you!"
break
else
eerror "Your CD key entries do not match. Try again."
fi
fi
done
}
|