diff options
author | roy <roy@pkgsrc.org> | 2017-01-03 21:50:53 +0000 |
---|---|---|
committer | roy <roy@pkgsrc.org> | 2017-01-03 21:50:53 +0000 |
commit | 399fcb3b9823d5304cd1161f5bb021075b2e408b (patch) | |
tree | 8dc96070df57502425118fd996b499dac8a06457 /games/moria | |
parent | a164dce1597ab1c115c0b4fe9a1330048f2a695d (diff) | |
download | pkgsrc-399fcb3b9823d5304cd1161f5bb021075b2e408b.tar.gz |
Use the curses framework.
Diffstat (limited to 'games/moria')
-rw-r--r-- | games/moria/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/moria/Makefile b/games/moria/Makefile index 3535806c9e5..39de94b16c7 100644 --- a/games/moria/Makefile +++ b/games/moria/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2015/08/18 07:31:08 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2017/01/03 21:50:53 roy Exp $ DISTNAME= um5.5.2 PKGNAME= moria-5.5.2 @@ -15,7 +15,7 @@ HOMEPAGE= http://remarque.org/~grabiner/moria.html COMMENT= Rogue-like game with a different sense of scale than Rogue WRKSRC= ${WRKDIR}/umoria -MAKE_FLAGS+= CURSES=-lncurses VARBASE=${VARBASE} +MAKE_FLAGS+= CURSES=-l${BUILDLINK_LIBNAME.curses} VARBASE=${VARBASE} INSTALLATION_DIRS= bin ${PKGMANDIR}/man6 @@ -28,5 +28,5 @@ do-configure: @${RM} -f ${WRKSRC}/*.[ch] ${WRKSRC}/Makefile @cd ${WRKSRC}; ${LN} -s source/* unix/* . -.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/curses.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |