diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-16 18:41:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-16 18:41:00 +0000 |
commit | 82833f7491e3261dcee27cf93fbcdb5a397d21f0 (patch) | |
tree | 02b229dec47c312373f41cb6bf86b87d9ac54964 /app-emulation/qemu | |
parent | drop old (diff) | |
download | gentoo-2-82833f7491e3261dcee27cf93fbcdb5a397d21f0.tar.gz gentoo-2-82833f7491e3261dcee27cf93fbcdb5a397d21f0.tar.bz2 gentoo-2-82833f7491e3261dcee27cf93fbcdb5a397d21f0.zip |
Handle renamed opengl configure flag #543386 by Chase Rayfield.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'app-emulation/qemu')
-rw-r--r-- | app-emulation/qemu/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/qemu/qemu-9999.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-emulation/qemu/ChangeLog b/app-emulation/qemu/ChangeLog index b9b7f3ec095c..bcee236f2c90 100644 --- a/app-emulation/qemu/ChangeLog +++ b/app-emulation/qemu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/qemu # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.315 2015/03/12 10:06:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.316 2015/03/16 18:41:00 vapier Exp $ + + 16 Mar 2015; Mike Frysinger <vapier@gentoo.org> qemu-9999.ebuild: + Handle renamed opengl configure flag #543386 by Chase Rayfield. 12 Mar 2015; Agostino Sarubbo <ago@gentoo.org> qemu-2.2.0.ebuild: Stable for amd64, wrt bug #542910 diff --git a/app-emulation/qemu/qemu-9999.ebuild b/app-emulation/qemu/qemu-9999.ebuild index b81ae13c141f..c19e9d8bbc51 100644 --- a/app-emulation/qemu/qemu-9999.ebuild +++ b/app-emulation/qemu/qemu-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v 1.93 2015/03/11 18:46:46 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v 1.94 2015/03/16 18:41:00 vapier Exp $ EAPI=5 @@ -334,7 +334,7 @@ qemu_src_configure() { $(conf_softmmu ncurses curses) $(conf_softmmu nfs libnfs) $(conf_softmmu numa) - $(conf_softmmu opengl glx) + $(conf_softmmu opengl) $(conf_softmmu png vnc-png) $(conf_softmmu rbd) $(conf_softmmu sasl vnc-sasl) @@ -393,7 +393,7 @@ qemu_src_configure() { gcc-specs-pie && conf_opts+=( --enable-pie ) fi - einfo "./configure ${conf_opts[*]}" + einfo "../configure ${conf_opts[*]}" cd "${builddir}" ../configure "${conf_opts[@]}" || die "configure failed" |