svn commit: r332074 - head/www/py-httplib2
Li-Wen Hsu
lwhsu at FreeBSD.org
Wed Oct 30 06:09:46 UTC 2013
Author: lwhsu
Date: Wed Oct 30 06:09:45 2013
New Revision: 332074
URL: http://svnweb.freebsd.org/changeset/ports/332074
Log:
- Fix permission of extracted files
PR: ports/183220
Submitted by: Douglas William Thrift <douglas at douglasthrift.net>
Modified:
head/www/py-httplib2/Makefile
Modified: head/www/py-httplib2/Makefile
==============================================================================
--- head/www/py-httplib2/Makefile Wed Oct 30 05:56:08 2013 (r332073)
+++ head/www/py-httplib2/Makefile Wed Oct 30 06:09:45 2013 (r332074)
@@ -3,6 +3,7 @@
PORTNAME= httplib2
PORTVERSION= 0.8
+PORTREVISION= 1
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -17,4 +18,10 @@ USE_PYDISTUTILS= easy_install
NO_STAGE= yes
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+post-patch:
+ ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \;
+ ${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \;
+
+.include <bsd.port.post.mk>
More information about the svn-ports-head
mailing list