diff options
author | wiz <wiz> | 2015-12-07 09:04:50 +0000 |
---|---|---|
committer | wiz <wiz> | 2015-12-07 09:04:50 +0000 |
commit | b30ff66054888a7646197739f5ff0cf8e0f7646f (patch) | |
tree | ab3313a733a80a7410194340be9c95ae535c81ff /www | |
parent | be22e6aa1b05fac18012bfe8ec4769cc2470c321 (diff) | |
download | pkgsrc-b30ff66054888a7646197739f5ff0cf8e0f7646f.tar.gz |
Fix permissions on meta-files and included cacerts.
Bump PKGREVISION.
Diffstat (limited to 'www')
-rw-r--r-- | www/py-httplib2/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/www/py-httplib2/Makefile b/www/py-httplib2/Makefile index 4a89dff0307..c7ea32f9263 100644 --- a/www/py-httplib2/Makefile +++ b/www/py-httplib2/Makefile @@ -1,14 +1,20 @@ -# $NetBSD: Makefile,v 1.5 2014/06/08 23:26:35 rodent Exp $ +# $NetBSD: Makefile,v 1.6 2015/12/07 09:04:50 wiz Exp $ DISTNAME= httplib2-0.9 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= www python -MASTER_SITES= https://pypi.python.org/packages/source/h/httplib2/ +MASTER_SITES= ${MASTER_SITE_PYPI:=h/httplib2/} MAINTAINER= mj@mjturner.net HOMEPAGE= https://github.com/jcgregorio/httplib2 COMMENT= Comprehensive http client library for Python LICENSE= mit +# permissions are usually wrong +post-install: + ${CHMOD} ${SHAREMODE} ${DESTDIR}${PREFIX}/${PYSITELIB}/${EGG_INFODIR}/* + ${CHMOD} ${SHAREMODE} ${DESTDIR}${PREFIX}/${PYSITELIB}/httplib2/cacerts.txt + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" |