Date: Sun, 22 Apr 2012 04:05:41 +0400 (MSK) From: Dmitry Marakasov <amdmi3@amdmi3.ru> To: FreeBSD-gnats-submit@FreeBSD.org Cc: neuroworker@gmail.com Subject: ports/167181: [PATCH] games/instead: update to 1.7.0 Message-ID: <20120422000541.5FE50A99@hades.panopticon> Resent-Message-ID: <201204220010.q3M0AAtb022710@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 167181 >Category: ports >Synopsis: [PATCH] games/instead: update to 1.7.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Apr 22 00:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 10 01:33:18 MSK 2012 >Description: - Update to 1.7.0 Added file(s): - files/patch-games-Makefile - files/patch-themes-Makefile Removed file(s): - files/patch-makefile_games - files/patch-makefile_themes Port maintainer (neuroworker@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99_5 (mode: update, diff: CVS) >How-To-Repeat: >Fix: --- instead-1.7.0.patch begins here --- Index: Makefile =================================================================== RCS file: /usr/home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/games/instead/Makefile,v retrieving revision 1.5 diff -u -u -r1.5 Makefile --- Makefile 22 Feb 2012 21:43:33 -0000 1.5 +++ Makefile 21 Apr 2012 23:14:59 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/games/instead/Makefile,v 1.5 2012/02/22 21:43:33 amdmi3 Exp $ PORTNAME= instead -PORTVERSION= 1.6.2 +PORTVERSION= 1.7.0 CATEGORIES= games MASTER_SITES= GOOGLE_CODE \ http://mirror.amdmi3.ru/distfiles/ Index: distinfo =================================================================== RCS file: /usr/home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/games/instead/distinfo,v retrieving revision 1.3 diff -u -u -r1.3 distinfo --- distinfo 22 Feb 2012 21:43:33 -0000 1.3 +++ distinfo 21 Apr 2012 23:15:19 -0000 @@ -1,2 +1,2 @@ -SHA256 (instead_1.6.2.tar.gz) = f87b0c3ce2dba59d90a46e8023d7a145dca99f8da5f281183f86ca8f84e66aa4 -SIZE (instead_1.6.2.tar.gz) = 3891996 +SHA256 (instead_1.7.0.tar.gz) = e74d0168cc7c62d630f64a406ea6f2a09de6f7f320954457d3b01aa4f26cac43 +SIZE (instead_1.7.0.tar.gz) = 3951154 Index: pkg-plist =================================================================== RCS file: /usr/home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/games/instead/pkg-plist,v retrieving revision 1.3 diff -u -u -r1.3 pkg-plist --- pkg-plist 22 Feb 2012 21:43:33 -0000 1.3 +++ pkg-plist 21 Apr 2012 23:19:45 -0000 @@ -20,17 +20,22 @@ %%DATADIR%%/lang/ru.ini %%DATADIR%%/lang/ua.ini %%DATADIR%%/stead/click.lua +%%DATADIR%%/stead/counters.lua %%DATADIR%%/stead/dash.lua %%DATADIR%%/stead/dbg.lua +%%DATADIR%%/stead/dlg.lua %%DATADIR%%/stead/format.lua %%DATADIR%%/stead/gui.lua %%DATADIR%%/stead/hideinv.lua %%DATADIR%%/stead/hotkeys.lua %%DATADIR%%/stead/input.lua %%DATADIR%%/stead/kbd.lua +%%DATADIR%%/stead/nolife.lua +%%DATADIR%%/stead/nouse.lua %%DATADIR%%/stead/object.lua %%DATADIR%%/stead/para.lua %%DATADIR%%/stead/prefs.lua +%%DATADIR%%/stead/proxymenu.lua %%DATADIR%%/stead/quotes.lua %%DATADIR%%/stead/snapshots.lua %%DATADIR%%/stead/sound.lua @@ -40,6 +45,7 @@ %%DATADIR%%/stead/timer.lua %%DATADIR%%/stead/vars.lua %%DATADIR%%/stead/walk.lua +%%DATADIR%%/stead/wroom.lua %%DATADIR%%/stead/xact.lua %%DATADIR%%/themes/arctic/adown.png %%DATADIR%%/themes/arctic/aup.png Index: files/patch-configure.sh =================================================================== RCS file: /usr/home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/games/instead/files/patch-configure.sh,v retrieving revision 1.1 diff -u -u -r1.1 patch-configure.sh --- files/patch-configure.sh 22 Feb 2012 21:43:33 -0000 1.1 +++ files/patch-configure.sh 21 Apr 2012 23:17:17 -0000 @@ -1,24 +1,6 @@ ---- configure.sh.orig 2012-02-09 18:55:00.127534293 +0400 -+++ configure.sh 2012-02-09 18:58:52.803532634 +0400 -@@ -131,14 +131,14 @@ - echo -n "Checking iconv...(" - echo -n "$cc /tmp/iconv-test.c -o iconv-test)..." - --if $cc /tmp/iconv-test.c -o /tmp/iconv-test; then -+if $cc /tmp/iconv-test.c -o /tmp/iconv-test >/dev/null 2>&1; then - CFLAGS="$CFLAGS -D_HAVE_ICONV" - echo "ok" --elif $cc /tmp/iconv-test.c -liconv -o /tmp/iconv-test; then -+elif $cc /tmp/iconv-test.c -liconv -o /tmp/iconv-test >/dev/null 2>&1; then - CFLAGS="$CFLAGS -D_HAVE_ICONV" - LDFLAGS="$LDFLAGS -liconv" - echo "ok, with -liconv" --elif $cc /tmp/iconv-test.c -I/usr/local/include -L/usr/local/lib -liconv -o /tmp/iconv-test; then -+elif $cc /tmp/iconv-test.c -I/usr/local/include -L/usr/local/lib -liconv -o /tmp/iconv-test >/dev/null 2>&1; then - CFLAGS="$CFLAGS -I/usr/local/include -D_HAVE_ICONV" - LDFLAGS="$LDFLAGS -L/usr/local/lib -liconv" - echo "ok, with -liconv and -L/usr/local/lib" -@@ -183,26 +183,7 @@ +--- configure.sh.orig 2012-04-21 18:53:11.000000000 +0400 ++++ configure.sh 2012-04-22 03:17:17.136235398 +0400 +@@ -192,26 +192,7 @@ echo "SDL_CFLAGS=\$(shell sdl-config --cflags)" >> config.make echo "SDL_LFLAGS=\$(shell sdl-config --libs) -lSDL_ttf -lSDL_mixer -lSDL_image" >> config.make echo "ok" @@ -46,7 +28,7 @@ rm -f Rules.make ln -s Rules.make.system Rules.make -@@ -218,16 +199,12 @@ +@@ -227,16 +208,12 @@ echo "ICONPATH=\$(DESTDIR)\$(PREFIX)/share/pixmaps" >> config.make echo "DOCPATH=\$(DESTDIR)\$(PREFIX)/share/doc/instead" >> config.make echo "LANGPATH=\$(DATAPATH)/lang" >> config.make Index: files/patch-games-Makefile =================================================================== RCS file: files/patch-games-Makefile diff -N files/patch-games-Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-games-Makefile 21 Apr 2012 23:17:56 -0000 @@ -0,0 +1,11 @@ +--- games/Makefile.orig 2012-04-21 18:53:07.000000000 +0400 ++++ games/Makefile 2012-04-22 03:17:56.351000837 +0400 +@@ -8,7 +8,7 @@ + echo $$f;\ + if [ ! -d $$f ]; then continue; fi;\ + $(INSTALLD) $(GAMESPATH)/$$f; \ +- tar --exclude=".svn" -cf - -C $$f . | tar -xpf - -C $(GAMESPATH)/$$f;\ ++ tar -cf - -C $$f . | tar -xpf - -C $(GAMESPATH)/$$f;\ + done + + uninstall: Index: files/patch-makefile_games =================================================================== RCS file: files/patch-makefile_games diff -N files/patch-makefile_games --- files/patch-makefile_games 27 Dec 2010 12:15:19 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- games/Makefile.orig 2010-10-12 19:06:34.000000000 +0800 -+++ games/Makefile 2010-12-23 11:55:51.000000000 +0700 -@@ -7,7 +7,7 @@ - for f in *; do \ - if [ ! -d $$f ]; then continue; fi;\ - $(INSTALLD) $(GAMESPATH)/$$f; \ -- tar --exclude=".svn" -c -C $$f . | tar -x -C $(GAMESPATH)/$$f;\ -+ tar -cf - -C $$f . | tar -xpf - -C $(GAMESPATH)/$$f; \ - done - - uninstall: Index: files/patch-makefile_themes =================================================================== RCS file: files/patch-makefile_themes diff -N files/patch-makefile_themes --- files/patch-makefile_themes 27 Dec 2010 12:15:19 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- themes/Makefile.orig 2010-10-12 19:06:32.000000000 +0800 -+++ themes/Makefile 2010-12-23 11:55:51.000000000 +0700 -@@ -8,7 +8,7 @@ - for f in *; do \ - if [ ! -d $$f ]; then continue; fi;\ - $(INSTALLD) $(THEMESPATH)/$$f;\ -- tar --exclude=".svn" -c -C $$f . | tar -x -C $(THEMESPATH)/$$f;\ -+ tar -cf - -C $$f . | tar -xpf - -C $(THEMESPATH)/$$f; \ - done - - uninstall: Index: files/patch-themes-Makefile =================================================================== RCS file: files/patch-themes-Makefile diff -N files/patch-themes-Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-themes-Makefile 21 Apr 2012 23:18:19 -0000 @@ -0,0 +1,11 @@ +--- themes/Makefile.orig 2012-04-21 18:53:05.000000000 +0400 ++++ themes/Makefile 2012-04-22 03:18:19.063048156 +0400 +@@ -8,7 +8,7 @@ + for f in *; do \ + if [ ! -d $$f ]; then continue; fi;\ + $(INSTALLD) $(THEMESPATH)/$$f;\ +- tar --exclude=".svn" -cf - -C $$f . | tar -xpf - -C $(THEMESPATH)/$$f;\ ++ tar -cf - -C $$f . | tar -xpf - -C $(THEMESPATH)/$$f;\ + done + + uninstall: --- instead-1.7.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20120422000541.5FE50A99>