diff options
author | John Marino <marino@FreeBSD.org> | 2016-02-04 21:40:57 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-02-04 21:40:57 +0000 |
commit | 2c4e0c14b139873a084f4760898e4f1f61c45204 (patch) | |
tree | f56ae7202b74e96c74717fec43a88e420acc8338 /games | |
parent | 05437c2958ca5c50696dabb56d627241156646eb (diff) |
games/jzip: USES+= ncurses, link to libncurses, not libtermcap
Notes
Notes:
svn path=/head/; revision=408102
Diffstat (limited to 'games')
-rw-r--r-- | games/jzip/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/jzip/Makefile b/games/jzip/Makefile index 4c01ff740714..6a6d3b9d642a 100644 --- a/games/jzip/Makefile +++ b/games/jzip/Makefile @@ -12,7 +12,7 @@ COMMENT= Text-mode Infocom game interpreter NO_WRKSUBDIR= yes -USES= zip +USES= ncurses zip CPPFLAGS+= -DPOSIX -DHAVE_GETOPT @@ -27,7 +27,7 @@ post-patch: s|^CFLAGS =|CFLAGS +=| ; \ s|-DPOSIX|$${CPPFLAGS}| ; \ s|^LDFLAGS|#LDFLAGS| ; \ - s|-lcurses|-ltermcap|' ${WRKSRC}/Makefile + s|-lcurses|-lncurses|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e \ 's|^void main|int main|' ${WRKSRC}/jzexe.c |