85 lines
2.7 KiB
Text
85 lines
2.7 KiB
Text
# Template file for 'qemu'
|
|
pkgname=qemu
|
|
version=2.1.2
|
|
revision=1
|
|
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=fd10f5e45cf5a736fa5a3e1c279ae9821534e700beb7d1aab88a07648a394885
|
|
|
|
nostrip=yes
|
|
hostmakedepends="pkg-config perl python automake libtool flex"
|
|
makedepends="libpng-devel>=1.6 libjpeg-turbo-devel pixman-devel
|
|
libuuid-devel libX11-devel alsa-lib-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
|
|
$(vopt_if sdl SDL-devel) $(vopt_if sdl2 SDL2-devel) $(vopt_if gtk gtk+-devel)"
|
|
conf_files="/etc/qemu/target-x86_64.conf"
|
|
|
|
build_options="gtk sdl sdl2"
|
|
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"
|
|
vopt_conflict "sdl" "sdl2"
|
|
|
|
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-pie --localstatedir=/var \
|
|
$(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.*"
|
|
}
|
|
}
|