diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-03-19 01:09:14 +0800 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-03-19 01:09:14 +0800 |
commit | dfeeed57f4b3ec8744b1f5c2a70d139fac328c65 (patch) | |
tree | f6d0e7afbc33256df1399f82658b9ab55add8b03 | |
parent | 0333e50ca7320dc31c674fa8a98bfa54c38cfa5b (diff) | |
download | freebsd-ports-gnome-dfeeed57f4b3ec8744b1f5c2a70d139fac328c65.tar.gz freebsd-ports-gnome-dfeeed57f4b3ec8744b1f5c2a70d139fac328c65.tar.zst freebsd-ports-gnome-dfeeed57f4b3ec8744b1f5c2a70d139fac328c65.zip |
n -CURRENT, bsdtar will preserve the attributes of the archive automatically
when run as root. Unfortunately, py-gnome-desktop has all of its examples
directories chmod to 0777. So once the directories are installed, remove
the write bit for group and other.
-rw-r--r-- | x11-toolkits/py-gnome-extras/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/x11-toolkits/py-gnome-extras/Makefile b/x11-toolkits/py-gnome-extras/Makefile index 770806e7aadb..b9ecb53d9259 100644 --- a/x11-toolkits/py-gnome-extras/Makefile +++ b/x11-toolkits/py-gnome-extras/Makefile @@ -8,6 +8,7 @@ PORTNAME= gnome PORTVERSION= 2.14.3 +PORTREVISION= 1 CATEGORIES= x11-toolkits python gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/gnome-python-extras/${PORTVERSION:C/..$//} @@ -54,6 +55,7 @@ post-install: ${MKDIR} ${EG_DST_DIR} ${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xf - ${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR} + ${CHMOD} -R go-w ${EG_DST_DIR} .endif .include <bsd.port.post.mk> |