diff options
author | tobik <tobik@FreeBSD.org> | 2018-06-12 22:21:26 +0800 |
---|---|---|
committer | tobik <tobik@FreeBSD.org> | 2018-06-12 22:21:26 +0800 |
commit | dd04efc2351d900384e8d7ff8807ab49238dfdd1 (patch) | |
tree | b81950417844abe9b4975318eec7edcd5bf3da66 /print/py-fonttools | |
parent | 7647c607342839de7e9abad2719272cbd57dbc90 (diff) | |
download | freebsd-ports-gnome-dd04efc2351d900384e8d7ff8807ab49238dfdd1.tar.gz freebsd-ports-gnome-dd04efc2351d900384e8d7ff8807ab49238dfdd1.tar.zst freebsd-ports-gnome-dd04efc2351d900384e8d7ff8807ab49238dfdd1.zip |
print/py-fonttools: Fix man page install location
The man page is currently installed in share/man/man1 and not
man/man1. uniquefiles cannot do it's job and {py27,py3*}-fonttools
cannot be installed concurrently as a result.
PR: 228014
Submitted by: Ting-Wei Lan <lantw44@gmail.com>
Approved by: python (maintainer timeout, 1 month)
Diffstat (limited to 'print/py-fonttools')
-rw-r--r-- | print/py-fonttools/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/print/py-fonttools/Makefile b/print/py-fonttools/Makefile index e516d140e5ab..4a7586080528 100644 --- a/print/py-fonttools/Makefile +++ b/print/py-fonttools/Makefile @@ -3,6 +3,7 @@ PORTNAME= fonttools PORTVERSION= 3.26.0 +PORTREVISION= 1 CATEGORIES= print python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,9 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= python zip USE_PYTHON= autoplist concurrent distutils +MAKE_ENV= FONTTOOLS_MANPATH="man" NO_ARCH= yes -post-patch: - @${REINPLACE_CMD} -e 's|share/man/man1|man/man1|g' ${WRKSRC}/setup.py - .include <bsd.port.mk> |