diff options
author | marino <marino@FreeBSD.org> | 2016-01-31 22:44:32 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-01-31 22:44:32 +0800 |
commit | c2f1f92ad80d37df671fdf875caa45bde8474cc2 (patch) | |
tree | abd8faaed969234dd797366c7b0fbee5f990eaea /editors/puff | |
parent | 119ce6a59c3c339665567d91a3a1e3e34658af08 (diff) | |
download | freebsd-ports-gnome-c2f1f92ad80d37df671fdf875caa45bde8474cc2.tar.gz freebsd-ports-gnome-c2f1f92ad80d37df671fdf875caa45bde8474cc2.tar.zst freebsd-ports-gnome-c2f1f92ad80d37df671fdf875caa45bde8474cc2.zip |
editors/puff: document ncurses rqmt (USES+=ncurses), respect LDFLAGS
approved by: infrastructure blanket
Diffstat (limited to 'editors/puff')
-rw-r--r-- | editors/puff/Makefile | 1 | ||||
-rw-r--r-- | editors/puff/files/patch-Makefile | 13 |
2 files changed, 11 insertions, 3 deletions
diff --git a/editors/puff/Makefile b/editors/puff/Makefile index f199690fed0e..7a7371e706d5 100644 --- a/editors/puff/Makefile +++ b/editors/puff/Makefile @@ -10,6 +10,7 @@ MASTER_SITES= http://devpit.org/puff/ \ MAINTAINER= bilbo@hobbiton.org COMMENT= Simple and efficient text editor +USES= ncurses PLIST_FILES= bin/puff etc/puff.conf.sample .include <bsd.port.mk> diff --git a/editors/puff/files/patch-Makefile b/editors/puff/files/patch-Makefile index 4fb4ee4b8cf0..631e6d9b4628 100644 --- a/editors/puff/files/patch-Makefile +++ b/editors/puff/files/patch-Makefile @@ -1,6 +1,13 @@ ---- ./Makefile.orig 2007-11-04 09:49:37.000000000 +0100 -+++ ./Makefile 2014-03-06 16:27:34.118280667 +0100 -@@ -9,9 +9,10 @@ +--- Makefile.orig 2007-11-04 08:49:37 UTC ++++ Makefile +@@ -3,15 +3,16 @@ CFLAGS += -Wall + #CFLAGS += -DDEBUG -g + OBJS = shared.o editfile.o keys.o puff.o + HEAD = shared.h editfile.h keys.h +-LIBS = -lcurses -lm ++LIBS = ${LDFLAGS} -lncurses -lm + + all: fortune puff fortune: -@fortune install: all |