[arch-commits] Commit in fceux/repos (8 files)

Alexander Rødseth arodseth at nymeria.archlinux.org
Sat Sep 28 13:37:38 UTC 2013


    Date: Saturday, September 28, 2013 @ 15:37:37
  Author: arodseth
Revision: 97759

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

Added:
  fceux/repos/community-i686/PKGBUILD
    (from rev 97758, fceux/trunk/PKGBUILD)
  fceux/repos/community-i686/fceux.install
    (from rev 97758, fceux/trunk/fceux.install)
  fceux/repos/community-x86_64/PKGBUILD
    (from rev 97758, fceux/trunk/PKGBUILD)
  fceux/repos/community-x86_64/fceux.install
    (from rev 97758, fceux/trunk/fceux.install)
Deleted:
  fceux/repos/community-i686/PKGBUILD
  fceux/repos/community-i686/fceux.install
  fceux/repos/community-x86_64/PKGBUILD
  fceux/repos/community-x86_64/fceux.install

--------------------------------+
 /PKGBUILD                      |   88 +++++++++++++++++++++++++++++++++++++++
 /fceux.install                 |   30 +++++++++++++
 community-i686/PKGBUILD        |   48 ---------------------
 community-i686/fceux.install   |   13 -----
 community-x86_64/PKGBUILD      |   48 ---------------------
 community-x86_64/fceux.install |   13 -----
 6 files changed, 118 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-09-28 13:37:24 UTC (rev 97758)
+++ community-i686/PKGBUILD	2013-09-28 13:37:37 UTC (rev 97759)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contriutor: Eric Belanger <eric at archlinux.org>
-# Contributor: Jo Christian Bergskås <jcberg at gmail.com>
-
-pkgname=fceux
-pkgver=2.2.1.1
-pkgrel=2
-url='http://www.fceux.com/'
-pkgdesc='Fast and ultra-compatible NES/Famicom emulator'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('sdl' 'gtk2' 'gd' 'desktop-file-utils' 'lua51' 'libgl')
-makedepends=('scons' 'mesa-libgl' 'glu')
-optdepends=('xchm: for viewing the manual')
-install="$pkgname.install"
-source=("https://downloads.sourceforge.net/project/fceultra/Source%20Code/2.2.1%20src/$pkgname-$pkgver.src.tar.gz")
-sha256sums=('afb0b3b8e1d2eea40c59777ef538b69b16164ae53c406106e541099534db828c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  msg2 'Compiling...'
-  scons
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  msg2 'Packaging binaries, data and man-pages...'
-  scons install --prefix="$pkgdir/usr"
-
-  msg2 'Packaging documentation...'
-  install -Dm644 "src/drivers/win/help/$pkgname.chm" \
-    "$pkgdir/usr/share/doc/$pkgname/$pkgname.chm"
-  cp -r documentation/* "$pkgdir/usr/share/doc/$pkgname/"
-  # Removing manpages that are already placed in the right location
-  rm -f "$pkgdir/usr/share/doc/$pkgname/*.6"
-  install -Dm644 changelog.txt "$pkgdir/usr/share/doc/$pkgname/"
-
-  msg2 'Packaging desktop shortcut and icon...'
-  install -Dm644 "$pkgname.desktop" \
-    "$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgname.png" \
-    "$pkgdir/usr/share/pixmaps/$pkgname.png"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fceux/repos/community-i686/PKGBUILD (from rev 97758, fceux/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-09-28 13:37:37 UTC (rev 97759)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contriutor: Eric Belanger <eric at archlinux.org>
+# Contributor: Jo Christian Bergskås <jcberg at gmail.com>
+
+pkgname=fceux
+pkgver=2.2.2
+pkgrel=1
+url='http://www.fceux.com/'
+pkgdesc='Fast and ultra-compatible NES/Famicom emulator'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('sdl' 'gtk2' 'gd' 'desktop-file-utils' 'lua51' 'libgl' 'shared-mime-info')
+makedepends=('scons' 'mesa-libgl' 'glu')
+install='fceux.install'
+source=("https://downloads.sourceforge.net/project/fceultra/Source%20Code/$pkgver%20src/$pkgname-$pkgver.src.tar.gz")
+sha256sums=('804d11bdb4a195f3a580ce5d2d01be877582763378637e16186a22459f5fe5e1')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  scons
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  scons install -i --prefix="$pkgdir/usr"
+
+  # scons install creates usr/share/pixmaps as a regular file, wtf?
+  rm -f "$pkgdir/usr/share/pixmaps"
+
+  install -d "$pkgdir/usr/share/doc/$pkgname"
+  cp -r documentation/* "$pkgdir/usr/share/doc/$pkgname/"
+  install -Dm644 changelog.txt "$pkgdir/usr/share/doc/$pkgname/"
+
+  # desktop shortcut
+  install -Dm644 "$pkgname.desktop" \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "$pkgname.png" \
+    "$pkgdir/usr/share/pixmaps/$pkgname.png"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/fceux.install
===================================================================
--- community-i686/fceux.install	2013-09-28 13:37:24 UTC (rev 97758)
+++ community-i686/fceux.install	2013-09-28 13:37:37 UTC (rev 97759)
@@ -1,13 +0,0 @@
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fceux/repos/community-i686/fceux.install (from rev 97758, fceux/trunk/fceux.install)
===================================================================
--- community-i686/fceux.install	                        (rev 0)
+++ community-i686/fceux.install	2013-09-28 13:37:37 UTC (rev 97759)
@@ -0,0 +1,15 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+#  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-09-28 13:37:24 UTC (rev 97758)
+++ community-x86_64/PKGBUILD	2013-09-28 13:37:37 UTC (rev 97759)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contriutor: Eric Belanger <eric at archlinux.org>
-# Contributor: Jo Christian Bergskås <jcberg at gmail.com>
-
-pkgname=fceux
-pkgver=2.2.1.1
-pkgrel=2
-url='http://www.fceux.com/'
-pkgdesc='Fast and ultra-compatible NES/Famicom emulator'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('sdl' 'gtk2' 'gd' 'desktop-file-utils' 'lua51' 'libgl')
-makedepends=('scons' 'mesa-libgl' 'glu')
-optdepends=('xchm: for viewing the manual')
-install="$pkgname.install"
-source=("https://downloads.sourceforge.net/project/fceultra/Source%20Code/2.2.1%20src/$pkgname-$pkgver.src.tar.gz")
-sha256sums=('afb0b3b8e1d2eea40c59777ef538b69b16164ae53c406106e541099534db828c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  msg2 'Compiling...'
-  scons
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  msg2 'Packaging binaries, data and man-pages...'
-  scons install --prefix="$pkgdir/usr"
-
-  msg2 'Packaging documentation...'
-  install -Dm644 "src/drivers/win/help/$pkgname.chm" \
-    "$pkgdir/usr/share/doc/$pkgname/$pkgname.chm"
-  cp -r documentation/* "$pkgdir/usr/share/doc/$pkgname/"
-  # Removing manpages that are already placed in the right location
-  rm -f "$pkgdir/usr/share/doc/$pkgname/*.6"
-  install -Dm644 changelog.txt "$pkgdir/usr/share/doc/$pkgname/"
-
-  msg2 'Packaging desktop shortcut and icon...'
-  install -Dm644 "$pkgname.desktop" \
-    "$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgname.png" \
-    "$pkgdir/usr/share/pixmaps/$pkgname.png"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fceux/repos/community-x86_64/PKGBUILD (from rev 97758, fceux/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-09-28 13:37:37 UTC (rev 97759)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contriutor: Eric Belanger <eric at archlinux.org>
+# Contributor: Jo Christian Bergskås <jcberg at gmail.com>
+
+pkgname=fceux
+pkgver=2.2.2
+pkgrel=1
+url='http://www.fceux.com/'
+pkgdesc='Fast and ultra-compatible NES/Famicom emulator'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('sdl' 'gtk2' 'gd' 'desktop-file-utils' 'lua51' 'libgl' 'shared-mime-info')
+makedepends=('scons' 'mesa-libgl' 'glu')
+install='fceux.install'
+source=("https://downloads.sourceforge.net/project/fceultra/Source%20Code/$pkgver%20src/$pkgname-$pkgver.src.tar.gz")
+sha256sums=('804d11bdb4a195f3a580ce5d2d01be877582763378637e16186a22459f5fe5e1')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  scons
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  scons install -i --prefix="$pkgdir/usr"
+
+  # scons install creates usr/share/pixmaps as a regular file, wtf?
+  rm -f "$pkgdir/usr/share/pixmaps"
+
+  install -d "$pkgdir/usr/share/doc/$pkgname"
+  cp -r documentation/* "$pkgdir/usr/share/doc/$pkgname/"
+  install -Dm644 changelog.txt "$pkgdir/usr/share/doc/$pkgname/"
+
+  # desktop shortcut
+  install -Dm644 "$pkgname.desktop" \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "$pkgname.png" \
+    "$pkgdir/usr/share/pixmaps/$pkgname.png"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/fceux.install
===================================================================
--- community-x86_64/fceux.install	2013-09-28 13:37:24 UTC (rev 97758)
+++ community-x86_64/fceux.install	2013-09-28 13:37:37 UTC (rev 97759)
@@ -1,13 +0,0 @@
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fceux/repos/community-x86_64/fceux.install (from rev 97758, fceux/trunk/fceux.install)
===================================================================
--- community-x86_64/fceux.install	                        (rev 0)
+++ community-x86_64/fceux.install	2013-09-28 13:37:37 UTC (rev 97759)
@@ -0,0 +1,15 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+#  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list