# Template file for 'xonotic'
pkgname=xonotic
version=0.8.6
revision=4
hostmakedepends="unzip automake libtool"
makedepends="gmp-devel MesaLib-devel SDL2-devel libcurl-devel alsa-lib-devel
 libmodplug-devel libvorbis-devel libXpm-devel libjpeg-turbo-devel
 libXxf86vm-devel"
depends="desktop-file-utils xonotic-data"
short_desc="Free, fast-paced crossplatform first-person shooter"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later, BSD-3-Clause"
homepage="http://xonotic.org"
distfiles="https://dl.xonotic.org/xonotic-${version}-source.zip"
checksum=8b92ac781cff4ae89c121a23eacd7dec05a2aabedaccc23a19d1a0958b4012a8

do_build() {
	local target

	make_build_args="SDL_CONFIG=sdl2-config DP_FS_BASEDIR=/usr/share/xonotic/ DP_LINK_TO_LIBJPEG=1"
	case "$XBPS_TARGET_MACHINE" in
		i686*|x86_64*) ;;
		*) make_build_args+=" CFLAGS_SSE= CFLAGS_SSE2=";;
	esac
	echo $make_build_args
	cd source/darkplaces
	sed -i makefile \
		-e "s;DP_MACHINE:=.*;DP_MACHINE:=${XBPS_TARGET_MACHINE/-musl};"
	# Inject our $CFLAGS and $LDFLAGS
	sed -i makefile.inc \
		-e "s;^\(CPUOPTIMIZATIONS\)?=\(.*\);\1=${CFLAGS} \2;" \
		-e "s;^\(LDFLAGS_UNIXCOMMON\)=\(.*\);\1=${LDFLAGS} \2;"
	for target in cl sdl sv; do
		make ${makejobs} ${make_build_args} ${target}-release
	done

	cd ${wrksrc}/source/d0_blind_id
	autoreconf -fi
	./configure --prefix=/usr --host=${XBPS_CROSS_TRIPLET}
	make ${makejobs}
}

post_build() {
  # Create .desktop for SDL
	sed -e 's/Name=Xonotic/Name=Xonotic (SDL)/' \
		misc/logos/xonotic.desktop > xonotic-sdl.desktop

  # Create .desktop for GLX
	sed -e 's/Exec=xonotic-sdl/Exec=xonotic-glx/' \
		-e 's/Name=Xonotic/Name=Xonotic (GLX)/' \
		misc/logos/xonotic.desktop > xonotic-glx.desktop
}

do_install() {
	# binaries
	vbin source/darkplaces/darkplaces-dedicated xonotic-dedicated
	vbin source/darkplaces/darkplaces-glx xonotic-glx
	vbin source/darkplaces/darkplaces-sdl xonotic-sdl

	# convenience files
	vmkdir usr/share/applications
	vinstall xonotic-sdl.desktop 644 /usr/share/applications/
	vinstall xonotic-glx.desktop 644 /usr/share/applications/
	vinstall misc/logos/icons_png/xonotic_512.png 644 /usr/share/pixmaps/ xonotic.png

	# crypto stuff
	cd source/d0_blind_id
	vlicense COPYING
	make DESTDIR=$DESTDIR install

	# Remove devel stuff
	rm -rf $DESTDIR/usr/include $DESTDIR/usr/lib/pkgconfig $DESTDIR/usr/lib/*.a
}
