diff -urN /usr/ports/games/galaxis/Makefile games/galaxis/Makefile --- /usr/ports/games/galaxis/Makefile Mon Nov 11 18:59:35 2002 +++ games/galaxis/Makefile Sat Jan 25 06:36:50 2003 @@ -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 -urN /usr/ports/games/galaxis/distinfo games/galaxis/distinfo --- /usr/ports/games/galaxis/distinfo Wed Aug 2 09:19:58 2000 +++ games/galaxis/distinfo Sat Jan 25 06:37:05 2003 @@ -1 +1 @@ -MD5 (galaxis-1.2.tar.gz) = 9b26f9faa628765972161d164fd96747 +MD5 (galaxis-1.4.tar.gz) = b6d03114551fb40fbbca72e08ef59530 diff -urN /usr/ports/games/galaxis/files/patch-ab games/galaxis/files/patch-ab --- /usr/ports/games/galaxis/files/patch-ab Tue Jul 1 16:12:54 1997 +++ games/galaxis/files/patch-ab Sat Jan 25 06:40:40 2003 @@ -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 #include @@ -9,7 +9,7 @@ #include #include #include ---- 8,14 ---- +--- 9,15 ---- #include #include @@ -18,7 +18,7 @@ #include #include *************** -*** 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 - {