[arch-commits] Commit in nethack/repos (6 files)

Evangelos Foutras foutrelis at archlinux.org
Mon Sep 7 09:00:42 UTC 2015


    Date: Monday, September 7, 2015 @ 11:00:42
  Author: foutrelis
Revision: 139442

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

Added:
  nethack/repos/community-staging-i686/
  nethack/repos/community-staging-i686/PKGBUILD
    (from rev 139441, nethack/trunk/PKGBUILD)
  nethack/repos/community-staging-i686/nethack.install
    (from rev 139441, nethack/trunk/nethack.install)
  nethack/repos/community-staging-x86_64/
  nethack/repos/community-staging-x86_64/PKGBUILD
    (from rev 139441, nethack/trunk/PKGBUILD)
  nethack/repos/community-staging-x86_64/nethack.install
    (from rev 139441, nethack/trunk/nethack.install)

------------------------------------------+
 community-staging-i686/PKGBUILD          |   75 +++++++++++++++++++++++++++++
 community-staging-i686/nethack.install   |   12 ++++
 community-staging-x86_64/PKGBUILD        |   75 +++++++++++++++++++++++++++++
 community-staging-x86_64/nethack.install |   12 ++++
 4 files changed, 174 insertions(+)

Copied: nethack/repos/community-staging-i686/PKGBUILD (from rev 139441, nethack/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-09-07 09:00:42 UTC (rev 139442)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer : schuay <jakob.gruber at gmail.com>
+# Contributor : kevin <kevin at archlinux.org>
+# Contributor : Christian Schmidt <mucknert at gmx.net>
+# Contributor : Markus Meissner <markus at meissna.de>
+# Contributor : Nick Erdmann <erdmann at date.upb.de>
+
+pkgname=nethack
+pkgver=3.4.3
+pkgrel=9
+pkgdesc='A single player dungeon exploration game'
+arch=('i686' 'x86_64')
+url="http://www.nethack.org/index.html"
+license=('custom')
+depends=('ncurses' 'gzip')
+install=nethack.install
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-${pkgver//.}-src.tgz")
+md5sums=('21479c95990eefe7650df582426457f9')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver/
+
+  sed -e '/define HACKDIR/ s|/usr/games/lib/nethackdir|/var/games/nethack/|' \
+      -e "/^#define COMPRESS\s/ s|/usr/bin/compress|$(which gzip)|" \
+      -e '/^#define COMPRESS_EXTENSION/ s|".Z"|".gz"|' \
+      -e 's|^/\* \(#define DLB\) \*/|\1|' -i include/config.h
+
+  sed -e 's|^/\* \(#define LINUX\) \*/|\1|' \
+      -e 's|^/\* \(#define TIMED_DELAY\) \*/|\1|' -i include/unixconf.h
+
+  sed -e 's|^# \(WINTTYLIB = -lncurses\)|\1|' \
+      -e 's|^WINTTYLIB = -ltermlib|#&|' -i sys/unix/Makefile.src
+
+  # we are setting up for setgid games, so modify all necessary permissions
+  # to allow full access for groups
+
+  sed -e '/^GAMEDIR\s*=/ s|/games/.*$|/var/games/$(GAME)|' \
+      -e '/^GAMEUID\s*=/ s|games|root|' \
+      -e '/^GAMEGRP\s*=/ s|bin|games|' \
+      -e '/^GAMEPERM\s*=/ s|04755|02755|' \
+      -e '/^FILEPERM\s*=/ s|0644|0664|' \
+      -e '/^DIRPERM\s*=/ s|0755|0775|' \
+      -e '/^SHELLDIR\s*=/ s|/games|/usr/bin|' -i sys/unix/Makefile.top
+
+  sed -e "/^MANDIR\s*=/s|/usr/man/man6|$pkgdir/usr/share/man/man6|" -i sys/unix/Makefile.doc
+
+}
+
+build(){
+  cd $srcdir/$pkgname-$pkgver/
+
+  sh sys/unix/setup.sh
+  make
+}
+  
+package() {
+  cd $srcdir/$pkgname-$pkgver/
+
+  install -dm755 $pkgdir/usr/share/{man/man6,doc/nethack}
+  install -dm775 $pkgdir/var/games/
+  make PREFIX=$pkgdir install manpages
+  sed -e "s|HACKDIR=$pkgdir/|HACKDIR=/|" \
+      -e 's|HACK=$HACKDIR|HACK=/usr/lib/nethack|' \
+      -i $pkgdir/usr/bin/nethack
+
+  install -dm755 $pkgdir/usr/lib/nethack
+  mv $pkgdir/var/games/nethack/{nethack,recover} $pkgdir/usr/lib/nethack/
+
+  # FS#43414: /var/games should be owned by root:games.
+  chown root:games $pkgdir/var/games/
+
+  install -Dm644 doc/Guidebook.txt $pkgdir/usr/share/doc/nethack/Guidebook.txt
+      
+  install -Dm644 dat/license $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: nethack/repos/community-staging-i686/nethack.install (from rev 139441, nethack/trunk/nethack.install)
===================================================================
--- community-staging-i686/nethack.install	                        (rev 0)
+++ community-staging-i686/nethack.install	2015-09-07 09:00:42 UTC (rev 139442)
@@ -0,0 +1,12 @@
+pre_upgrade() {
+  if(test `vercmp '3.4.3-5' "$2"` -ge 0); then
+    mv /usr/share/nethack /tmp/nethack-backup
+  fi
+}
+
+post_upgrade() {
+  if(test `vercmp '3.4.3-5' "$2"` -ge 0); then
+    rm -rf /var/games/nethack
+    mv /tmp/nethack-backup /var/games/nethack
+  fi
+}

Copied: nethack/repos/community-staging-x86_64/PKGBUILD (from rev 139441, nethack/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-09-07 09:00:42 UTC (rev 139442)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer : schuay <jakob.gruber at gmail.com>
+# Contributor : kevin <kevin at archlinux.org>
+# Contributor : Christian Schmidt <mucknert at gmx.net>
+# Contributor : Markus Meissner <markus at meissna.de>
+# Contributor : Nick Erdmann <erdmann at date.upb.de>
+
+pkgname=nethack
+pkgver=3.4.3
+pkgrel=9
+pkgdesc='A single player dungeon exploration game'
+arch=('i686' 'x86_64')
+url="http://www.nethack.org/index.html"
+license=('custom')
+depends=('ncurses' 'gzip')
+install=nethack.install
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-${pkgver//.}-src.tgz")
+md5sums=('21479c95990eefe7650df582426457f9')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver/
+
+  sed -e '/define HACKDIR/ s|/usr/games/lib/nethackdir|/var/games/nethack/|' \
+      -e "/^#define COMPRESS\s/ s|/usr/bin/compress|$(which gzip)|" \
+      -e '/^#define COMPRESS_EXTENSION/ s|".Z"|".gz"|' \
+      -e 's|^/\* \(#define DLB\) \*/|\1|' -i include/config.h
+
+  sed -e 's|^/\* \(#define LINUX\) \*/|\1|' \
+      -e 's|^/\* \(#define TIMED_DELAY\) \*/|\1|' -i include/unixconf.h
+
+  sed -e 's|^# \(WINTTYLIB = -lncurses\)|\1|' \
+      -e 's|^WINTTYLIB = -ltermlib|#&|' -i sys/unix/Makefile.src
+
+  # we are setting up for setgid games, so modify all necessary permissions
+  # to allow full access for groups
+
+  sed -e '/^GAMEDIR\s*=/ s|/games/.*$|/var/games/$(GAME)|' \
+      -e '/^GAMEUID\s*=/ s|games|root|' \
+      -e '/^GAMEGRP\s*=/ s|bin|games|' \
+      -e '/^GAMEPERM\s*=/ s|04755|02755|' \
+      -e '/^FILEPERM\s*=/ s|0644|0664|' \
+      -e '/^DIRPERM\s*=/ s|0755|0775|' \
+      -e '/^SHELLDIR\s*=/ s|/games|/usr/bin|' -i sys/unix/Makefile.top
+
+  sed -e "/^MANDIR\s*=/s|/usr/man/man6|$pkgdir/usr/share/man/man6|" -i sys/unix/Makefile.doc
+
+}
+
+build(){
+  cd $srcdir/$pkgname-$pkgver/
+
+  sh sys/unix/setup.sh
+  make
+}
+  
+package() {
+  cd $srcdir/$pkgname-$pkgver/
+
+  install -dm755 $pkgdir/usr/share/{man/man6,doc/nethack}
+  install -dm775 $pkgdir/var/games/
+  make PREFIX=$pkgdir install manpages
+  sed -e "s|HACKDIR=$pkgdir/|HACKDIR=/|" \
+      -e 's|HACK=$HACKDIR|HACK=/usr/lib/nethack|' \
+      -i $pkgdir/usr/bin/nethack
+
+  install -dm755 $pkgdir/usr/lib/nethack
+  mv $pkgdir/var/games/nethack/{nethack,recover} $pkgdir/usr/lib/nethack/
+
+  # FS#43414: /var/games should be owned by root:games.
+  chown root:games $pkgdir/var/games/
+
+  install -Dm644 doc/Guidebook.txt $pkgdir/usr/share/doc/nethack/Guidebook.txt
+      
+  install -Dm644 dat/license $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: nethack/repos/community-staging-x86_64/nethack.install (from rev 139441, nethack/trunk/nethack.install)
===================================================================
--- community-staging-x86_64/nethack.install	                        (rev 0)
+++ community-staging-x86_64/nethack.install	2015-09-07 09:00:42 UTC (rev 139442)
@@ -0,0 +1,12 @@
+pre_upgrade() {
+  if(test `vercmp '3.4.3-5' "$2"` -ge 0); then
+    mv /usr/share/nethack /tmp/nethack-backup
+  fi
+}
+
+post_upgrade() {
+  if(test `vercmp '3.4.3-5' "$2"` -ge 0); then
+    rm -rf /var/games/nethack
+    mv /tmp/nethack-backup /var/games/nethack
+  fi
+}



More information about the arch-commits mailing list