diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-30 20:51:23 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-30 20:51:23 +0000 |
commit | de15db681181f10bff9231581a66d14f96da502e (patch) | |
tree | 84e2695ef888f2609d0a9afccc14b2de99f01d71 /games/galaxis | |
parent | cebda8a7e336b6a79dfb79266c3121e021c40f97 (diff) | |
download | ports-de15db681181f10bff9231581a66d14f96da502e.tar.gz ports-de15db681181f10bff9231581a66d14f96da502e.zip |
Notes
Diffstat (limited to 'games/galaxis')
-rw-r--r-- | games/galaxis/Makefile | 6 | ||||
-rw-r--r-- | games/galaxis/distinfo | 4 | ||||
-rw-r--r-- | games/galaxis/files/patch-aa | 23 | ||||
-rw-r--r-- | games/galaxis/files/patch-ab | 36 |
4 files changed, 6 insertions, 63 deletions
diff --git a/games/galaxis/Makefile b/games/galaxis/Makefile index b566c5511de9..50ae8d5ee060 100644 --- a/games/galaxis/Makefile +++ b/games/galaxis/Makefile @@ -6,14 +6,16 @@ # PORTNAME= galaxis -PORTVERSION= 1.6 +PORTVERSION= 1.7 CATEGORIES= games MASTER_SITES= http://www.catb.org/~esr/galaxis/ MAINTAINER= ports@FreeBSD.org COMMENT= Clone of the nifty little Macintosh game -ALL_TARGET= # empty +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -DNDEBUG" +ALL_TARGET= ${PORTNAME} + MAN6= galaxis.6 PLIST_FILES= bin/galaxis diff --git a/games/galaxis/distinfo b/games/galaxis/distinfo index efe3bf47fab4..9ccb5e9cbd23 100644 --- a/games/galaxis/distinfo +++ b/games/galaxis/distinfo @@ -1,2 +1,2 @@ -MD5 (galaxis-1.6.tar.gz) = eeea1114d144cfe6c75e60740213705b -SIZE (galaxis-1.6.tar.gz) = 14494 +MD5 (galaxis-1.7.tar.gz) = 5251b71f7e7cf0bb57b3f6c2cfc887e3 +SIZE (galaxis-1.7.tar.gz) = 14560 diff --git a/games/galaxis/files/patch-aa b/games/galaxis/files/patch-aa deleted file mode 100644 index 8c039369236e..000000000000 --- a/games/galaxis/files/patch-aa +++ /dev/null @@ -1,23 +0,0 @@ -*** Makefile.orig Wed Dec 6 22:56:38 1995 ---- Makefile Wed Mar 29 20:36:09 2000 -*************** -*** 6,14 **** - V=1.1 - - # Flags for use with the Linux ncurses package (recommended) -! CFLAGS = -g -DNDEBUG # -I/usr/local/include -L/usr/local/lib -! TERMLIB = -lncurses -! CC = gcc - - # Flags for use with stock curses - #CFLAGS = -DNDEBUG ---- 6,14 ---- - V=1.1 - - # Flags for use with the Linux ncurses package (recommended) -! #CFLAGS = -g -DNDEBUG # -I/usr/local/include -L/usr/local/lib -! TERMLIB = -lncurses -lmytinfo -! #CC = gcc - - # Flags for use with stock curses - #CFLAGS = -DNDEBUG diff --git a/games/galaxis/files/patch-ab b/games/galaxis/files/patch-ab deleted file mode 100644 index f048b9293d36..000000000000 --- a/games/galaxis/files/patch-ab +++ /dev/null @@ -1,36 +0,0 @@ -*** galaxis.c.orig Sun Apr 21 10:54:51 2002 ---- galaxis.c Sat Jan 25 06:40:30 2003 -*************** -*** 9,15 **** - - #include <stdio.h> - #include <termios.h> -! #include <curses.h> - #include <signal.h> - #include <ctype.h> - #include <assert.h> ---- 9,15 ---- - - #include <stdio.h> - #include <termios.h> -! #include <ncurses.h> - #include <signal.h> - #include <ctype.h> - #include <assert.h> -*************** -*** 132,138 **** - - (void) signal(SIGINT,outro); - (void) signal(SIGINT,outro); -! (void) signal(SIGIOT,outro); /* for assert(3) */ - if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) - (void)signal(SIGQUIT,outro); - ---- 132,138 ---- - - (void) signal(SIGINT,outro); - (void) signal(SIGINT,outro); -! (void) signal(SIGABRT,outro); /* for assert(3) */ - if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) - (void)signal(SIGQUIT,outro); - |