2010-01-17 10:55:40 +01:00
|
|
|
# Template file for 'qemu'
|
|
|
|
pkgname=qemu
|
2014-09-26 11:59:45 +02:00
|
|
|
version=2.1.2
|
|
|
|
revision=1
|
2010-01-17 10:55:40 +01:00
|
|
|
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-09-26 11:59:45 +02:00
|
|
|
checksum=fd10f5e45cf5a736fa5a3e1c279ae9821534e700beb7d1aab88a07648a394885
|
2010-01-17 10:55:40 +01:00
|
|
|
|
2014-01-01 16:10:11 +01:00
|
|
|
nostrip=yes
|
2013-08-16 09:52:27 +02:00
|
|
|
hostmakedepends="pkg-config perl python automake libtool flex"
|
2014-08-25 13:21:03 +02:00
|
|
|
makedepends="libpng-devel>=1.6 libjpeg-turbo-devel pixman-devel
|
2014-09-05 13:27:56 +02:00
|
|
|
libuuid-devel libX11-devel alsa-lib-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
|
2014-09-05 13:27:56 +02:00
|
|
|
libbluetooth-devel libssh2-devel libusb-devel pulseaudio-devel
|
2014-09-05 15:52:57 +02:00
|
|
|
$(vopt_if sdl SDL-devel) $(vopt_if sdl2 SDL2-devel) $(vopt_if gtk gtk+-devel)"
|
2014-01-01 16:10:11 +01:00
|
|
|
conf_files="/etc/qemu/target-x86_64.conf"
|
2012-11-21 22:41:52 +01:00
|
|
|
|
2014-09-05 15:52:57 +02:00
|
|
|
build_options="gtk sdl sdl2"
|
|
|
|
build_options_default="sdl"
|
2014-08-29 21:43:28 +02:00
|
|
|
desc_option_gtk="Enable GTK display and use it by default"
|
2014-09-05 15:52:57 +02:00
|
|
|
desc_option_sdl="Use SDL (1.x) video output"
|
|
|
|
desc_option_sdl2="Use SDL (2.x) video output"
|
2014-09-05 16:49:38 +02:00
|
|
|
vopt_conflict "sdl" "sdl2"
|
2014-08-29 21:43:28 +02:00
|
|
|
|
2014-08-25 13:21:03 +02:00
|
|
|
do_configure() {
|
|
|
|
local args=
|
|
|
|
|
|
|
|
sed -e 's,-rpath /usr/local/lib,,g' -i configure
|
|
|
|
|
2014-09-11 18:10:51 +02:00
|
|
|
# XXX remove this when kernel headers are updated to 3.16.
|
|
|
|
export CFLAGS+=" -D_LINUX_XATTR_H"
|
|
|
|
|
2014-08-25 13:21:03 +02:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
args+=" --cross-prefix=${XBPS_CROSS_TRIPLET}-"
|
|
|
|
export LIBTOOL=libtool
|
|
|
|
fi
|
2014-08-29 21:43:28 +02:00
|
|
|
|
2014-08-25 13:21:03 +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 \
|
2014-08-29 21:43:28 +02:00
|
|
|
--enable-libusb --disable-glusterfs \
|
2014-09-05 13:27:56 +02:00
|
|
|
--enable-pie --localstatedir=/var \
|
2014-09-05 15:52:57 +02:00
|
|
|
$(vopt_if sdl "--with-sdlabi=1.0") \
|
|
|
|
$(vopt_if sdl2 "--with-sdlabi=2.0") \
|
|
|
|
$(vopt_enable gtk) ${args}
|
2014-08-25 13:21:03 +02:00
|
|
|
}
|
|
|
|
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
|
2012-07-30 11:52:17 +02:00
|
|
|
# qemu-bridge-helper must be setuid for non privileged users.
|
|
|
|
chmod u+s ${DESTDIR}/usr/libexec/qemu-bridge-helper
|
2012-02-01 19:23:26 +01:00
|
|
|
}
|
2013-04-14 11:26:34 +02:00
|
|
|
|
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.*"
|
|
|
|
}
|
|
|
|
}
|