Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Oct 2013 06:09:45 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332074 - head/www/py-httplib2
Message-ID:  <201310300609.r9U69jYr036382@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310300609.r9U69jYr036382>