Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/xen-tools/files: xen-tools-3.2.1-qemu-nodocs.patch
Date: Sun, 04 May 2008 18:59:13
Message-Id: E1JsjQV-0004ot-LV@stork.gentoo.org
1 rbu 08/05/04 18:59:11
2
3 Added: xen-tools-3.2.1-qemu-nodocs.patch
4 Log:
5 Version bump to the Xen 3.2.1 release (bug #219339), thanks to Troy Bowman
6 for testig. Disable magic building of QEMU documentation (bug #192427).
7 (Portage version: 2.1.5_rc4)
8
9 Revision Changes Path
10 1.1 app-emulation/xen-tools/files/xen-tools-3.2.1-qemu-nodocs.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/files/xen-tools-3.2.1-qemu-nodocs.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/files/xen-tools-3.2.1-qemu-nodocs.patch?rev=1.1&content-type=text/plain
14
15 Index: xen-tools-3.2.1-qemu-nodocs.patch
16 ===================================================================
17 Introduce a configure option to disable building of qemu documentation.
18 Gentoo Bug #192427
19
20 Index: xen-3.2.1/tools/ioemu/configure
21 ===================================================================
22 --- xen-3.2.1.orig/tools/ioemu/configure
23 +++ xen-3.2.1/tools/ioemu/configure
24 @@ -214,6 +214,8 @@ for opt do
25 ;;
26 --disable-sdl) sdl="no"
27 ;;
28 + --enable-docs) build_docs="yes"
29 + ;;
30 --enable-coreaudio) coreaudio="yes"
31 ;;
32 --enable-alsa) alsa="yes"
33 @@ -295,6 +297,7 @@ echo " --enable-coreaudio enable
34 echo " --enable-alsa enable ALSA audio driver"
35 echo " --enable-fmod enable FMOD audio driver"
36 echo " --enabled-dsound enable DirectSound audio driver"
37 +echo " --enable-docs enable building of docs (requires texi2html and pod2man)"
38 echo " --disable-vnc-tls disable TLS encryption for VNC server"
39 echo " --enable-system enable all system emulation targets"
40 echo " --disable-system disable all system emulation targets"
41 @@ -576,8 +579,9 @@ EOF
42 fi
43
44 # Check if tools are available to build documentation.
45 -if [ -x "`which texi2html`" ] && [ -x "`which pod2man`" ]; then
46 - build_docs="yes"
47 +if [ ! -x "`which texi2html`" ] || [ ! -x "`which pod2man`" ]; then
48 + echo "Missing texi2html or pod2man, will not build docs"
49 + build_docs="no"
50 fi
51
52 if test "$mingw32" = "yes" ; then
53
54
55
56 --
57 gentoo-commits@l.g.o mailing list