diff options
author | Robert Buchholz <rbu@gentoo.org> | 2008-05-04 18:59:11 +0000 |
---|---|---|
committer | Robert Buchholz <rbu@gentoo.org> | 2008-05-04 18:59:11 +0000 |
commit | 1247cac260274a9961da13969a0a71976b2322e2 (patch) | |
tree | 55f1ff2927d0de376ac06494d61584e0f1c09ad0 /app-emulation/xen-tools/files | |
parent | [Bug 219598] [PATCH] sys-libs/uclibc-0.9.28.3 - backport of splice(2), tee(2)... (diff) | |
download | gentoo-2-1247cac260274a9961da13969a0a71976b2322e2.tar.gz gentoo-2-1247cac260274a9961da13969a0a71976b2322e2.tar.bz2 gentoo-2-1247cac260274a9961da13969a0a71976b2322e2.zip |
Version bump to the Xen 3.2.1 release (bug #219339), thanks to Troy Bowman
for testig. Disable magic building of QEMU documentation (bug #192427).
(Portage version: 2.1.5_rc4)
Diffstat (limited to 'app-emulation/xen-tools/files')
-rw-r--r-- | app-emulation/xen-tools/files/xen-tools-3.2.1-qemu-nodocs.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-emulation/xen-tools/files/xen-tools-3.2.1-qemu-nodocs.patch b/app-emulation/xen-tools/files/xen-tools-3.2.1-qemu-nodocs.patch new file mode 100644 index 000000000000..d112dd4ac438 --- /dev/null +++ b/app-emulation/xen-tools/files/xen-tools-3.2.1-qemu-nodocs.patch @@ -0,0 +1,36 @@ +Introduce a configure option to disable building of qemu documentation. +Gentoo Bug #192427 + +Index: xen-3.2.1/tools/ioemu/configure +=================================================================== +--- xen-3.2.1.orig/tools/ioemu/configure ++++ xen-3.2.1/tools/ioemu/configure +@@ -214,6 +214,8 @@ for opt do + ;; + --disable-sdl) sdl="no" + ;; ++ --enable-docs) build_docs="yes" ++ ;; + --enable-coreaudio) coreaudio="yes" + ;; + --enable-alsa) alsa="yes" +@@ -295,6 +297,7 @@ echo " --enable-coreaudio enable + echo " --enable-alsa enable ALSA audio driver" + echo " --enable-fmod enable FMOD audio driver" + echo " --enabled-dsound enable DirectSound audio driver" ++echo " --enable-docs enable building of docs (requires texi2html and pod2man)" + echo " --disable-vnc-tls disable TLS encryption for VNC server" + echo " --enable-system enable all system emulation targets" + echo " --disable-system disable all system emulation targets" +@@ -576,8 +579,9 @@ EOF + fi + + # Check if tools are available to build documentation. +-if [ -x "`which texi2html`" ] && [ -x "`which pod2man`" ]; then +- build_docs="yes" ++if [ ! -x "`which texi2html`" ] || [ ! -x "`which pod2man`" ]; then ++ echo "Missing texi2html or pod2man, will not build docs" ++ build_docs="no" + fi + + if test "$mingw32" = "yes" ; then |