diff options
author | antoine <antoine@FreeBSD.org> | 2015-12-26 06:35:43 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2015-12-26 06:35:43 +0800 |
commit | 7f859aceb832476ac005dab4a634b99c6ad30a48 (patch) | |
tree | 6ebe749f577579a885d36c0d4860798ac6fb47d3 /textproc | |
parent | 8f8ab9e2214283132eefb4837c9885b6cd558d86 (diff) | |
download | freebsd-ports-gnome-7f859aceb832476ac005dab4a634b99c6ad30a48.tar.gz freebsd-ports-gnome-7f859aceb832476ac005dab4a634b99c6ad30a48.tar.zst freebsd-ports-gnome-7f859aceb832476ac005dab4a634b99c6ad30a48.zip |
Allow use a regular user, some files were unreadable
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/py-Chameleon/Makefile | 6 | ||||
-rw-r--r-- | textproc/py-diff-match-patch/Makefile | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/textproc/py-Chameleon/Makefile b/textproc/py-Chameleon/Makefile index 2dc93b1c5146..f1d272fcaa7a 100644 --- a/textproc/py-Chameleon/Makefile +++ b/textproc/py-Chameleon/Makefile @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= Chameleon -DISTVERSION= 2.24 +PORTVERSION= 2.24 +PORTREVISION= 1 CATEGORIES= textproc www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,4 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python USE_PYTHON= autoplist distutils +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + .include <bsd.port.mk> diff --git a/textproc/py-diff-match-patch/Makefile b/textproc/py-diff-match-patch/Makefile index 2a0140f3a74c..e06156169c95 100644 --- a/textproc/py-diff-match-patch/Makefile +++ b/textproc/py-diff-match-patch/Makefile @@ -3,6 +3,7 @@ PORTNAME= diff-match-patch PORTVERSION= 0.0.0.20121119 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP DISTNAME= ${PORTNAME}-${PORTVERSION:E} @@ -21,6 +22,9 @@ USE_PYTHON= autoplist distutils NO_ARCH= yes +post-extract: + @${CHMOD} -R a+rX ${WRKSRC} + regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test |