Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 2010 23:39:46 GMT
From:      Daniel Walter <sahne@0x90.at>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/144335: [PATCH] www/py-webhelpers does not use PYTHONPREFIX_SITELIBDIR
Message-ID:  <201002262339.o1QNdkrQ098813@www.freebsd.org>
Resent-Message-ID: <201002262340.o1QNe1Lo052697@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         144335
>Category:       ports
>Synopsis:       [PATCH] www/py-webhelpers does not use PYTHONPREFIX_SITELIBDIR
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Feb 26 23:40:01 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Daniel Walter
>Release:        8.0-STABLE
>Organization:
>Environment:
>Description:
www/py-webhelpers uses PYTHON_SITELIBDIR instead of the prefix save PYTHONPREFIX_SITELIBDIR in the post-install section to fix permission.
Attached patch should fix this.
>How-To-Repeat:

>Fix:
--- Makefile    2010-02-27 00:35:15.000000000 +0100
+++ Makefile    2009-06-09 00:30:54.000000000 +0200
@@ -23,9 +23,9 @@
 PYDISTUTILS_PKGNAME=   WebHelpers
 
 post-install:
-       ${FIND} ${PYTHONPREFIX_SITELIBDIR}/${PYEASYINSTALL_EGG} \
+       ${FIND} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG} \
                -type d -exec ${CHMOD} 755 {} +
-       ${FIND} ${PYTHONPREFIX_SITELIBDIR}/${PYEASYINSTALL_EGG} \
+       ${FIND} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG} \
                -type f -exec ${CHMOD} ${SHAREMODE} {} +
 
 .include <bsd.port.mk>


>Release-Note:
>Audit-Trail:
>Unformatted:



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