void-packages/srcpkgs/qemu/template

92 lines
2.9 KiB
Plaintext
Raw Normal View History

# Template file for 'qemu'
pkgname=qemu
2014-12-10 08:27:25 +01:00
version=2.2.0
revision=2
short_desc="Open Source Processor Emulator"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-08-11 09:50:41 +02:00
homepage="http://qemu.org"
license="GPL-2, LGPL-2.1"
2012-09-06 09:18:40 +02:00
distfiles="http://wiki.qemu.org/download/qemu-${version}.tar.bz2"
2014-12-10 08:27:25 +01:00
checksum=b68c9b6c7c694f5489b5a6bffe993cd976ffbb78e7d178eb3bc016caf460039c
nostrip=yes
2013-08-16 09:52:27 +02:00
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
2013-08-16 09:39:53 +02:00
libsasl-devel libglib-devel ncurses-devel libseccomp-devel>=2.1.0 nss-devel
2013-10-10 09:45:44 +02:00
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"
2012-11-21 22:41:52 +01:00
build_options="gtk sdl sdl2 spice"
build_options_default="sdl"
2014-08-29 21:43:28 +02:00
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"
2014-08-29 21:43:28 +02:00
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
2014-08-29 21:43:28 +02:00
./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
2012-07-10 11:32:50 +02:00
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
}
2013-10-10 09:45:44 +02:00
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.*"
}
}