diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-01-25 23:53:39 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-01-25 23:53:39 +0000 |
commit | 4903be6983f335aa28414b6a422e9465aecba4d3 (patch) | |
tree | d6190229ff12bc26c85a1f90d824ffc256669418 | |
parent | Update to 2.6 (diff) |
Update to 1.4
PR: 47480
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Notes
Notes:
svn path=/head/; revision=74012
-rw-r--r-- | games/galaxis/Makefile | 4 | ||||
-rw-r--r-- | games/galaxis/distinfo | 2 | ||||
-rw-r--r-- | games/galaxis/files/patch-ab | 50 |
3 files changed, 9 insertions, 47 deletions
diff --git a/games/galaxis/Makefile b/games/galaxis/Makefile index 8bcfe2e3d5ac..df2c9ba22bdc 100644 --- a/games/galaxis/Makefile +++ b/games/galaxis/Makefile @@ -6,9 +6,9 @@ # PORTNAME= galaxis -PORTVERSION= 1.2 +PORTVERSION= 1.4 CATEGORIES= games -MASTER_SITES= http://www.tuxedo.org/~esr/galaxis/ +MASTER_SITES= http://www.catb.org/~esr/galaxis/ MAINTAINER= ports@FreeBSD.org diff --git a/games/galaxis/distinfo b/games/galaxis/distinfo index f982370ea3f3..96edd49db512 100644 --- a/games/galaxis/distinfo +++ b/games/galaxis/distinfo @@ -1 +1 @@ -MD5 (galaxis-1.2.tar.gz) = 9b26f9faa628765972161d164fd96747 +MD5 (galaxis-1.4.tar.gz) = b6d03114551fb40fbbca72e08ef59530 diff --git a/games/galaxis/files/patch-ab b/games/galaxis/files/patch-ab index 0454206d0e44..f048b9293d36 100644 --- a/games/galaxis/files/patch-ab +++ b/games/galaxis/files/patch-ab @@ -1,7 +1,7 @@ -*** galaxis.c Wed Sep 20 17:16:33 1995 ---- /home/andy/tmp/wrk/galaxis.c Tue Jul 1 06:54:10 1997 +*** galaxis.c.orig Sun Apr 21 10:54:51 2002 +--- galaxis.c Sat Jan 25 06:40:30 2003 *************** -*** 8,14 **** +*** 9,15 **** #include <stdio.h> #include <termios.h> @@ -9,7 +9,7 @@ #include <signal.h> #include <ctype.h> #include <assert.h> ---- 8,14 ---- +--- 9,15 ---- #include <stdio.h> #include <termios.h> @@ -18,7 +18,7 @@ #include <ctype.h> #include <assert.h> *************** -*** 131,137 **** +*** 132,138 **** (void) signal(SIGINT,outro); (void) signal(SIGINT,outro); @@ -26,7 +26,7 @@ if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) (void)signal(SIGQUIT,outro); ---- 131,137 ---- +--- 132,138 ---- (void) signal(SIGINT,outro); (void) signal(SIGINT,outro); @@ -34,41 +34,3 @@ if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) (void)signal(SIGQUIT,outro); -*************** -*** 540,555 **** - { - if (board[cury][curx] & S_LIFEBOAT) - { -! board[cury][curx] |= S_BOATSEEN; -! prompt("You found a lifeboat!"); -! beep(); -! turn++; -! boatsfound++; -! } -! else if (board[cury][curx] & S_BOATSEEN) -! { -! prompt("This lifeboat is already visible."); -! beep(); - } - else - { ---- 540,558 ---- - { - if (board[cury][curx] & S_LIFEBOAT) - { -! if (board[cury][curx] & S_BOATSEEN) -! { -! prompt("This lifeboat is already visible."); -! beep(); -! } -! else -! { -! board[cury][curx] |= S_BOATSEEN; -! prompt("You found a lifeboat!"); -! beep(); -! turn++; -! boatsfound++; -! } - } - else - { |