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 | |
parent | a164dce1597ab1c115c0b4fe9a1330048f2a695d (diff) | |
download | pkgsrc-399fcb3b9823d5304cd1161f5bb021075b2e408b.tar.gz |
Use the curses framework.
Diffstat (limited to 'games')
-rw-r--r-- | games/moria/Makefile | 6 | ||||
-rw-r--r-- | games/sl/Makefile | 7 |
2 files changed, 7 insertions, 6 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" diff --git a/games/sl/Makefile b/games/sl/Makefile index eb459c57373..e52eb36d611 100644 --- a/games/sl/Makefile +++ b/games/sl/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2015/08/18 07:31:09 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2017/01/03 22:13:11 roy Exp $ # DISTNAME= sl-5.02 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= games MASTER_SITES= -https://github.com/mtoyoda/sl/archive/${PKGVERSION_NOREV}${EXTRACT_SUFX} @@ -10,6 +10,7 @@ MAINTAINER= minoura@NetBSD.org HOMEPAGE= http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/ COMMENT= Animated SL that runs across the terminal when you type `sl' +FAKE_NCURSES= yes DIST_SUBDIR= ${PKGNAME_NOREV} BUILD_TARGET= sl @@ -23,5 +24,5 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/sl.1.ja \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/ja_JP.EUC/man1/sl.1 -.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/curses.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |