1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Patch setup.py to install the man page in ${PREFIX}/man/man1

instead of ${PREFIX}/share/man/man1

Assume matainership (the current maintainer requests being removed
in PR 224219).

PR:		224219
Reviewed by:	ler (mentor)
Approved by:	ler (mentor)
Differential Revision:	https://reviews.freebsd.org/D13902
This commit is contained in:
Craig Leres 2018-01-26 21:56:10 +00:00
parent d7aeb3c3a0
commit 54ec9958ec
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=460054

View File

@ -3,12 +3,12 @@
PORTNAME= qrcode
PORTVERSION= 5.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= kyuupichan@gmail.com
MAINTAINER= leres@FreeBSD.org
COMMENT= QR Code image generator
LICENSE= BSD3CLAUSE
@ -19,4 +19,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8:devel/py-six@${FLAVOR} \
USES= python
USE_PYTHON= autoplist distutils
post-patch:
${REINPLACE_CMD} -e 's|share/\(man/man1\)|\1|' ${WRKSRC}/setup.py
.include <bsd.port.mk>