# Template file for 'qemu'
pkgname=qemu
version=2.2.1
revision=3
short_desc="Open Source Processor Emulator"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://qemu.org"
license="GPL-2, LGPL-2.1"
distfiles="http://wiki.qemu.org/download/qemu-${version}.tar.bz2"
checksum=4617154c6ef744b83e10b744e392ad111dd351d435d6563ce24d8da75b1335a0

nostrip=yes
hostmakedepends="pkg-config perl python automake libtool flex"
makedepends="libpng-devel libjpeg-turbo-devel pixman-devel snappy-devel
 libuuid-devel libX11-devel alsa-lib-devel libaio-devel gnutls-devel
 libsasl-devel libglib-devel ncurses-devel libseccomp-devel nss-devel
 libcurl-devel xfsprogs-devel libcap-ng-devel libcap-devel vde2-devel usbredir-devel
 libbluetooth-devel libssh2-devel libusb-devel pulseaudio-devel libnfs-devel
 $(vopt_if sdl SDL-devel) $(vopt_if sdl2 SDL2-devel) $(vopt_if gtk gtk+-devel)
 $(vopt_if spice spice-devel)"
conf_files="/etc/qemu/target-x86_64.conf"

build_options="gtk sdl sdl2 spice"
build_options_default="sdl"
desc_option_gtk="Enable GTK display and use it by default"
desc_option_sdl="Use SDL (1.x) video output"
desc_option_sdl2="Use SDL (2.x) video output"
desc_option_spice="Enable support for SPICE"
vopt_conflict "sdl" "sdl2"

case "$XBPS_TARGET_MACHINE" in
	i686*|x86_64*) build_options_default+=" spice";;
esac

do_configure() {
	local args=

	sed -e 's,-rpath /usr/local/lib,,g' -i configure

	# XXX remove this when kernel headers are updated to 3.16.
	export CFLAGS+=" -D_LINUX_XATTR_H"

	if [ "$CROSS_BUILD" ]; then
		args+=" --cross-prefix=${XBPS_CROSS_TRIPLET}-"
		export LIBTOOL=libtool
	fi

	./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec \
		--enable-kvm --audio-drv-list=alsa,sdl,pa --disable-xen --enable-tpm \
		--enable-vhost-net --enable-vnc-png --enable-vnc-tls --enable-virtfs \
		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \
		--enable-pie --localstatedir=/var $(vopt_enable spice) \
		$(vopt_if sdl "--with-sdlabi=1.0") \
		$(vopt_if sdl2 "--with-sdlabi=2.0") \
		$(vopt_enable gtk) ${args}
}
do_build() {
	if [ "$CROSS_BUILD" ]; then
		# XXX libtool execs cc and ar.
		mkdir -p ${wrksrc}/cross
		ln -sf /usr/bin/${XBPS_CROSS_TRIPLET}-gcc ${wrksrc}/cross/cc
		ln -sf /usr/bin/${XBPS_CROSS_TRIPLET}-ar ${wrksrc}/cross/ar
		export PATH=${wrksrc}/cross:$PATH
	fi
	make ${makejobs}
}
do_install() {
	make DESTDIR=${DESTDIR} install
	# qemu-bridge-helper must be setuid for non privileged users.
	chmod u+s ${DESTDIR}/usr/libexec/qemu-bridge-helper
}

libcacard-devel_package() {
	short_desc="Common Access Card (CAC) Emulation library - development files"
	depends="nss-devel libcacard>=${version}_${revision}"
	pkg_install() {
		vmove usr/include
		vmove usr/lib/pkgconfig
		vmove "usr/lib/*.a"
		vmove "usr/lib/*.so"
	}
}
libcacard_package() {
	short_desc="Common Access Card (CAC) Emulation library"
	pkg_install() {
		vmove "usr/lib/*.so.*"
	}
}