Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-fps/urbanterror/
Date: Wed, 07 Feb 2018 19:20:01
Message-Id: 1518031170.9aaf63eca70fc87752ec662808be80fecb4889f1.mgorny@gentoo
1 commit: 9aaf63eca70fc87752ec662808be80fecb4889f1
2 Author: Nils Freydank <holgersson <AT> posteo <DOT> de>
3 AuthorDate: Tue Feb 6 14:24:04 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 19:19:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aaf63ec
7
8 games-fps/urbanterror: Bump to 4.3.2_p20180206.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 games-fps/urbanterror/Manifest | 1 +
13 .../urbanterror/urbanterror-4.3.2_p20180206.ebuild | 166 +++++++++++++++++++++
14 2 files changed, 167 insertions(+)
15
16 diff --git a/games-fps/urbanterror/Manifest b/games-fps/urbanterror/Manifest
17 index 216481232d9..29ec1dc5609 100644
18 --- a/games-fps/urbanterror/Manifest
19 +++ b/games-fps/urbanterror/Manifest
20 @@ -1,2 +1,3 @@
21 DIST urbanterror-4.3.2_p20171208.tar.gz 10072373 BLAKE2B 9934317fb649e652628639f9ea35cdaa0466363b52ea7325198aaaa6360e07e41ec590342cd35fa1bb352ff35ba5994e9152caaf308aa0e0d8c3c2d94ea36a91 SHA512 1dd3affa8fe23f8cca4ee3c90a8d6fc86f5df2122e0121d57263be745d0af13f52cb47802636a22cb09b1bae8a100b491dc8cc0c81c413dd9cbb2ad29a69039a
22 DIST urbanterror-4.3.2_p20180103.tar.gz 10071977 BLAKE2B c204b0f3eee19d4c426df60827a6e9651e93e71445cad73a5b0133e1ec794c752668df9c3412d7a9b1f1599f33923873afe6cb9b2472a14fea6adc52cb599bed SHA512 8bfba46580b16f89e6cea5ffbb1f81ad91ece63e1058928d84778e4ea2cee621d3fae7131801f5bb35e9267763e824521dfc0191f512d334d7f07a3b970be768
23 +DIST urbanterror-4.3.2_p20180206.tar.gz 10071986 BLAKE2B b809793f8bc1d878a97d882f60eef80124cff63ca5754f9178cdf9067acc2c6b52478362b8799c7b3718484d1a680ca932df8d97ebb34e35fc90eb2ae17582d6 SHA512 e4fcc53f9a7b8db1f5bc069acce5265db7009acc0588b29fff2a2b19b05d09f42cdb2c3f1811920221c75b6d3fc5f2e67fbb0f8476ee50644d8db9dd4f0b7c63
24
25 diff --git a/games-fps/urbanterror/urbanterror-4.3.2_p20180206.ebuild b/games-fps/urbanterror/urbanterror-4.3.2_p20180206.ebuild
26 new file mode 100644
27 index 00000000000..93dc5736a99
28 --- /dev/null
29 +++ b/games-fps/urbanterror/urbanterror-4.3.2_p20180206.ebuild
30 @@ -0,0 +1,166 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="6"
35 +inherit eapi7-ver flag-o-matic toolchain-funcs xdg-utils
36 +
37 +DESCRIPTION="Hollywood tactical shooter based on the ioquake3 engine"
38 +HOMEPAGE="http://urbanterror.info https://github.com/mickael9/ioq3"
39 +
40 +if [[ ${PV} == *9999 ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="https://github.com/mickael9/ioq3.git"
43 + EGIT_BRANCH="urt"
44 +else
45 + COMMIT_ID="11a2b7462574a913e8960014cfc504f37903a3d6"
46 + SRC_URI="https://github.com/mickael9/ioq3/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
47 + S="${WORKDIR}/ioq3-${COMMIT_ID}"
48 + KEYWORDS="~amd64 ~x86"
49 +fi
50 +
51 +LICENSE="GPL-2"
52 +SLOT="0"
53 +IUSE="+altgamma +client +curl debug mumble openal +opus server +skeetshootmod voip vorbis"
54 +REQUIRED_USE=" || ( client server )"
55 +
56 +PATCHES=( "${FILESDIR}"/${PN}-4.3-fix-build_system.patch )
57 +RDEPEND="
58 + client? (
59 + media-libs/libsdl2:=[X,sound,joystick,opengl,video]
60 + mumble? ( media-sound/mumble:= )
61 + openal? ( media-libs/openal:= )
62 + opus? ( media-libs/opusfile:= )
63 + vorbis? (
64 + media-libs/libogg:=
65 + media-libs/libvorbis:=
66 + )
67 + )
68 + curl? ( net-misc/curl )
69 + ~games-fps/urbanterror-data-4.3.2
70 + sys-libs/zlib:=[minizip]
71 + virtual/jpeg:0
72 +"
73 +
74 +DEPEND="${RDEPEND}"
75 +
76 +pkg_pretend() {
77 + if use client; then
78 + if ! use openal && ! use opus && ! use vorbis; then
79 + ewarn
80 + ewarn "No sound implementation selected. Enable 'openal', 'opus' or 'vorbis' USE flag to get sound!"
81 + fi
82 + fi
83 +}
84 +
85 +src_configure() {
86 + default
87 +
88 + tc-export CC
89 +}
90 +
91 +src_compile() {
92 + # Workaround for used zlib macro, which got renamed in Gentoo
93 + # wrt bug #449510
94 + append-cppflags "-DOF=_Z_OF"
95 +
96 + local my_arch=$(usex amd64 "x86_64" "i386")
97 +
98 + emake \
99 + ARCH=${my_arch} \
100 + DEFAULT_BASEDIR="/usr/share/urbanterror" \
101 + BUILD_CLIENT=$(usex "client" 1 0) \
102 + BUILD_SERVER=$(usex "server" 1 0) \
103 + BUILD_BASEGAME=1 \
104 + BUILD_MISSIONPACK=0 \
105 + BUILD_GAME_SO=0 \
106 + BUILD_GAME_QVM=0 \
107 + BUILD_STANDALONE=1 \
108 + SERVERBIN="Quake3-UrT-Ded" \
109 + CLIENTBIN="Quake3-UrT" \
110 + USE_RENDERER_DLOPEN=0 \
111 + USE_YACC=0 \
112 + BASEGAME="q3ut4"\
113 + BASEGAME_CFLAGS="${CFLAGS}" \
114 + USE_OPENAL=$(usex "openal" 1 0) \
115 + USE_OPENAL_DLOPEN=$(usex "openal" 1 0) \
116 + USE_CURL=$(usex "curl" 1 0) \
117 + USE_CURL_DLOPEN=$(usex "curl" 1 0) \
118 + USE_CODEC_VORBIS=$(usex "vorbis" 1 0) \
119 + USE_CODEC_OPUS=$(usex "opus" 1 0) \
120 + USE_MUMBLE=$(usex "mumble" 1 0) \
121 + USE_SKEETMOD=$(usex "skeetshootmod" 1 0) \
122 + USE_VOIP=$(usex "mumble" 1 0) \
123 + USE_INTERNAL_LIBS=0 \
124 + USE_LOCAL_HEADERS=0 \
125 + USE_ALTGAMMA=$(usex "altgamma" 1 0)
126 +}
127 +
128 +src_install() {
129 + local my_arch=$(usex amd64 "x86_64" "i386")
130 + # docs from ioq3, not from UrbanTerror ZIP file
131 + dodoc ChangeLog README.md README.ioq3.md md4-readme.txt
132 +
133 + if use client; then
134 + newbin build/$(usex debug "debug" "release")-linux-${my_arch}/Quake3-UrT.${my_arch} ${PN}
135 + # Shooter as defined in https://specifications.freedesktop.org/menu-spec/latest/apas02.html
136 + make_desktop_entry ${PN} "UrbanTerror" ${PN}
137 + fi
138 +
139 + if use server && ! use client; then
140 + # dedicated server only
141 + newbin build/$(usex debug "debug" "release")-linux-${my_arch}/Quake3-UrT-Ded.${my_arch} ${PN}-ded
142 + fi
143 +}
144 +
145 +pkg_postinst() {
146 + use client && xdg_desktop_database_update
147 +
148 + if [[ -z "${REPLACING_VERSIONS}" ]]; then
149 + # This is a new installation
150 + if use openal; then
151 + elog ""
152 + elog "You might need to set:"
153 + elog " seta s_useopenal \"1\""
154 + elog "in your ~/.q3a/q3ut4/q3config.cfg for openal to work."
155 + fi
156 +
157 + if use altgamma; then
158 + elog ""
159 + elog "You might need to set:"
160 + elog " seta r_altgamma \"1\""
161 + elog "in your ~/.q3a/q3ut4/q3config.cfg for altgamma to work."
162 + elog "Be aware that altgamme works on a global scale, so external"
163 + elog "applications like redshift can cause trouble. Disabling"
164 + elog "these while playing is a usable workaround."
165 + fi
166 +
167 + if ! use altgamma; then
168 + elog ""
169 + elog "If you are using a modesetting graphics driver you might"
170 + elog "consider setting USE=\"altgamma\"."
171 + elog "For details take a look at:"
172 + elog "https://bugs.freedesktop.org/show_bug.cgi?id=27222"
173 + fi
174 +
175 + if ! use client; then
176 + elog ""
177 + elog "You disabled client support. You won't be able to connect"
178 + elog "to any servers and play. If you want to do so, enable"
179 + elog "USE=\"client\"."
180 + fi
181 + fi
182 +
183 + if ver_test -ge 4.3.2_p20171105; then
184 + # Yippee, new features!
185 + if use skeetshootmod; then
186 + elog ""
187 + elog "You might need to set:"
188 + elog " seta sv_skeetshoot \"1\""
189 + elog "in your ~/.q3a/q3ut4/q3config.cfg to use the skeetshoot mod."
190 + fi
191 + fi
192 +}
193 +
194 +pkg_postrm() {
195 + use client && xdg_desktop_database_update
196 +}