void-packages/srcpkgs/qemu/template

92 lines
2.9 KiB
Plaintext

# Template file for 'qemu'
pkgname=qemu
version=2.2.0
revision=2
short_desc="Open Source Processor Emulator"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://qemu.org"
license="GPL-2, LGPL-2.1"
distfiles="http://wiki.qemu.org/download/qemu-${version}.tar.bz2"
checksum=b68c9b6c7c694f5489b5a6bffe993cd976ffbb78e7d178eb3bc016caf460039c
nostrip=yes
hostmakedepends="pkg-config perl python automake libtool flex"
makedepends="libpng-devel>=1.6 libjpeg-turbo-devel pixman-devel snappy-devel
libuuid-devel libX11-devel alsa-lib-devel libaio-devel gnutls-devel>=3.1.5
libsasl-devel libglib-devel ncurses-devel libseccomp-devel>=2.1.0 nss-devel
libcurl-devel xfsprogs-devel libcap-ng-devel libcap-devel vde2-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-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
vinstall ${FILESDIR}/65-kvm.rules 644 usr/lib/udev/rules.d
# 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.*"
}
}