diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2005-11-29 18:56:22 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2005-11-29 18:56:22 +0000 |
commit | b97f51cb3ba3fe6de449473942769b34e4af3b21 (patch) | |
tree | c904da163d38ae854a0d6d7bda16b85bbfd070f3 | |
parent | 9bbc301792c993032a46010f65898162ed5d54ff (diff) |
- Fix permissions.
PR: ports/89043
Submitted by: lioux
Approved by: maintainer timeout (2 weeks)
Notes
Notes:
svn path=/head/; revision=149930
-rw-r--r-- | devel/py-psyco/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/devel/py-psyco/Makefile b/devel/py-psyco/Makefile index d3d1b9ceb4e3..be3f782d11ea 100644 --- a/devel/py-psyco/Makefile +++ b/devel/py-psyco/Makefile @@ -7,6 +7,7 @@ PORTNAME= psyco PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= psyco @@ -23,4 +24,9 @@ USE_PYDISTUTILS=yes WRKSRC= ${WRKDIR}/psyco-${PORTVERSION} +post-install: +# permission safeness + @${CHMOD} -R ${SHAREMODE} ${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/ + @${CHMOD} -R a+X ${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/ + .include <bsd.port.mk> |