misc/nms: document ncurses, honor CFLAGS and LDFLAGS
Approved by: just-fix-it + ncurses blanket
This commit is contained in:
parent
43ac9265df
commit
35e6a8f401
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=420682
2 changed files with 10 additions and 5 deletions
|
@ -4,6 +4,7 @@
|
|||
PORTNAME= nms
|
||||
PORTVERSION= 0.2.1
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= misc
|
||||
|
||||
|
@ -12,7 +13,7 @@ COMMENT= Recreate decrypting text effect from the Sneakers movie
|
|||
|
||||
LICENSE= GPLv3
|
||||
|
||||
USES= gmake
|
||||
USES= gmake ncurses
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= bartobri
|
||||
GH_PROJECT= no-more-secrets
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
--- Makefile.orig 2016-04-30 01:05:20 UTC
|
||||
--- Makefile.orig 2016-07-14 12:48:22 UTC
|
||||
+++ Makefile
|
||||
@@ -2,7 +2,7 @@ BIN=bin
|
||||
@@ -14,9 +14,9 @@ BIN=bin
|
||||
OBJ=obj
|
||||
SRC=src
|
||||
|
||||
-CC = gcc
|
||||
-CFLAGS = -Wextra -Wall
|
||||
-LDLIBS = -lncursesw
|
||||
+CC ?= gcc
|
||||
CFLAGS = -Wextra -Wall
|
||||
LDLIBS = -lncurses
|
||||
+CFLAGS ?= -Wextra -Wall
|
||||
+LDLIBS = $(LDFLAGS) -lncursesw
|
||||
DARWIN_LDLIBS = -lncurses
|
||||
NCURSES_H = /usr/include/ncurses.h
|
||||
|
||||
|
|
Loading…
Reference in a new issue