2017-03-31 14:26:37 +02:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
2017-04-23 18:11:11 +02:00
|
|
|
inherit flag-o-matic git-r3 gnome2-utils
|
2017-03-31 14:26:37 +02:00
|
|
|
|
|
|
|
DESCRIPTION="Hollywood tactical shooter based on the ioquake3 engine"
|
|
|
|
HOMEPAGE="http://urbanterror.info"
|
|
|
|
EGIT_REPO_URI="https://github.com/holgersson32644/ioq3.git"
|
|
|
|
EGIT_BRANCH="urt"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS=""
|
2017-04-18 01:20:13 +02:00
|
|
|
IUSE="+altgamma +client +curl debug mumble openal +opus server +sdl voip vorbis"
|
|
|
|
REQUIRED_USE=" || ( client server )"
|
|
|
|
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-respect_CFLAGS.patch )
|
|
|
|
|
2017-03-31 14:26:37 +02:00
|
|
|
RDEPEND="
|
2017-04-18 01:20:13 +02:00
|
|
|
curl? ( net-misc/curl )
|
|
|
|
client? (
|
2017-03-31 14:26:37 +02:00
|
|
|
virtual/opengl
|
|
|
|
openal? ( media-libs/openal )
|
|
|
|
sdl? ( media-libs/libsdl[X,sound,joystick,opengl,video] )
|
|
|
|
!sdl? ( x11-libs/libX11
|
|
|
|
x11-libs/libXext
|
|
|
|
x11-libs/libXxf86dga
|
|
|
|
x11-libs/libXxf86vm )
|
|
|
|
vorbis? ( media-libs/libogg
|
|
|
|
media-libs/libvorbis )
|
|
|
|
opus? ( media-libs/opusfile )
|
|
|
|
mumble? ( media-sound/mumble )
|
|
|
|
)
|
2017-04-03 17:52:27 +02:00
|
|
|
~games-fps/urbanterror-data-4.3.2
|
|
|
|
sys-libs/zlib[minizip]"
|
2017-04-18 01:20:13 +02:00
|
|
|
DEPEND="${RDEPEND}"
|
2017-03-31 14:26:37 +02:00
|
|
|
|
|
|
|
pkg_pretend() {
|
2017-04-18 01:20:13 +02:00
|
|
|
if use client; then
|
|
|
|
if ! use openal && ! use opus && ! use vorbis; then
|
2017-03-31 14:26:37 +02:00
|
|
|
ewarn
|
|
|
|
ewarn "Sound support disabled. Enable 'openal' or 'opus' or 'vorbis' useflag."
|
|
|
|
ewarn
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
buildit() { use $1 && echo 1 || echo 0 ; }
|
|
|
|
nobuildit() { use $1 && echo 0 || echo 1 ; }
|
2017-04-03 17:52:27 +02:00
|
|
|
# unbundle zlib as much as possible
|
|
|
|
append-flags "-DOF=_Z_OF"
|
2017-03-31 14:26:37 +02:00
|
|
|
emake \
|
|
|
|
ARCH=$(usex amd64 "x86_64" "i386") \
|
|
|
|
DEFAULT_BASEDIR="/usr/share/urbanterror" \
|
2017-04-18 01:20:13 +02:00
|
|
|
BUILD_CLIENT=$(buildit client) \
|
|
|
|
BUILD_SERVER=$(buildit server) \
|
2017-03-31 14:26:37 +02:00
|
|
|
BUILD_BASEGAME=1 \
|
|
|
|
BUILD_MISSIONPACK=0 \
|
|
|
|
BUILD_GAME_SO=0 \
|
|
|
|
BUILD_GAME_QVM=0 \
|
|
|
|
BUILD_STANDALONE=1 \
|
|
|
|
SERVERBIN="Quake3-UrT-Ded" \
|
|
|
|
CLIENTBIN="Quake3-UrT" \
|
2017-04-03 18:02:46 +02:00
|
|
|
USE_RENDERER_DLOPEN=0 \
|
2017-03-31 14:26:37 +02:00
|
|
|
USE_YACC=0 \
|
|
|
|
BASEGAME="q3ut4"\
|
|
|
|
BASEGAME_CFLAGS="${CFLAGS}" \
|
|
|
|
USE_SDL=$(buildit sdl) \
|
|
|
|
USE_SDL_DLOPEN=$(buildit sdl) \
|
|
|
|
USE_OPENAL=$(buildit openal) \
|
2017-04-03 18:02:46 +02:00
|
|
|
USE_OPENAL_DLOPEN=$(buildit openal) \
|
2017-03-31 14:26:37 +02:00
|
|
|
USE_CURL=$(buildit curl) \
|
2017-04-03 18:02:46 +02:00
|
|
|
USE_CURL_DLOPEN=$(buildit curl) \
|
2017-03-31 14:26:37 +02:00
|
|
|
USE_CODEC_VORBIS=$(buildit vorbis) \
|
|
|
|
USE_CODEC_OPUS=$(buildit opus) \
|
|
|
|
USE_MUMBLE=$(buildit mumble) \
|
2017-04-03 17:44:36 +02:00
|
|
|
USE_VOIP=$(buildit voip) \
|
2017-03-31 14:26:37 +02:00
|
|
|
USE_INTERNAL_LIBS=0 \
|
|
|
|
USE_LOCAL_HEADERS=0 \
|
2017-04-01 00:37:17 +02:00
|
|
|
USE_ALTGAMMA=$(buildit altgamma)
|
2017-03-31 14:26:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
local my_arch=$(usex amd64 "x86_64" "i386")
|
|
|
|
# docs from ioq3, not from UrbanTerror ZIP file
|
|
|
|
dodoc ChangeLog README.md README.ioq3.md md4-readme.txt
|
|
|
|
|
2017-04-18 01:20:13 +02:00
|
|
|
if use client; then
|
2017-03-31 14:26:37 +02:00
|
|
|
newbin build/$(usex debug "debug" "release")-linux-${my_arch}/Quake3-UrT.${my_arch} ${PN}
|
|
|
|
# Shooter as defined in https://specifications.freedesktop.org/menu-spec/latest/apas02.html
|
2017-04-23 18:11:11 +02:00
|
|
|
make_desktop_entry ${PN} "UrbanTerror" ${PN}
|
2017-03-31 14:26:37 +02:00
|
|
|
fi
|
|
|
|
|
2017-04-18 01:20:13 +02:00
|
|
|
# means: dedicated server only
|
|
|
|
if use server && ! use client; then
|
|
|
|
newbin build/$(usex debug "debug" "release")-linux-${my_arch}/Quake3-UrT-Ded.${my_arch} ${PN}-ded
|
2017-03-31 14:26:37 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
pkg_preinst() {
|
2017-04-18 01:20:13 +02:00
|
|
|
use client && gnome2_icon_savelist
|
2017-03-31 14:26:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
2017-04-18 01:20:13 +02:00
|
|
|
use client && gnome2_icon_cache_update
|
2017-03-31 14:26:37 +02:00
|
|
|
if [[ -z "${REPLACING_VERSIONS}" ]]; then
|
|
|
|
# This is a new installation
|
2017-04-18 01:20:13 +02:00
|
|
|
if use openal; then
|
2017-03-31 14:26:37 +02:00
|
|
|
einfo
|
|
|
|
elog "You might need to set:"
|
|
|
|
elog " seta s_useopenal \"1\""
|
|
|
|
elog "in your ~/.q3a/q3ut4/q3config.cfg for openal to work."
|
|
|
|
einfo
|
|
|
|
fi
|
2017-04-01 00:34:53 +02:00
|
|
|
if use altgamma; then
|
2017-03-31 14:26:37 +02:00
|
|
|
einfo
|
|
|
|
elog "You might need to set:"
|
|
|
|
elog " seta r_altgamma \"1\""
|
|
|
|
elog "in your ~/.q3a/q3ut4/q3config.cfg for altgamma to work."
|
2017-04-01 00:34:53 +02:00
|
|
|
einfo
|
|
|
|
fi
|
|
|
|
if ! use altgamma; then
|
|
|
|
einfo
|
|
|
|
elog "If you are using a modesetting graphics driver you might"
|
|
|
|
elog "consider setting USE=\"altgamma\"."
|
|
|
|
elog "For details take a look on:"
|
|
|
|
elog "https://bugs.freedesktop.org/show_bug.cgi?id=27222"
|
|
|
|
einfo
|
2017-03-31 14:26:37 +02:00
|
|
|
fi
|
2017-04-18 01:20:13 +02:00
|
|
|
if ! use client; then
|
|
|
|
einfo
|
|
|
|
elog "You disabled client support. You won't be able to connect"
|
|
|
|
elog "to any servers and play. If you want to do so, enable"
|
|
|
|
elog "USE=\"client\"."
|
|
|
|
einfo
|
|
|
|
fi
|
2017-03-31 14:26:37 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
2017-04-18 01:20:13 +02:00
|
|
|
use client && gnome2_icon_cache_update
|
2017-03-31 14:26:37 +02:00
|
|
|
}
|