From owner-svn-ports-head@FreeBSD.ORG Wed Oct 30 06:09:45 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EA0AA407; Wed, 30 Oct 2013 06:09:45 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D63252628; Wed, 30 Oct 2013 06:09:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9U69jU3036383; Wed, 30 Oct 2013 06:09:45 GMT (envelope-from lwhsu@svn.freebsd.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9U69jYr036382; Wed, 30 Oct 2013 06:09:45 GMT (envelope-from lwhsu@svn.freebsd.org) Message-Id: <201310300609.r9U69jYr036382@svn.freebsd.org> From: Li-Wen Hsu Date: Wed, 30 Oct 2013 06:09:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332074 - head/www/py-httplib2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Oct 2013 06:09:46 -0000 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 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 +.include + +post-patch: + ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \; + ${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \; + +.include