diff options
author | marino <marino@FreeBSD.org> | 2016-02-05 05:52:07 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-02-05 05:52:07 +0800 |
commit | f9a9b395356067710228cab86d7e06db577da1ec (patch) | |
tree | 06de9e317db64161fa5dcce4fe91c533372ad527 /games | |
parent | f9a2e21a6b20842d4d90a60cae507f374561b418 (diff) | |
download | freebsd-ports-gnome-f9a9b395356067710228cab86d7e06db577da1ec.tar.gz freebsd-ports-gnome-f9a9b395356067710228cab86d7e06db577da1ec.tar.zst freebsd-ports-gnome-f9a9b395356067710228cab86d7e06db577da1ec.zip |
games/npush: document ncurses rqmt (USES+=ncurses), respect LDFLAGS
approved by: infrastructure blanket
Diffstat (limited to 'games')
-rw-r--r-- | games/npush/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/npush/Makefile b/games/npush/Makefile index 0310f9a6a56e..927e3dcb7185 100644 --- a/games/npush/Makefile +++ b/games/npush/Makefile @@ -10,6 +10,7 @@ EXTRACT_SUFX= .tgz MAINTAINER= amdmi3@FreeBSD.org COMMENT= Curses-based logic game similar to Sokoban and Boulder Dash +USES= ncurses PORTDOCS= * PORTDATA= * @@ -20,7 +21,8 @@ post-patch: ${WRKSRC}/npush.cpp do-build: - cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -o npush npush.cpp -lncurses + cd ${WRKSRC} && \ + ${CXX} ${CXXFLAGS} -o npush npush.cpp ${LDFLAGS} -lncurses do-install: ${INSTALL_PROGRAM} ${WRKSRC}/npush ${STAGEDIR}${PREFIX}/bin |