[arch-commits] Commit in bochs/repos (4 files)

Kyle Keen kkeen at nymeria.archlinux.org
Tue Jun 3 12:08:57 UTC 2014


    Date: Tuesday, June 3, 2014 @ 14:08:57
  Author: kkeen
Revision: 112550

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
    (from rev 112549, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
    (from rev 112549, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |  110 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   27 ----------
 community-x86_64/PKGBUILD |   27 ----------
 3 files changed, 110 insertions(+), 54 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-06-03 12:08:13 UTC (rev 112549)
+++ community-i686/PKGBUILD	2014-06-03 12:08:57 UTC (rev 112550)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-# Maintainer: Kevin Piche <kevin at archlinux.org>
-
-pkgname=bochs
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/"
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-              --enable-fpu --enable-3dnow --enable-disasm
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 112549, bochs/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-06-03 12:08:57 UTC (rev 112550)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+# Contributor: Kevin Piche <kevin at archlinux.org>
+
+pkgname=bochs
+pkgver=2.6.5
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/"
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+#makedepends=('sdl')
+#optdepends=('sdl: debuggers')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('455020b528ac31477a58779a9a4a96e4')
+
+build() {
+    cd "$srcdir/$pkgname-$pkgver"
+
+    # typos in 2.6.5
+    sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
+
+    # todo, figure out why debuggers won't build (FS#38274)
+    ./configure \
+        --prefix=/usr \
+        --without-wx \
+        --with-x11 \
+        --disable-docbook \
+        --enable-cpu-level=6 \
+        --enable-fpu \
+        --enable-3dnow \
+        --enable-disasm \
+        --enable-smp \
+        --enable-x86-64 \
+        --enable-avx \
+        --enable-long-phy-address \
+        --enable-disasm \
+        --enable-pcidev \
+        --enable-usb
+        #--with-sdl
+        #--enable-debugger
+        #--enable-x86-debugger
+        #--enable-all-optimizations
+        #--enable-plugins
+    #sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+    make
+}
+
+package() {
+    cd "$srcdir/$pkgname-$pkgver"
+    make DESTDIR="$pkgdir" install
+    install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-06-03 12:08:13 UTC (rev 112549)
+++ community-x86_64/PKGBUILD	2014-06-03 12:08:57 UTC (rev 112550)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-# Maintainer: Kevin Piche <kevin at archlinux.org>
-
-pkgname=bochs
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/"
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-              --enable-fpu --enable-3dnow --enable-disasm
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-x86_64/PKGBUILD (from rev 112549, bochs/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-06-03 12:08:57 UTC (rev 112550)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+# Contributor: Kevin Piche <kevin at archlinux.org>
+
+pkgname=bochs
+pkgver=2.6.5
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/"
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+#makedepends=('sdl')
+#optdepends=('sdl: debuggers')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('455020b528ac31477a58779a9a4a96e4')
+
+build() {
+    cd "$srcdir/$pkgname-$pkgver"
+
+    # typos in 2.6.5
+    sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
+
+    # todo, figure out why debuggers won't build (FS#38274)
+    ./configure \
+        --prefix=/usr \
+        --without-wx \
+        --with-x11 \
+        --disable-docbook \
+        --enable-cpu-level=6 \
+        --enable-fpu \
+        --enable-3dnow \
+        --enable-disasm \
+        --enable-smp \
+        --enable-x86-64 \
+        --enable-avx \
+        --enable-long-phy-address \
+        --enable-disasm \
+        --enable-pcidev \
+        --enable-usb
+        #--with-sdl
+        #--enable-debugger
+        #--enable-x86-debugger
+        #--enable-all-optimizations
+        #--enable-plugins
+    #sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+    make
+}
+
+package() {
+    cd "$srcdir/$pkgname-$pkgver"
+    make DESTDIR="$pkgdir" install
+    install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}




More information about the arch-commits mailing list