[Lunar-commits] r23037 - moonbase/trunk/devel/qemu
Chad Kittel
v3rt1g0 at lunar-linux.org
Wed Jan 24 05:01:30 CET 2007
Author: v3rt1g0
Date: 2007-01-24 05:01:30 +0100 (Wed, 24 Jan 2007)
New Revision: 23037
Modified:
moonbase/trunk/devel/qemu/BUILD
moonbase/trunk/devel/qemu/DEPENDS
moonbase/trunk/devel/qemu/DETAILS
Log:
Misc Tidy: qemu (0.8.2)
* DEPENDS: fixes a bug in the optional_depends for alsa-lib
* DEPENDS: some additional cosmetics
* BUILD: makes use of default_build now
* BUILD: makes use of gather_docs
* DETAILS: nothign but cosmetics
Modified: moonbase/trunk/devel/qemu/BUILD
===================================================================
--- moonbase/trunk/devel/qemu/BUILD 2007-01-23 22:49:30 UTC (rev 23036)
+++ moonbase/trunk/devel/qemu/BUILD 2007-01-24 04:01:30 UTC (rev 23037)
@@ -5,18 +5,13 @@
OPTS+=" --disable-gcc-check"
fi
- if [ -e /usr/X11R6/lib/libX11.a ]; then
- ./configure --prefix=/usr $OPTS
- else
- ./configure --prefix=/usr \
- --target-list="i386-user i386-softmmu arm-user sparc-user ppc-user" \
- $OPTS
- fi &&
- default_make &&
- mkdir -p $DOCUMENT_DIRECTORY/$MODULE &&
- cp TODO $DOCUMENT_DIRECTORY/$MODULE/ &&
- if module_installed teTeX ; then
- cp qemu-doc.html $DOCUMENT_DIRECTORY/$MODULE/
+ if [ ! -e /usr/X11R6/lib/libX11.a ]; then
+ OPTS+=" --target-list=i386-user,i386-softmmu,arm-user,sparc-user,ppc-user"
fi
-
+
+ default_build &&
+
+ # qemu-doc.html may not exist, but it will be ignored if that is the case
+ gather_docs TODO qemu-doc.html
+
) > $C_FIFO 2>&1
Modified: moonbase/trunk/devel/qemu/DEPENDS
===================================================================
--- moonbase/trunk/devel/qemu/DEPENDS 2007-01-23 22:49:30 UTC (rev 23036)
+++ moonbase/trunk/devel/qemu/DEPENDS 2007-01-24 04:01:30 UTC (rev 23037)
@@ -1,3 +1,6 @@
-depends autoconf &&
-optional_depends SDL "" "--disable-sdl --disable-gfx-check" "for gui qemu support" &&
-optional_depends alsa-lib "--enable-alsa" "for ALSA sound support"
+depends autoconf &&
+
+optional_depends SDL "" "--disable-sdl --disable-gfx-check" \
+ "for gui qemu support" &&
+optional_depends alsa-lib "--enable-alsa" "" \
+ "for ALSA sound support"
Modified: moonbase/trunk/devel/qemu/DETAILS
===================================================================
--- moonbase/trunk/devel/qemu/DETAILS 2007-01-23 22:49:30 UTC (rev 23036)
+++ moonbase/trunk/devel/qemu/DETAILS 2007-01-24 04:01:30 UTC (rev 23037)
@@ -9,8 +9,9 @@
WEB_SITE=http://fabrice.bellard.free.fr/qemu/
ENTERED=20040318
UPDATED=20060728
- SHORT="FAST! processor emulator."
+ SHORT="a fast processor emulator"
MAINTAINER=tchan at lunar-linux.org
+
cat << EOF
By using dynamic translation it achieves a reasonable speed while being easy
to port on new host CPUs. QEMU has two operating modes:
More information about the Lunar-commits
mailing list