diff -Naur qemu.orig/.footprint qemu/.footprint --- qemu.orig/.footprint 2011-02-04 20:36:12.167000014 +0500 +++ qemu/.footprint 2011-02-28 00:52:07.884000016 +0500 @@ -41,6 +41,12 @@ -rwxr-xr-x root/root usr/bin/qemu-system-sparc64 -rwxr-xr-x root/root usr/bin/qemu-system-x86_64 -rwxr-xr-x root/root usr/bin/qemu-x86_64 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/qemu-img.1.gz +-rw-r--r-- root/root usr/man/man1/qemu.1.gz +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/qemu-nbd.8.gz drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/qemu/ -rw-r--r-- root/root usr/share/qemu/bamboo.dtb diff -Naur qemu.orig/Pkgfile qemu/Pkgfile --- qemu.orig/Pkgfile 2011-02-20 21:33:29.885000024 +0500 +++ qemu/Pkgfile 2011-03-28 23:46:15.144000082 +0600 @@ -3,7 +3,7 @@ # Maintainer: Thomas Penteker, tek at serverop dot de # Packager: Lucas Hazel, lucas at die dot net dot au # Depends on: libsdl -# Nice to have: kqemu texi2html +# Nice to have: kqemu name=qemu version=0.14.0 @@ -16,15 +16,12 @@ --cc="${CC:=gcc}" \ --host-cc="${CC:=gcc}" \ --sysconfdir=/etc \ - --mandir=/usr/man + --disable-docs make make DESTDIR=$PKG install - # Documentaion will only be installed if texi2html is installed. - - if [ -d "$PKG/usr/share/man" ]; then - mv $PKG/usr/share/man $PKG/usr/man - fi - - rm -rf $PKG/usr/share/doc + make qemu.1 qemu-img.1 qemu-nbd.8 + install -D -m 644 qemu.1 $PKG/usr/man/man1/qemu.1 + install -D -m 644 qemu-img.1 $PKG/usr/man/man1/qemu-img.1 + install -D -m 644 qemu-nbd.8 $PKG/usr/man/man8/qemu-nbd.8 } diff -Naur qemu.orig/README qemu/README --- qemu.orig/README 2010-05-17 22:26:22.289786493 +0600 +++ qemu/README 1970-01-01 05:00:00.000000000 +0500 @@ -1,4 +0,0 @@ - -If you want the man pages, you will need to install texinfo before -building qemu. -