diff options
author | obache <obache> | 2011-08-31 12:13:30 +0000 |
---|---|---|
committer | obache <obache> | 2011-08-31 12:13:30 +0000 |
commit | 5e88e0e0fe018cb71aa319510dd6ff6b804ee9ba (patch) | |
tree | 5155a6ec52f23179cf23eb7acd7895e8cd49d139 /games/zombies | |
parent | f3aa7eafbe2081663af6381b6cc105bba9793640 (diff) | |
download | pkgsrc-5e88e0e0fe018cb71aa319510dd6ff6b804ee9ba.tar.gz |
pkgsrc does not support so old BSDs, then no need to -ltermcap in addition
to -lcurses.
fixes PR#29503.
Diffstat (limited to 'games/zombies')
-rw-r--r-- | games/zombies/distinfo | 4 | ||||
-rw-r--r-- | games/zombies/patches/patch-aa | 14 |
2 files changed, 15 insertions, 3 deletions
diff --git a/games/zombies/distinfo b/games/zombies/distinfo index 32b73a5cbf1..afadfbcdb15 100644 --- a/games/zombies/distinfo +++ b/games/zombies/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.10 2010/01/04 20:55:52 abs Exp $ +$NetBSD: distinfo,v 1.11 2011/08/31 12:13:30 obache Exp $ SHA1 (zombies-1.0.tar.gz) = 5bc4c87211b5aa29edffb7df74ee12c0bbdc408a RMD160 (zombies-1.0.tar.gz) = 006fcb8876f6712178ae7486b15c6a27de6270ee Size (zombies-1.0.tar.gz) = 9482 bytes -SHA1 (patch-aa) = 6e1efbe2def7c7328e7a7e8ceb3ffe6d5814e198 +SHA1 (patch-aa) = b54c11aa5f7c0ba18e0b662a5bc0ec0132b612bf SHA1 (patch-ab) = be8f4baf75ede5154a30617368651ca2df735574 diff --git a/games/zombies/patches/patch-aa b/games/zombies/patches/patch-aa index 1606465d38a..8849bc97f7b 100644 --- a/games/zombies/patches/patch-aa +++ b/games/zombies/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.7 2010/01/04 20:55:52 abs Exp $ +$NetBSD: patch-aa,v 1.8 2011/08/31 12:13:30 obache Exp $ --- Makefile.orig 1999-06-26 14:37:17.000000000 +0000 +++ Makefile @@ -27,6 +27,18 @@ $NetBSD: patch-aa,v 1.7 2010/01/04 20:55:52 abs Exp $ SCOREMODE = 664 # ---- COMPILER OPTIONS ---- +@@ -39,9 +39,9 @@ SIG = -DSIGTYPE=void + # ---- LIBRARIES ---- + + # Older BSDs need -ltermcap +-LIBS = -lcurses -ltermcap ++#LIBS = -lcurses -ltermcap + # Newer BSDs and SysV use just curses +-#LIBS = -lcurses ++LIBS = -lcurses + # ncurses need -DUSE_NCURSES as well + #LIBS = -lncurses + #DEFS = -DUSE_NCURSES @@ -49,9 +49,9 @@ LIBS = -lcurses -ltermcap # ---- INSTALLATION PROGRAMS ---- |