diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-08-11 17:01:05 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-08-11 17:01:05 +0800 |
commit | 68cb87e12199ab8cbb82829a510d5c89ccd0b79d (patch) | |
tree | 2b1a86fe3cd6eeddb6de38a6953313830bb8e52b /net/tcpstat | |
parent | b078a7c1c1448903f766e4d6b671230cd8dac96a (diff) | |
download | freebsd-ports-gnome-68cb87e12199ab8cbb82829a510d5c89ccd0b79d.tar.gz freebsd-ports-gnome-68cb87e12199ab8cbb82829a510d5c89ccd0b79d.tar.zst freebsd-ports-gnome-68cb87e12199ab8cbb82829a510d5c89ccd0b79d.zip |
- Add LICENSE_FILE
- Switch to options helpers
Diffstat (limited to 'net/tcpstat')
-rw-r--r-- | net/tcpstat/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tcpstat/Makefile b/net/tcpstat/Makefile index 3131e410ec1e..952ccbd6461a 100644 --- a/net/tcpstat/Makefile +++ b/net/tcpstat/Makefile @@ -10,19 +10,19 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Program to report various network statistics LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes PLIST_FILES= bin/tcpstat bin/tcpprof \ man/man1/tcpprof.1.gz man/man1/tcpstat.1.gz - PORTDOCS= * -DOCS= AUTHORS ChangeLog README doc/Tips_and_Tricks.txt OPTIONS_DEFINE= DOCS -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS ChangeLog README doc/Tips_and_Tricks.txt \ + ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |