diff options
author | marino <marino@FreeBSD.org> | 2016-02-05 03:29:58 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-02-05 03:29:58 +0800 |
commit | eb42bc6f8ad541c34cd77a7fb2bb2914a02b768b (patch) | |
tree | 863217156ebe53e90753b38ba5115fe0003b6256 /games | |
parent | 865d6ff64dbff4086c66ac6dd1aff781b1d687ac (diff) | |
download | freebsd-ports-gnome-eb42bc6f8ad541c34cd77a7fb2bb2914a02b768b.tar.gz freebsd-ports-gnome-eb42bc6f8ad541c34cd77a7fb2bb2914a02b768b.tar.zst freebsd-ports-gnome-eb42bc6f8ad541c34cd77a7fb2bb2914a02b768b.zip |
games/block: USES+=ncurses, USES+=tar, respect LDFLAGS
Also link exclusively with libncurses (not libtermcap).
Also respect 80 columns.
Diffstat (limited to 'games')
-rw-r--r-- | games/block/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/block/Makefile b/games/block/Makefile index d3c2710cab86..e8760453346a 100644 --- a/games/block/Makefile +++ b/games/block/Makefile @@ -5,14 +5,15 @@ PORTNAME= block PORTVERSION= 0.6 CATEGORIES= games MASTER_SITES= SUNSITE/games/strategy -EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Small text based maze game +USES= ncurses tar:tgz WRKSRC= ${WRKDIR}/blocks MAKEFILE= makefile ALL_TARGET= block bed +MAKE_ARGS= LL="${LDFLAGS} -lncurses" CLL="${LDFLAGS} -lncurses" post-extract: @${RM} -f ${WRKSRC}/block @@ -25,7 +26,8 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/bed.6 ${STAGEDIR}${MAN6PREFIX}/man/man6 @${MKDIR} ${STAGEDIR}${DATADIR} .for file in 1 2 3 4 5 6 - ${INSTALL_DATA} ${WRKSRC}/${file}.block ${STAGEDIR}${DATADIR}/${file}.block + ${INSTALL_DATA} ${WRKSRC}/${file}.block \ + ${STAGEDIR}${DATADIR}/${file}.block .endfor .include <bsd.port.mk> |