public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-0.11.0.ebuild ChangeLog
@ 2009-10-23 10:11 Luca Barbato (lu_zero)
  0 siblings, 0 replies; 5+ messages in thread
From: Luca Barbato (lu_zero) @ 2009-10-23 10:11 UTC (permalink / raw
  To: gentoo-commits

lu_zero     09/10/23 10:11:21

  Modified:             ChangeLog
  Added:                qemu-0.11.0.ebuild
  Log:
  New release
  (Portage version: 2.1.7.1/cvs/Linux x86_64)

Revision  Changes    Path
1.70                 app-emulation/qemu/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	5 Sep 2009 15:58:52 -0000	1.69
+++ ChangeLog	23 Oct 2009 10:11:20 -0000	1.70
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.69 2009/09/05 15:58:52 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.70 2009/10/23 10:11:20 lu_zero Exp $
+
+*qemu-0.11.0 (23 Oct 2009)
+
+  23 Oct 2009; Luca Barbato <lu_zero@gentoo.org>
+  +files/qemu-0.11.0-mips64-user-fix.patch, +qemu-0.11.0.ebuild:
+  New release
 
 *qemu-0.10.6 (05 Sep 2009)
 



1.1                  app-emulation/qemu/qemu-0.11.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.1&content-type=text/plain

Index: qemu-0.11.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.1 2009/10/23 10:11:20 lu_zero Exp $

EAPI="2"

inherit eutils flag-o-matic toolchain-funcs linux-info

DESCRIPTION="QEMU emulator and ABI wrapper"
HOMEPAGE="http://www.qemu.org"
SRC_URI="http://download.savannah.gnu.org/releases/qemu/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="alsa bluetooth esd gnutls ncurses pulseaudio +sdl vde kqemu kvm"

COMMON_TARGETS="i386 x86_64 arm cris m68k mips mipsel mips64 mips64el ppc ppc64 sh4 sh4eb sparc"

IUSE_SOFTMMU_TARGETS="${COMMON_TARGETS} ppcemb"
IUSE_USER_TARGETS="${COMMON_TARGETS} alpha armeb ppc64abi32 sparc64 sparc32plus"

for target in ${IUSE_SOFTMMU_TARGETS}; do
	IUSE="${IUSE} +qemu_softmmu_targets_${target}"
done

for target in ${IUSE_USER_TARGETS}; do
	IUSE="${IUSE} +qemu_user_targets_${target}"
done

RDEPEND="!app-emulation/qemu-softmmu
	!app-emulation/qemu-user
	!<app-emulation/qemu-0.10.3
	sys-libs/zlib
	alsa? ( >=media-libs/alsa-lib-1.0.13 )
	esd? ( media-sound/esound )
	pulseaudio? ( media-sound/pulseaudio )
	gnutls? ( net-libs/gnutls )
	ncurses? ( sys-libs/ncurses )
	sdl? ( >=media-libs/libsdl-1.2.11 )
	vde? ( net-misc/vde )
	kvm? ( >=sys-kernel/linux-headers-2.6.29 )
	bluetooth? ( net-wireless/bluez )
	kqemu? ( >=app-emulation/kqemu-1.4.0_pre1 )"
#	fdt? ( sys-apps/dtc )

DEPEND="${RDEPEND}
		gnutls? ( dev-util/pkgconfig )
		app-text/texi2html"

src_prepare() {
	# avoid fdt till an updated release appears
	sed -i -e 's:fdt="yes":fdt="no":' configure
	# prevent docs to get automatically installed
	sed -i '/$(DESTDIR)$(docdir)/d' Makefile
	# Alter target makefiles to accept CFLAGS set via flag-o
	sed -i 's/^\(C\|OP_C\|HELPER_C\)FLAGS=/\1FLAGS+=/' \
		Makefile Makefile.target tests/Makefile
	[[ -x /sbin/paxctl ]] && \
		sed -i 's/^VL_LDFLAGS=$/VL_LDFLAGS=-Wl,-z,execheap/' \
			Makefile.target
	# avoid strip
	sed -i 's/$(INSTALL) -m 755 -s/$(INSTALL) -m 755/' \
		Makefile Makefile.target */Makefile
	epatch "${FILESDIR}/qemu-0.11.0-mips64-user-fix.patch"
}

src_configure() {
	local mycc conf_opts audio_opts softmmu_targets user_targets target_list

	for target in ${IUSE_SOFTMMU_TARGETS} ; do
		use "qemu_softmmu_targets_${target}" && \
			softmmu_targets="${softmmu_targets} ${target}-softmmu"
	done

	for target in ${IUSE_USER_TARGETS} ; do
		use "qemu_user_targets_${target}" && \
			user_targets="${user_targets} ${target}-linux-user"
	done

	conf_opts="--disable-darwin-user --disable-bsd-user"

	if test ! -z "${softmmu_targets}" ; then
		einfo "Building following softmmu targets: ${softmmu_targets}"
		use gnutls || conf_opts="$conf_opts --disable-vnc-tls"
		use ncurses || conf_opts="$conf_opts --disable-curses"
		use sdl || conf_opts="$conf_opts --disable-gfx-check --disable-sdl"
		use vde || conf_opts="$conf_opts --disable-vde"
		use bluetooth || conf_opts="$conf_opts --disable-bluez"
		use kqemu || conf_opts="$conf_opts --disable-kqemu"
		use kvm || conf_opts="$conf_opts --disable-kvm"

		audio_opts="oss"
		use alsa && audio_opts="alsa $audio_opts"
		use esd && audio_opts="esd $audio_opts"
		use pulseaudio && audio_opts="pa $audio_opts"
		use sdl && audio_opts="sdl $audio_opts"
	else
		einfo "Disabling softmmu emulation (no softmmu targets specified)"
		conf_opts="$conf_opts --disable-system --disable-vnc-tls \
		--disable-curses --disable-gfx-check --disable-sdl --disable-vde \
		--disable-kqemu --disable-kvm"
	fi

	if test ! -z "${user_targets}" ; then
		einfo "Building following user targets: ${user_targets}"
		conf_opts="$conf_opts --enable-linux-user"
	else
		einfo "Disabling usermode emulation (no usermode targets specified)"
		conf_opts="--disable-linux-user"
	fi

#	use fdt || conf_opts="$conf_opts --disable-fdt"

	conf_opts="$conf_opts --prefix=/usr"

	target_list="${softmmu_targets} ${user_targets}"

	filter-flags -fpie -fstack-protector

	./configure ${conf_opts} \
		--audio-drv-list="$audio_opts" \
		--cc=$(tc-getCC) --host-cc=$(tc-getCC) \
		--target-list="${target_list}" \
		|| die "configure failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"

	exeinto /etc/qemu
	doexe \
		"${FILESDIR}/qemu-ifup" \
		"${FILESDIR}/qemu-ifdown" \
		|| die "qemu interface scripts failed"

	dodoc Changelog MAINTAINERS TODO pci-ids.txt || die
	newdoc pc-bios/README README.pc-bios || die
	dohtml qemu-doc.html qemu-tech.html || die
}

pkg_postinst() {
	elog "You will need the Universal TUN/TAP driver compiled into your"
	elog "kernel or loaded as a module to use the virtual network device"
	elog "if using -net tap.  You will also need support for 802.1d"
	elog "Ethernet Bridging and a configured bridge if using the provided"
	elog "qemu-ifup script from /etc/qemu."
	echo
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-0.11.0.ebuild ChangeLog
@ 2009-11-05 23:39 Patrick Lauer (patrick)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick Lauer (patrick) @ 2009-11-05 23:39 UTC (permalink / raw
  To: gentoo-commits

patrick     09/11/05 23:39:25

  Modified:             qemu-0.11.0.ebuild ChangeLog
  Log:
  Fixing bad --disable-gfx-check, closes #286370
  (Portage version: 2.2_rc48/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-emulation/qemu/qemu-0.11.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?r1=1.1&r2=1.2

Index: qemu-0.11.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qemu-0.11.0.ebuild	23 Oct 2009 10:11:20 -0000	1.1
+++ qemu-0.11.0.ebuild	5 Nov 2009 23:39:24 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.1 2009/10/23 10:11:20 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.2 2009/11/05 23:39:24 patrick Exp $
 
 EAPI="2"
 
@@ -84,7 +84,7 @@
 		einfo "Building following softmmu targets: ${softmmu_targets}"
 		use gnutls || conf_opts="$conf_opts --disable-vnc-tls"
 		use ncurses || conf_opts="$conf_opts --disable-curses"
-		use sdl || conf_opts="$conf_opts --disable-gfx-check --disable-sdl"
+		use sdl || conf_opts="$conf_opts --disable-sdl"
 		use vde || conf_opts="$conf_opts --disable-vde"
 		use bluetooth || conf_opts="$conf_opts --disable-bluez"
 		use kqemu || conf_opts="$conf_opts --disable-kqemu"
@@ -98,7 +98,7 @@
 	else
 		einfo "Disabling softmmu emulation (no softmmu targets specified)"
 		conf_opts="$conf_opts --disable-system --disable-vnc-tls \
-		--disable-curses --disable-gfx-check --disable-sdl --disable-vde \
+		--disable-curses --disable-sdl --disable-vde \
 		--disable-kqemu --disable-kvm"
 	fi
 



1.71                 app-emulation/qemu/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	23 Oct 2009 10:11:20 -0000	1.70
+++ ChangeLog	5 Nov 2009 23:39:24 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.70 2009/10/23 10:11:20 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.71 2009/11/05 23:39:24 patrick Exp $
+
+  05 Nov 2009; Patrick Lauer <patrick@gentoo.org> qemu-0.11.0.ebuild:
+  Fixing bad --disable-gfx-check, closes #286370
 
 *qemu-0.11.0 (23 Oct 2009)
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-0.11.0.ebuild ChangeLog
@ 2009-11-17 23:06 Luca Barbato (lu_zero)
  0 siblings, 0 replies; 5+ messages in thread
From: Luca Barbato (lu_zero) @ 2009-11-17 23:06 UTC (permalink / raw
  To: gentoo-commits

lu_zero     09/11/17 23:06:34

  Modified:             qemu-0.11.0.ebuild ChangeLog
  Log:
  Fix bug #287308
  (Portage version: 2.1.7.4/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  app-emulation/qemu/qemu-0.11.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?r1=1.2&r2=1.3

Index: qemu-0.11.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qemu-0.11.0.ebuild	5 Nov 2009 23:39:24 -0000	1.2
+++ qemu-0.11.0.ebuild	17 Nov 2009 23:06:34 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.2 2009/11/05 23:39:24 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.3 2009/11/17 23:06:34 lu_zero Exp $
 
 EAPI="2"
 
@@ -59,6 +59,8 @@
 	[[ -x /sbin/paxctl ]] && \
 		sed -i 's/^VL_LDFLAGS=$/VL_LDFLAGS=-Wl,-z,execheap/' \
 			Makefile.target
+	# Append CFLAGS while linking
+	sed -i 's/$(LDFLAGS)/$(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS)/' rules.mak
 	# avoid strip
 	sed -i 's/$(INSTALL) -m 755 -s/$(INSTALL) -m 755/' \
 		Makefile Makefile.target */Makefile
@@ -116,7 +118,7 @@
 
 	target_list="${softmmu_targets} ${user_targets}"
 
-	filter-flags -fpie -fstack-protector
+	filter-flags -fPIE
 
 	./configure ${conf_opts} \
 		--audio-drv-list="$audio_opts" \



1.72                 app-emulation/qemu/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	5 Nov 2009 23:39:24 -0000	1.71
+++ ChangeLog	17 Nov 2009 23:06:34 -0000	1.72
@@ -1,6 +1,10 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.71 2009/11/05 23:39:24 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.72 2009/11/17 23:06:34 lu_zero Exp $
+
+  17 Nov 2009; Luca Barbato <lu_zero@gentoo.org> qemu-0.11.0.ebuild:
+  Fix hardened build, thanks to Xake <xake@rymdraket.net> for the patch and
+  the notice in bug #287308
 
   05 Nov 2009; Patrick Lauer <patrick@gentoo.org> qemu-0.11.0.ebuild:
   Fixing bad --disable-gfx-check, closes #286370






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-0.11.0.ebuild ChangeLog
@ 2009-11-22 23:51 Luca Barbato (lu_zero)
  0 siblings, 0 replies; 5+ messages in thread
From: Luca Barbato (lu_zero) @ 2009-11-22 23:51 UTC (permalink / raw
  To: gentoo-commits

lu_zero     09/11/22 23:51:36

  Modified:             qemu-0.11.0.ebuild ChangeLog
  Log:
  use --disable-strip instead of sed
  (Portage version: 2.1.7.4/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  app-emulation/qemu/qemu-0.11.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?r1=1.3&r2=1.4

Index: qemu-0.11.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qemu-0.11.0.ebuild	17 Nov 2009 23:06:34 -0000	1.3
+++ qemu-0.11.0.ebuild	22 Nov 2009 23:51:36 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.3 2009/11/17 23:06:34 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.4 2009/11/22 23:51:36 lu_zero Exp $
 
 EAPI="2"
 
@@ -61,9 +61,6 @@
 			Makefile.target
 	# Append CFLAGS while linking
 	sed -i 's/$(LDFLAGS)/$(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS)/' rules.mak
-	# avoid strip
-	sed -i 's/$(INSTALL) -m 755 -s/$(INSTALL) -m 755/' \
-		Makefile Makefile.target */Makefile
 	epatch "${FILESDIR}/qemu-0.11.0-mips64-user-fix.patch"
 }
 
@@ -80,7 +77,7 @@
 			user_targets="${user_targets} ${target}-linux-user"
 	done
 
-	conf_opts="--disable-darwin-user --disable-bsd-user"
+	conf_opts="--disable-darwin-user --disable-bsd-user --disable-strip"
 
 	if test ! -z "${softmmu_targets}" ; then
 		einfo "Building following softmmu targets: ${softmmu_targets}"



1.73                 app-emulation/qemu/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	17 Nov 2009 23:06:34 -0000	1.72
+++ ChangeLog	22 Nov 2009 23:51:36 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.72 2009/11/17 23:06:34 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.73 2009/11/22 23:51:36 lu_zero Exp $
+
+  22 Nov 2009; Luca Barbato <lu_zero@gentoo.org> qemu-0.11.0.ebuild:
+  use --disable-strip instead of sed
 
   17 Nov 2009; Luca Barbato <lu_zero@gentoo.org> qemu-0.11.0.ebuild:
   Fix hardened build, thanks to Xake <xake@rymdraket.net> for the patch and






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-0.11.0.ebuild ChangeLog
@ 2009-11-23  0:20 Luca Barbato (lu_zero)
  0 siblings, 0 replies; 5+ messages in thread
From: Luca Barbato (lu_zero) @ 2009-11-23  0:20 UTC (permalink / raw
  To: gentoo-commits

lu_zero     09/11/23 00:20:33

  Modified:             qemu-0.11.0.ebuild ChangeLog
  Log:
  Fix bug #286012 also in qemu
  (Portage version: 2.1.7.4/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  app-emulation/qemu/qemu-0.11.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild?r1=1.4&r2=1.5

Index: qemu-0.11.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qemu-0.11.0.ebuild	22 Nov 2009 23:51:36 -0000	1.4
+++ qemu-0.11.0.ebuild	23 Nov 2009 00:20:33 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.4 2009/11/22 23:51:36 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-0.11.0.ebuild,v 1.5 2009/11/23 00:20:33 lu_zero Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="alsa bluetooth esd gnutls ncurses pulseaudio +sdl vde kqemu kvm"
+IUSE="alsa bluetooth esd gnutls ncurses pulseaudio sasl +sdl vde kqemu kvm"
 
 COMMON_TARGETS="i386 x86_64 arm cris m68k mips mipsel mips64 mips64el ppc ppc64 sh4 sh4eb sparc"
 
@@ -37,6 +37,7 @@
 	pulseaudio? ( media-sound/pulseaudio )
 	gnutls? ( net-libs/gnutls )
 	ncurses? ( sys-libs/ncurses )
+	sasl? ( dev-libs/cyrus-sasl )
 	sdl? ( >=media-libs/libsdl-1.2.11 )
 	vde? ( net-misc/vde )
 	kvm? ( >=sys-kernel/linux-headers-2.6.29 )
@@ -83,6 +84,7 @@
 		einfo "Building following softmmu targets: ${softmmu_targets}"
 		use gnutls || conf_opts="$conf_opts --disable-vnc-tls"
 		use ncurses || conf_opts="$conf_opts --disable-curses"
+		use sasl || conf_opts="$conf_opts --disable-vnc-sasl"
 		use sdl || conf_opts="$conf_opts --disable-sdl"
 		use vde || conf_opts="$conf_opts --disable-vde"
 		use bluetooth || conf_opts="$conf_opts --disable-bluez"



1.74                 app-emulation/qemu/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	22 Nov 2009 23:51:36 -0000	1.73
+++ ChangeLog	23 Nov 2009 00:20:33 -0000	1.74
@@ -1,6 +1,10 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.73 2009/11/22 23:51:36 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.74 2009/11/23 00:20:33 lu_zero Exp $
+
+  23 Nov 2009; Luca Barbato <lu_zero@gentoo.org> qemu-0.11.0.ebuild:
+  fix bug #286012, thanks to Thomas Kister <leander256@gmail.com> for the
+  patch
 
   22 Nov 2009; Luca Barbato <lu_zero@gentoo.org> qemu-0.11.0.ebuild:
   use --disable-strip instead of sed






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-11-23  0:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-23 10:11 [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-0.11.0.ebuild ChangeLog Luca Barbato (lu_zero)
  -- strict thread matches above, loose matches on Subject: below --
2009-11-05 23:39 Patrick Lauer (patrick)
2009-11-17 23:06 Luca Barbato (lu_zero)
2009-11-22 23:51 Luca Barbato (lu_zero)
2009-11-23  0:20 Luca Barbato (lu_zero)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox