diff options
author | adamw <adamw@FreeBSD.org> | 2005-12-31 09:30:40 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2005-12-31 09:30:40 +0800 |
commit | 30aa702c3407af4dadcd6d4b3c6e35338845d4d6 (patch) | |
tree | 7357f0e170b123a46442bed4e3ab5fe0fbfff661 /deskutils | |
parent | fdec5b995bbd6cd0f67617486849a01aafcdd51d (diff) | |
download | freebsd-ports-gnome-30aa702c3407af4dadcd6d4b3c6e35338845d4d6.tar.gz freebsd-ports-gnome-30aa702c3407af4dadcd6d4b3c6e35338845d4d6.tar.zst freebsd-ports-gnome-30aa702c3407af4dadcd6d4b3c6e35338845d4d6.zip |
Unbreak, sortof. By restoring permissions on metakit.pyc to what they should
be, sortof.
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/gourmet/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/deskutils/gourmet/Makefile b/deskutils/gourmet/Makefile index 91c88a81b8b8..d337469dee8f 100644 --- a/deskutils/gourmet/Makefile +++ b/deskutils/gourmet/Makefile @@ -17,12 +17,15 @@ COMMENT= GNOME recipe manager RUN_DEPENDS= ${LOCALBASE}/lib/libmk4py.so:${PORTSDIR}/databases/metakit \ ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging -BROKEN= Changes file permission of installed file - USE_X_PREFIX= yes USE_PYTHON= yes USE_PYDISTUTILS=yes USE_GNOME= pygnome2 +post-install: +.if exists(${PYTHON_SITELIBDIR}/metakit.pyc) + @${CHMOD} 0555 ${PYTHON_SITELIBDIR}/metakit.pyc +.endif + .include <bsd.port.mk> |