Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu/
Date: Wed, 26 Jul 2017 17:15:03
Message-Id: 1501089293.d45f452f135efb17e2f24dfd660cfc0d83b80994.tamiko@gentoo
1 commit: d45f452f135efb17e2f24dfd660cfc0d83b80994
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 26 17:13:12 2017 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 26 17:14:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d45f452f
7
8 app-emulation/qemu: drop vulnerable version 2.9.0-r54
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 app-emulation/qemu/qemu-2.9.0-r54.ebuild | 785 -------------------------------
13 1 file changed, 785 deletions(-)
14
15 diff --git a/app-emulation/qemu/qemu-2.9.0-r54.ebuild b/app-emulation/qemu/qemu-2.9.0-r54.ebuild
16 deleted file mode 100644
17 index 06f351559e5..00000000000
18 --- a/app-emulation/qemu/qemu-2.9.0-r54.ebuild
19 +++ /dev/null
20 @@ -1,785 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="6"
25 -
26 -PYTHON_COMPAT=( python2_7 )
27 -PYTHON_REQ_USE="ncurses,readline"
28 -
29 -PLOCALES="bg de_DE fr_FR hu it tr zh_CN"
30 -
31 -FIRMWARE_ABI_VERSION="2.9.0-r52"
32 -
33 -inherit eutils flag-o-matic linux-info toolchain-funcs multilib python-r1 \
34 - user udev fcaps readme.gentoo-r1 pax-utils l10n
35 -
36 -if [[ ${PV} = *9999* ]]; then
37 - EGIT_REPO_URI="git://git.qemu.org/qemu.git"
38 - inherit git-r3
39 - SRC_URI=""
40 -else
41 - SRC_URI="http://wiki.qemu-project.org/download/${P}.tar.bz2"
42 - KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
43 -fi
44 -
45 -DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
46 -HOMEPAGE="http://www.qemu.org http://www.linux-kvm.org"
47 -
48 -LICENSE="GPL-2 LGPL-2 BSD-2"
49 -SLOT="0"
50 -IUSE="accessibility +aio alsa bluetooth bzip2 +caps +curl debug +fdt
51 - glusterfs gnutls gtk gtk2 infiniband iscsi +jpeg kernel_linux
52 - kernel_FreeBSD lzo ncurses nfs nls numa opengl +pin-upstream-blobs +png
53 - pulseaudio python rbd sasl +seccomp sdl sdl2 selinux smartcard snappy
54 - spice ssh static static-user systemtap tci test usb usbredir vde
55 - +vhost-net virgl virtfs +vnc vte xattr xen xfs"
56 -
57 -COMMON_TARGETS="aarch64 alpha arm cris i386 m68k microblaze microblazeel
58 - mips mips64 mips64el mipsel nios2 or1k ppc ppc64 s390x sh4 sh4eb sparc
59 - sparc64 x86_64"
60 -IUSE_SOFTMMU_TARGETS="${COMMON_TARGETS}
61 - lm32 moxie ppcemb tricore unicore32 xtensa xtensaeb"
62 -IUSE_USER_TARGETS="${COMMON_TARGETS}
63 - armeb hppa mipsn32 mipsn32el ppc64abi32 ppc64le sparc32plus tilegx"
64 -
65 -use_softmmu_targets=$(printf ' qemu_softmmu_targets_%s' ${IUSE_SOFTMMU_TARGETS})
66 -use_user_targets=$(printf ' qemu_user_targets_%s' ${IUSE_USER_TARGETS})
67 -IUSE+=" ${use_softmmu_targets} ${use_user_targets}"
68 -
69 -# Allow no targets to be built so that people can get a tools-only build.
70 -# Block USE flag configurations known to not work.
71 -REQUIRED_USE="${PYTHON_REQUIRED_USE}
72 - gtk2? ( gtk )
73 - qemu_softmmu_targets_arm? ( fdt )
74 - qemu_softmmu_targets_microblaze? ( fdt )
75 - qemu_softmmu_targets_mips64el? ( fdt )
76 - qemu_softmmu_targets_ppc? ( fdt )
77 - qemu_softmmu_targets_ppc64? ( fdt )
78 - sdl2? ( sdl )
79 - static? ( static-user !alsa !bluetooth !gtk !gtk2 !opengl !pulseaudio )
80 - virtfs? ( xattr )
81 - vte? ( gtk )"
82 -
83 -# Dependencies required for qemu tools (qemu-nbd, qemu-img, qemu-io, ...)
84 -# and user/softmmu targets (qemu-*, qemu-system-*).
85 -#
86 -# Yep, you need both libcap and libcap-ng since virtfs only uses libcap.
87 -#
88 -# The attr lib isn't always linked in (although the USE flag is always
89 -# respected). This is because qemu supports using the C library's API
90 -# when available rather than always using the extranl library.
91 -ALL_DEPEND="
92 - >=dev-libs/glib-2.0[static-libs(+)]
93 - sys-libs/zlib[static-libs(+)]
94 - python? ( ${PYTHON_DEPS} )
95 - systemtap? ( dev-util/systemtap )
96 - xattr? ( sys-apps/attr[static-libs(+)] )"
97 -
98 -# Dependencies required for qemu tools (qemu-nbd, qemu-img, qemu-io, ...)
99 -# softmmu targets (qemu-system-*).
100 -SOFTMMU_TOOLS_DEPEND="
101 - >=x11-libs/pixman-0.28.0[static-libs(+)]
102 - accessibility? (
103 - app-accessibility/brltty[api]
104 - app-accessibility/brltty[static-libs(+)]
105 - )
106 - aio? ( dev-libs/libaio[static-libs(+)] )
107 - alsa? ( >=media-libs/alsa-lib-1.0.13 )
108 - bluetooth? ( net-wireless/bluez )
109 - bzip2? ( app-arch/bzip2[static-libs(+)] )
110 - caps? ( sys-libs/libcap-ng[static-libs(+)] )
111 - curl? ( >=net-misc/curl-7.15.4[static-libs(+)] )
112 - fdt? ( >=sys-apps/dtc-1.4.0[static-libs(+)] )
113 - glusterfs? ( >=sys-cluster/glusterfs-3.4.0[static-libs(+)] )
114 - gnutls? (
115 - dev-libs/nettle:=[static-libs(+)]
116 - >=net-libs/gnutls-3.0:=[static-libs(+)]
117 - )
118 - gtk? (
119 - gtk2? (
120 - x11-libs/gtk+:2
121 - vte? ( x11-libs/vte:0 )
122 - )
123 - !gtk2? (
124 - x11-libs/gtk+:3
125 - vte? ( x11-libs/vte:2.91 )
126 - )
127 - )
128 - infiniband? ( sys-fabric/librdmacm:=[static-libs(+)] )
129 - iscsi? ( net-libs/libiscsi )
130 - jpeg? ( virtual/jpeg:0=[static-libs(+)] )
131 - lzo? ( dev-libs/lzo:2[static-libs(+)] )
132 - ncurses? (
133 - sys-libs/ncurses:0=[unicode]
134 - sys-libs/ncurses:0=[static-libs(+)]
135 - )
136 - nfs? ( >=net-fs/libnfs-1.9.3[static-libs(+)] )
137 - numa? ( sys-process/numactl[static-libs(+)] )
138 - opengl? (
139 - virtual/opengl
140 - media-libs/libepoxy[static-libs(+)]
141 - media-libs/mesa[static-libs(+)]
142 - media-libs/mesa[egl,gbm]
143 - )
144 - png? ( media-libs/libpng:0=[static-libs(+)] )
145 - pulseaudio? ( media-sound/pulseaudio )
146 - rbd? ( sys-cluster/ceph[static-libs(+)] )
147 - sasl? ( dev-libs/cyrus-sasl[static-libs(+)] )
148 - sdl? (
149 - !sdl2? (
150 - media-libs/libsdl[X]
151 - >=media-libs/libsdl-1.2.11[static-libs(+)]
152 - )
153 - sdl2? (
154 - media-libs/libsdl2[X]
155 - media-libs/libsdl2[static-libs(+)]
156 - )
157 - )
158 - seccomp? ( >=sys-libs/libseccomp-2.1.0[static-libs(+)] )
159 - smartcard? ( >=app-emulation/libcacard-2.5.0[static-libs(+)] )
160 - snappy? ( app-arch/snappy:=[static-libs(+)] )
161 - spice? (
162 - >=app-emulation/spice-protocol-0.12.3
163 - >=app-emulation/spice-0.12.0[static-libs(+)]
164 - )
165 - ssh? ( >=net-libs/libssh2-1.2.8[static-libs(+)] )
166 - usb? ( >=virtual/libusb-1-r2[static-libs(+)] )
167 - usbredir? ( >=sys-apps/usbredir-0.6[static-libs(+)] )
168 - vde? ( net-misc/vde[static-libs(+)] )
169 - virgl? ( media-libs/virglrenderer[static-libs(+)] )
170 - virtfs? ( sys-libs/libcap )
171 - xen? ( app-emulation/xen-tools:= )
172 - xfs? ( sys-fs/xfsprogs[static-libs(+)] )"
173 -
174 -X86_FIRMWARE_DEPEND="
175 - pin-upstream-blobs? (
176 - ~sys-firmware/edk2-ovmf-2017_pre20170505[binary]
177 - ~sys-firmware/ipxe-1.0.0_p20160620
178 - ~sys-firmware/seabios-1.10.2[binary,seavgabios]
179 - ~sys-firmware/sgabios-0.1_pre8
180 - )
181 - !pin-upstream-blobs? (
182 - sys-firmware/edk2-ovmf
183 - sys-firmware/ipxe
184 - >=sys-firmware/seabios-1.10.2[seavgabios]
185 - sys-firmware/sgabios
186 - )"
187 -
188 -CDEPEND="
189 - !static? (
190 - ${ALL_DEPEND//\[static-libs(+)]}
191 - ${SOFTMMU_TOOLS_DEPEND//\[static-libs(+)]}
192 - )
193 - qemu_softmmu_targets_i386? ( ${X86_FIRMWARE_DEPEND} )
194 - qemu_softmmu_targets_x86_64? ( ${X86_FIRMWARE_DEPEND} )"
195 -DEPEND="${CDEPEND}
196 - dev-lang/perl
197 - =dev-lang/python-2*
198 - sys-apps/texinfo
199 - virtual/pkgconfig
200 - kernel_linux? ( >=sys-kernel/linux-headers-2.6.35 )
201 - gtk? ( nls? ( sys-devel/gettext ) )
202 - static? (
203 - ${ALL_DEPEND}
204 - ${SOFTMMU_TOOLS_DEPEND}
205 - )
206 - static-user? ( ${ALL_DEPEND} )
207 - test? (
208 - dev-libs/glib[utils]
209 - sys-devel/bc
210 - )"
211 -RDEPEND="${CDEPEND}
212 - selinux? ( sec-policy/selinux-qemu )"
213 -
214 -PATCHES=(
215 - "${FILESDIR}"/${PN}-2.5.0-cflags.patch
216 - "${FILESDIR}"/${PN}-2.5.0-sysmacros.patch
217 - "${FILESDIR}"/${PN}-2.9.0-CVE-2017-8309.patch # bug 616870
218 - "${FILESDIR}"/${PN}-2.9.0-CVE-2017-8379.patch # bug 616872
219 - "${FILESDIR}"/${PN}-2.9.0-CVE-2017-8380.patch # bug 616874
220 - "${FILESDIR}"/${PN}-2.9.0-CVE-2017-8112.patch # bug 616636
221 - "${FILESDIR}"/${PN}-2.9.0-CVE-2017-7493.patch # bug 618808
222 -)
223 -
224 -STRIP_MASK="/usr/share/qemu/palcode-clipper"
225 -
226 -QA_PREBUILT="
227 - usr/share/qemu/openbios-ppc
228 - usr/share/qemu/openbios-sparc64
229 - usr/share/qemu/openbios-sparc32
230 - usr/share/qemu/palcode-clipper
231 - usr/share/qemu/s390-ccw.img
232 - usr/share/qemu/u-boot.e500"
233 -
234 -QA_WX_LOAD="usr/bin/qemu-i386
235 - usr/bin/qemu-x86_64
236 - usr/bin/qemu-alpha
237 - usr/bin/qemu-arm
238 - usr/bin/qemu-cris
239 - usr/bin/qemu-m68k
240 - usr/bin/qemu-microblaze
241 - usr/bin/qemu-microblazeel
242 - usr/bin/qemu-mips
243 - usr/bin/qemu-mipsel
244 - usr/bin/qemu-or1k
245 - usr/bin/qemu-ppc
246 - usr/bin/qemu-ppc64
247 - usr/bin/qemu-ppc64abi32
248 - usr/bin/qemu-sh4
249 - usr/bin/qemu-sh4eb
250 - usr/bin/qemu-sparc
251 - usr/bin/qemu-sparc64
252 - usr/bin/qemu-armeb
253 - usr/bin/qemu-sparc32plus
254 - usr/bin/qemu-s390x
255 - usr/bin/qemu-unicore32"
256 -
257 -DOC_CONTENTS="If you don't have kvm compiled into the kernel, make sure you have the
258 -kernel module loaded before running kvm. The easiest way to ensure that the
259 -kernel module is loaded is to load it on boot.
260 - For AMD CPUs the module is called 'kvm-amd'.
261 - For Intel CPUs the module is called 'kvm-intel'.
262 -Please review /etc/conf.d/modules for how to load these.
263 -
264 -Make sure your user is in the 'kvm' group. Just run
265 - $ gpasswd -a <USER> kvm
266 -then have <USER> re-login.
267 -
268 -For brand new installs, the default permissions on /dev/kvm might not let
269 -you access it. You can tell udev to reset ownership/perms:
270 - $ udevadm trigger -c add /dev/kvm
271 -
272 -If you want to register binfmt handlers for qemu user targets:
273 -For openrc:
274 - # rc-update add qemu-binfmt
275 -For systemd:
276 - # ln -s /usr/share/qemu/binfmt.d/qemu.conf /etc/binfmt.d/qemu.conf"
277 -
278 -pkg_pretend() {
279 - if use kernel_linux && kernel_is lt 2 6 25; then
280 - eerror "This version of KVM requres a host kernel of 2.6.25 or higher."
281 - elif use kernel_linux; then
282 - if ! linux_config_exists; then
283 - eerror "Unable to check your kernel for KVM support"
284 - else
285 - CONFIG_CHECK="~KVM ~TUN ~BRIDGE"
286 - ERROR_KVM="You must enable KVM in your kernel to continue"
287 - ERROR_KVM_AMD="If you have an AMD CPU, you must enable KVM_AMD in"
288 - ERROR_KVM_AMD+=" your kernel configuration."
289 - ERROR_KVM_INTEL="If you have an Intel CPU, you must enable"
290 - ERROR_KVM_INTEL+=" KVM_INTEL in your kernel configuration."
291 - ERROR_TUN="You will need the Universal TUN/TAP driver compiled"
292 - ERROR_TUN+=" into your kernel or loaded as a module to use the"
293 - ERROR_TUN+=" virtual network device if using -net tap."
294 - ERROR_BRIDGE="You will also need support for 802.1d"
295 - ERROR_BRIDGE+=" Ethernet Bridging for some network configurations."
296 - use vhost-net && CONFIG_CHECK+=" ~VHOST_NET"
297 - ERROR_VHOST_NET="You must enable VHOST_NET to have vhost-net"
298 - ERROR_VHOST_NET+=" support"
299 -
300 - if use amd64 || use x86 || use amd64-linux || use x86-linux; then
301 - CONFIG_CHECK+=" ~KVM_AMD ~KVM_INTEL"
302 - fi
303 -
304 - use python && CONFIG_CHECK+=" ~DEBUG_FS"
305 - ERROR_DEBUG_FS="debugFS support required for kvm_stat"
306 -
307 - # Now do the actual checks setup above
308 - check_extra_config
309 - fi
310 - fi
311 -
312 - if grep -qs '/usr/bin/qemu-kvm' "${EROOT}"/etc/libvirt/qemu/*.xml; then
313 - eerror "The kvm/qemu-kvm wrappers no longer exist, but your libvirt"
314 - eerror "instances are still pointing to it. Please update your"
315 - eerror "configs in /etc/libvirt/qemu/ to use the -enable-kvm flag"
316 - eerror "and the right system binary (e.g. qemu-system-x86_64)."
317 - die "update your virt configs to not use qemu-kvm"
318 - fi
319 -}
320 -
321 -pkg_setup() {
322 - enewgroup kvm 78
323 -}
324 -
325 -# Sanity check to make sure target lists are kept up-to-date.
326 -check_targets() {
327 - local var=$1 mak=$2
328 - local detected sorted
329 -
330 - pushd "${S}"/default-configs >/dev/null || die
331 -
332 - # Force C locale until glibc is updated. #564936
333 - detected=$(echo $(printf '%s\n' *-${mak}.mak | sed "s:-${mak}.mak::" | LC_COLLATE=C sort -u))
334 - sorted=$(echo $(printf '%s\n' ${!var} | LC_COLLATE=C sort -u))
335 - if [[ ${sorted} != "${detected}" ]] ; then
336 - eerror "The ebuild needs to be kept in sync."
337 - eerror "${var}: ${sorted}"
338 - eerror "$(printf '%-*s' ${#var} configure): ${detected}"
339 - die "sync ${var} to the list of targets"
340 - fi
341 -
342 - popd >/dev/null
343 -}
344 -
345 -handle_locales() {
346 - # Make sure locale list is kept up-to-date.
347 - local detected sorted
348 - detected=$(echo $(cd po && printf '%s\n' *.po | grep -v messages.po | sed 's:.po$::' | sort -u))
349 - sorted=$(echo $(printf '%s\n' ${PLOCALES} | sort -u))
350 - if [[ ${sorted} != "${detected}" ]] ; then
351 - eerror "The ebuild needs to be kept in sync."
352 - eerror "PLOCALES: ${sorted}"
353 - eerror " po/*.po: ${detected}"
354 - die "sync PLOCALES"
355 - fi
356 -
357 - # Deal with selective install of locales.
358 - if use nls ; then
359 - # Delete locales the user does not want. #577814
360 - rm_loc() { rm po/$1.po || die; }
361 - l10n_for_each_disabled_locale_do rm_loc
362 - else
363 - # Cheap hack to disable gettext .mo generation.
364 - rm -f po/*.po
365 - fi
366 -}
367 -
368 -src_prepare() {
369 - check_targets IUSE_SOFTMMU_TARGETS softmmu
370 - check_targets IUSE_USER_TARGETS linux-user
371 -
372 - # Alter target makefiles to accept CFLAGS set via flag-o
373 - sed -i -r \
374 - -e 's/^(C|OP_C|HELPER_C)FLAGS=/\1FLAGS+=/' \
375 - Makefile Makefile.target || die
376 -
377 - default
378 -
379 - # Fix ld and objcopy being called directly
380 - tc-export AR LD OBJCOPY
381 -
382 - # Verbose builds
383 - MAKEOPTS+=" V=1"
384 -
385 - # Run after we've applied all patches.
386 - handle_locales
387 -}
388 -
389 -##
390 -# configures qemu based on the build directory and the build type
391 -# we are using.
392 -#
393 -qemu_src_configure() {
394 - debug-print-function ${FUNCNAME} "$@"
395 -
396 - local buildtype=$1
397 - local builddir="${S}/${buildtype}-build"
398 -
399 - mkdir "${builddir}"
400 -
401 - local conf_opts=(
402 - --prefix=/usr
403 - --sysconfdir=/etc
404 - --libdir=/usr/$(get_libdir)
405 - --docdir=/usr/share/doc/${PF}/html
406 - --disable-bsd-user
407 - --disable-guest-agent
408 - --disable-strip
409 - --disable-werror
410 - # We support gnutls/nettle for crypto operations. It is possible
411 - # to use gcrypt when gnutls/nettle are disabled (but not when they
412 - # are enabled), but it's not really worth the hassle. Disable it
413 - # all the time to avoid automatically detecting it. #568856
414 - --disable-gcrypt
415 - --python="${PYTHON}"
416 - --cc="$(tc-getCC)"
417 - --cxx="$(tc-getCXX)"
418 - --host-cc="$(tc-getBUILD_CC)"
419 - $(use_enable debug debug-info)
420 - $(use_enable debug debug-tcg)
421 - --enable-docs
422 - $(use_enable tci tcg-interpreter)
423 - $(use_enable xattr attr)
424 - )
425 -
426 - # Disable options not used by user targets. This simplifies building
427 - # static user targets (USE=static-user) considerably.
428 - conf_notuser() {
429 - if [[ ${buildtype} == "user" ]] ; then
430 - echo "--disable-${2:-$1}"
431 - else
432 - use_enable "$@"
433 - fi
434 - }
435 - conf_opts+=(
436 - $(conf_notuser accessibility brlapi)
437 - $(conf_notuser aio linux-aio)
438 - $(conf_notuser bzip2)
439 - $(conf_notuser bluetooth bluez)
440 - $(conf_notuser caps cap-ng)
441 - $(conf_notuser curl)
442 - $(conf_notuser fdt)
443 - $(conf_notuser glusterfs)
444 - $(conf_notuser gnutls)
445 - $(conf_notuser gnutls nettle)
446 - $(conf_notuser gtk)
447 - $(conf_notuser infiniband rdma)
448 - $(conf_notuser iscsi libiscsi)
449 - $(conf_notuser jpeg vnc-jpeg)
450 - $(conf_notuser kernel_linux kvm)
451 - $(conf_notuser lzo)
452 - $(conf_notuser ncurses curses)
453 - $(conf_notuser nfs libnfs)
454 - $(conf_notuser numa)
455 - $(conf_notuser opengl)
456 - $(conf_notuser png vnc-png)
457 - $(conf_notuser rbd)
458 - $(conf_notuser sasl vnc-sasl)
459 - $(conf_notuser sdl)
460 - $(conf_notuser seccomp)
461 - $(conf_notuser smartcard)
462 - $(conf_notuser snappy)
463 - $(conf_notuser spice)
464 - $(conf_notuser ssh libssh2)
465 - $(conf_notuser usb libusb)
466 - $(conf_notuser usbredir usb-redir)
467 - $(conf_notuser vde)
468 - $(conf_notuser vhost-net)
469 - $(conf_notuser virgl virglrenderer)
470 - $(conf_notuser virtfs)
471 - $(conf_notuser vnc)
472 - $(conf_notuser vte)
473 - $(conf_notuser xen)
474 - $(conf_notuser xen xen-pci-passthrough)
475 - $(conf_notuser xfs xfsctl)
476 - )
477 -
478 - if [[ ! ${buildtype} == "user" ]] ; then
479 - # audio options
480 - local audio_opts="oss"
481 - use alsa && audio_opts="alsa,${audio_opts}"
482 - use sdl && audio_opts="sdl,${audio_opts}"
483 - use pulseaudio && audio_opts="pa,${audio_opts}"
484 - conf_opts+=(
485 - --audio-drv-list="${audio_opts}"
486 - )
487 - use gtk && conf_opts+=( --with-gtkabi=$(usex gtk2 2.0 3.0) )
488 - use sdl && conf_opts+=( --with-sdlabi=$(usex sdl2 2.0 1.2) )
489 - fi
490 -
491 - case ${buildtype} in
492 - user)
493 - conf_opts+=(
494 - --enable-linux-user
495 - --disable-system
496 - --disable-blobs
497 - --disable-tools
498 - )
499 - local static_flag="static-user"
500 - ;;
501 - softmmu)
502 - conf_opts+=(
503 - --disable-linux-user
504 - --enable-system
505 - --disable-tools
506 - --with-system-pixman
507 - )
508 - local static_flag="static"
509 - ;;
510 - tools)
511 - conf_opts+=(
512 - --disable-linux-user
513 - --disable-system
514 - --disable-blobs
515 - --enable-tools
516 - )
517 - local static_flag="static"
518 - ;;
519 - esac
520 -
521 - local targets="${buildtype}_targets"
522 - [[ -n ${targets} ]] && conf_opts+=( --target-list="${!targets}" )
523 -
524 - # Add support for SystemTAP
525 - use systemtap && conf_opts+=( --enable-trace-backend=dtrace )
526 -
527 - # We always want to attempt to build with PIE support as it results
528 - # in a more secure binary. But it doesn't work with static or if
529 - # the current GCC doesn't have PIE support.
530 - if use ${static_flag}; then
531 - conf_opts+=( --static --disable-pie )
532 - else
533 - tc-enables-pie && conf_opts+=( --enable-pie )
534 - fi
535 -
536 - echo "../configure ${conf_opts[*]}"
537 - cd "${builddir}"
538 - ../configure "${conf_opts[@]}" || die "configure failed"
539 -
540 - # FreeBSD's kernel does not support QEMU assigning/grabbing
541 - # host USB devices yet
542 - use kernel_FreeBSD && \
543 - sed -i -E -e "s|^(HOST_USB=)bsd|\1stub|" "${S}"/config-host.mak
544 -}
545 -
546 -src_configure() {
547 - local target
548 -
549 - python_setup
550 -
551 - softmmu_targets= softmmu_bins=()
552 - user_targets= user_bins=()
553 -
554 - for target in ${IUSE_SOFTMMU_TARGETS} ; do
555 - if use "qemu_softmmu_targets_${target}"; then
556 - softmmu_targets+=",${target}-softmmu"
557 - softmmu_bins+=( "qemu-system-${target}" )
558 - fi
559 - done
560 -
561 - for target in ${IUSE_USER_TARGETS} ; do
562 - if use "qemu_user_targets_${target}"; then
563 - user_targets+=",${target}-linux-user"
564 - user_bins+=( "qemu-${target}" )
565 - fi
566 - done
567 -
568 - softmmu_targets=${softmmu_targets#,}
569 - user_targets=${user_targets#,}
570 -
571 - [[ -n ${softmmu_targets} ]] && qemu_src_configure "softmmu"
572 - [[ -n ${user_targets} ]] && qemu_src_configure "user"
573 - qemu_src_configure "tools"
574 -}
575 -
576 -src_compile() {
577 - if [[ -n ${user_targets} ]]; then
578 - cd "${S}/user-build"
579 - default
580 - fi
581 -
582 - if [[ -n ${softmmu_targets} ]]; then
583 - cd "${S}/softmmu-build"
584 - default
585 - fi
586 -
587 - cd "${S}/tools-build"
588 - default
589 -}
590 -
591 -src_test() {
592 - if [[ -n ${softmmu_targets} ]]; then
593 - cd "${S}/softmmu-build"
594 - pax-mark m */qemu-system-* #515550
595 - emake -j1 check
596 - emake -j1 check-report.html
597 - fi
598 -}
599 -
600 -qemu_python_install() {
601 - python_domodule "${S}/scripts/qmp/qmp.py"
602 -
603 - python_doscript "${S}/scripts/kvm/vmxcap"
604 - python_doscript "${S}/scripts/qmp/qmp-shell"
605 - python_doscript "${S}/scripts/qmp/qemu-ga-client"
606 -}
607 -
608 -# Generate binfmt support files.
609 -# - /etc/init.d/qemu-binfmt script which registers the user handlers (openrc)
610 -# - /usr/share/qemu/binfmt.d/qemu.conf (for use with systemd-binfmt)
611 -generate_initd() {
612 - local out="${T}/qemu-binfmt"
613 - local out_systemd="${T}/qemu.conf"
614 - local d="${T}/binfmt.d"
615 -
616 - einfo "Generating qemu binfmt scripts and configuration files"
617 -
618 - # Generate the debian fragments first.
619 - mkdir -p "${d}"
620 - "${S}"/scripts/qemu-binfmt-conf.sh \
621 - --debian \
622 - --exportdir "${d}" \
623 - --qemu-path "${EPREFIX}/usr/bin" \
624 - || die
625 - # Then turn the fragments into a shell script we can source.
626 - sed -E -i \
627 - -e 's:^([^ ]+) (.*)$:\1="\2":' \
628 - "${d}"/* || die
629 -
630 - # Generate the init.d script by assembling the fragments from above.
631 - local f qcpu package interpreter magic mask
632 - cat "${FILESDIR}"/qemu-binfmt.initd.head >"${out}" || die
633 - for f in "${d}"/qemu-* ; do
634 - source "${f}"
635 -
636 - # Normalize the cpu logic like we do in the init.d for the native cpu.
637 - qcpu=${package#qemu-}
638 - case ${qcpu} in
639 - arm*) qcpu="arm";;
640 - mips*) qcpu="mips";;
641 - ppc*) qcpu="ppc";;
642 - s390*) qcpu="s390";;
643 - sh*) qcpu="sh";;
644 - sparc*) qcpu="sparc";;
645 - esac
646 -
647 - cat <<EOF >>"${out}"
648 - if [ "\${cpu}" != "${qcpu}" -a -x "${interpreter}" ] ; then
649 - echo ':${package}:M::${magic}:${mask}:${interpreter}:'"\${QEMU_BINFMT_FLAGS}" >/proc/sys/fs/binfmt_misc/register
650 - fi
651 -EOF
652 -
653 - echo ":${package}:M::${magic}:${mask}:${interpreter}:OC" >>"${out_systemd}"
654 -
655 - done
656 - cat "${FILESDIR}"/qemu-binfmt.initd.tail >>"${out}" || die
657 -}
658 -
659 -src_install() {
660 - if [[ -n ${user_targets} ]]; then
661 - cd "${S}/user-build"
662 - emake DESTDIR="${ED}" install
663 -
664 - # Install binfmt handler init script for user targets.
665 - generate_initd
666 - doinitd "${T}/qemu-binfmt"
667 -
668 - # Install binfmt/qemu.conf.
669 - insinto "/usr/share/qemu/binfmt.d"
670 - doins "${T}/qemu.conf"
671 - fi
672 -
673 - if [[ -n ${softmmu_targets} ]]; then
674 - cd "${S}/softmmu-build"
675 - emake DESTDIR="${ED}" install
676 -
677 - # This might not exist if the test failed. #512010
678 - [[ -e check-report.html ]] && dohtml check-report.html
679 -
680 - if use kernel_linux; then
681 - udev_newrules "${FILESDIR}"/65-kvm.rules-r1 65-kvm.rules
682 - fi
683 -
684 - if use python; then
685 - python_foreach_impl qemu_python_install
686 - fi
687 - fi
688 -
689 - cd "${S}/tools-build"
690 - emake DESTDIR="${ED}" install
691 -
692 - # Disable mprotect on the qemu binaries as they use JITs to be fast #459348
693 - pushd "${ED}"/usr/bin >/dev/null
694 - pax-mark mr "${softmmu_bins[@]}" "${user_bins[@]}" # bug 575594
695 - popd >/dev/null
696 -
697 - # Install config file example for qemu-bridge-helper
698 - insinto "/etc/qemu"
699 - doins "${FILESDIR}/bridge.conf"
700 -
701 - cd "${S}"
702 - dodoc Changelog MAINTAINERS docs/specs/pci-ids.txt
703 - newdoc pc-bios/README README.pc-bios
704 - dodoc docs/qmp-*.txt
705 -
706 - if [[ -n ${softmmu_targets} ]]; then
707 - # Remove SeaBIOS since we're using the SeaBIOS packaged one
708 - rm "${ED}/usr/share/qemu/bios.bin"
709 - rm "${ED}/usr/share/qemu/bios-256k.bin"
710 - if use qemu_softmmu_targets_x86_64 || use qemu_softmmu_targets_i386; then
711 - dosym ../seabios/bios.bin /usr/share/qemu/bios.bin
712 - dosym ../seabios/bios-256k.bin /usr/share/qemu/bios-256k.bin
713 - fi
714 -
715 - # Remove vgabios since we're using the seavgabios packaged one
716 - rm "${ED}/usr/share/qemu/vgabios.bin"
717 - rm "${ED}/usr/share/qemu/vgabios-cirrus.bin"
718 - rm "${ED}/usr/share/qemu/vgabios-qxl.bin"
719 - rm "${ED}/usr/share/qemu/vgabios-stdvga.bin"
720 - rm "${ED}/usr/share/qemu/vgabios-virtio.bin"
721 - rm "${ED}/usr/share/qemu/vgabios-vmware.bin"
722 - if use qemu_softmmu_targets_x86_64 || use qemu_softmmu_targets_i386; then
723 - dosym ../seavgabios/vgabios-isavga.bin /usr/share/qemu/vgabios.bin
724 - dosym ../seavgabios/vgabios-cirrus.bin /usr/share/qemu/vgabios-cirrus.bin
725 - dosym ../seavgabios/vgabios-qxl.bin /usr/share/qemu/vgabios-qxl.bin
726 - dosym ../seavgabios/vgabios-stdvga.bin /usr/share/qemu/vgabios-stdvga.bin
727 - dosym ../seavgabios/vgabios-virtio.bin /usr/share/qemu/vgabios-virtio.bin
728 - dosym ../seavgabios/vgabios-vmware.bin /usr/share/qemu/vgabios-vmware.bin
729 - fi
730 -
731 - # Remove sgabios since we're using the sgabios packaged one
732 - rm "${ED}/usr/share/qemu/sgabios.bin"
733 - if use qemu_softmmu_targets_x86_64 || use qemu_softmmu_targets_i386; then
734 - dosym ../sgabios/sgabios.bin /usr/share/qemu/sgabios.bin
735 - fi
736 -
737 - # Remove iPXE since we're using the iPXE packaged one
738 - rm "${ED}"/usr/share/qemu/pxe-*.rom
739 - if use qemu_softmmu_targets_x86_64 || use qemu_softmmu_targets_i386; then
740 - dosym ../ipxe/8086100e.rom /usr/share/qemu/pxe-e1000.rom
741 - dosym ../ipxe/80861209.rom /usr/share/qemu/pxe-eepro100.rom
742 - dosym ../ipxe/10500940.rom /usr/share/qemu/pxe-ne2k_pci.rom
743 - dosym ../ipxe/10222000.rom /usr/share/qemu/pxe-pcnet.rom
744 - dosym ../ipxe/10ec8139.rom /usr/share/qemu/pxe-rtl8139.rom
745 - dosym ../ipxe/1af41000.rom /usr/share/qemu/pxe-virtio.rom
746 - fi
747 - fi
748 -
749 - DISABLE_AUTOFORMATTING=true
750 - readme.gentoo_create_doc
751 -}
752 -
753 -firmware_abi_change() {
754 - local pv
755 - for pv in ${REPLACING_VERSIONS}; do
756 - if ! version_is_at_least ${FIRMWARE_ABI_VERSION} ${pv}; then
757 - return 0
758 - fi
759 - done
760 - return 1
761 -}
762 -
763 -pkg_postinst() {
764 - if [[ -n ${softmmu_targets} ]] && use kernel_linux; then
765 - udev_reload
766 - fi
767 -
768 - fcaps cap_net_admin /usr/libexec/qemu-bridge-helper
769 -
770 - DISABLE_AUTOFORMATTING=true
771 - readme.gentoo_print_elog
772 -
773 - if use pin-upstream-blobs && firmware_abi_change; then
774 - ewarn "This version of qemu pins new versions of firmware blobs:"
775 - ewarn " $(best_version sys-firmware/edk2-ovmf)"
776 - ewarn " $(best_version sys-firmware/ipxe)"
777 - ewarn " $(best_version sys-firmware/seabios)"
778 - ewarn " $(best_version sys-firmware/sgabios)"
779 - ewarn "This might break resume of hibernated guests (started with a different"
780 - ewarn "firmware version) and live migration to/from qemu versions with different"
781 - ewarn "firmware. Please (cold) restart all running guests. For functional"
782 - ewarn "guest migration ensure that all"
783 - ewarn "hosts run at least"
784 - ewarn " app-emulation/qemu-${FIRMWARE_ABI_VERSION}."
785 - fi
786 -}
787 -
788 -pkg_info() {
789 - echo "Using:"
790 - echo " $(best_version app-emulation/spice-protocol)"
791 - echo " $(best_version sys-firmware/edk2-ovmf)"
792 - if has_version 'sys-firmware/edk2-ovmf[binary]'; then
793 - echo " USE=binary"
794 - else
795 - echo " USE=''"
796 - fi
797 - echo " $(best_version sys-firmware/ipxe)"
798 - echo " $(best_version sys-firmware/seabios)"
799 - if has_version 'sys-firmware/seabios[binary]'; then
800 - echo " USE=binary"
801 - else
802 - echo " USE=''"
803 - fi
804 - echo " $(best_version sys-firmware/sgabios)"
805 -}