diff options
author | pi <pi@FreeBSD.org> | 2016-07-30 20:01:20 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2016-07-30 20:01:20 +0800 |
commit | d2a859d2eca0c70dbcd4f54adfaeb2ce3ac312cd (patch) | |
tree | b4adeab7d813c45b5204fab7bb75e509091cbbc9 /dns | |
parent | e74ceda6c90dca2c88fcdb73dcd298854d1f2b26 (diff) | |
download | freebsd-ports-graphics-d2a859d2eca0c70dbcd4f54adfaeb2ce3ac312cd.tar.gz freebsd-ports-graphics-d2a859d2eca0c70dbcd4f54adfaeb2ce3ac312cd.tar.zst freebsd-ports-graphics-d2a859d2eca0c70dbcd4f54adfaeb2ce3ac312cd.zip |
dns/dnsviz: fix man pages
Man pages are installed to the wrong directory. Consequently, they are not
compressed and also don't work. Fix is simple and attached.
PR: 211294
Submitted by: Nikolai Lifanov <lifanov@mail.lifanov.com>
Diffstat (limited to 'dns')
-rw-r--r-- | dns/dnsviz/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dns/dnsviz/Makefile b/dns/dnsviz/Makefile index 218210245d0..c6975aa17a3 100644 --- a/dns/dnsviz/Makefile +++ b/dns/dnsviz/Makefile @@ -2,6 +2,7 @@ PORTNAME= dnsviz PORTVERSION= 0.5.4 +PORTREVISION= 1 DISTVERSIONPREFIX=v CATEGORIES= dns @@ -21,4 +22,7 @@ PYDISTUTILS_INSTALLNOSINGLE= yes BROKEN_FreeBSD_9= dependency py-m2crypto requires OpenSSL 1.0.1e+. +post-patch: + @${REINPLACE_CMD} -e "s|share/man/man1|man/man1|" ${WRKSRC}/setup.py + .include <bsd.port.mk> |