diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-10-16 05:12:46 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-10-16 05:12:46 +0000 |
commit | 75112db679f47441179af397f505cd940ba26e04 (patch) | |
tree | 2d7e5091988197ca0151ea35ecc788cc2edd836c /misc/nsf | |
parent | b93f221478e6c898eea7b8bf687cf97bde94cb78 (diff) | |
download | ports-75112db679f47441179af397f505cd940ba26e04.tar.gz ports-75112db679f47441179af397f505cd940ba26e04.zip |
Notes
Diffstat (limited to 'misc/nsf')
-rw-r--r-- | misc/nsf/Makefile | 3 | ||||
-rw-r--r-- | misc/nsf/files/patch-Makefile | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/misc/nsf/Makefile b/misc/nsf/Makefile index 992f43251618..15b4be199103 100644 --- a/misc/nsf/Makefile +++ b/misc/nsf/Makefile @@ -20,7 +20,8 @@ MANCOMPRESSED= yes PLIST_FILES= bin/nsf ALL_TARGET= -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/nsf ${PREFIX}/bin ${INSTALL_MAN} ${WRKDIR}/${MAN1} ${PREFIX}/man/man1/ ${GZIP_CMD} ${PREFIX}/man/man1/${MAN1} diff --git a/misc/nsf/files/patch-Makefile b/misc/nsf/files/patch-Makefile new file mode 100644 index 000000000000..6965aea57a94 --- /dev/null +++ b/misc/nsf/files/patch-Makefile @@ -0,0 +1,16 @@ +--- Makefile.orig Sun Oct 16 01:08:35 2005 ++++ Makefile Sun Oct 16 01:08:50 2005 +@@ -1,10 +1,11 @@ +-CFLAGS = -O #-DHPUX ++CFLAGS ?= -O #-DHPUX ++CC ?= cc + LIBS = -lncurses #if HP-UX, -lcurses + OBJS = nsf.o iloop.o + EXE = nsf + LOCAL_BIN = /usr/local/bin + $(EXE): $(OBJS) +- cc $(CFLAGS) -o $@ $(OBJS) $(LIBS) ++ $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) + $(OBJS): nsf.h + install: $(EXE) + strip $(EXE) |