summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-03-18 13:45:44 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-03-18 13:45:44 +0800
commit47cc5afd5f329ea34c92d44265ef3f0efafa1390 (patch)
tree63b92e34079274f184e4de4b181e3124591628e8
parent38805275c637738ba52876e300c63e3827b8807b (diff)
downloadmarcuscom-ports-47cc5afd5f329ea34c92d44265ef3f0efafa1390.tar
marcuscom-ports-47cc5afd5f329ea34c92d44265ef3f0efafa1390.tar.gz
marcuscom-ports-47cc5afd5f329ea34c92d44265ef3f0efafa1390.tar.bz2
marcuscom-ports-47cc5afd5f329ea34c92d44265ef3f0efafa1390.tar.lz
marcuscom-ports-47cc5afd5f329ea34c92d44265ef3f0efafa1390.tar.xz
marcuscom-ports-47cc5afd5f329ea34c92d44265ef3f0efafa1390.tar.zst
marcuscom-ports-47cc5afd5f329ea34c92d44265ef3f0efafa1390.zip
In -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. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8573 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--x11-toolkits/py-gnome-desktop/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/x11-toolkits/py-gnome-desktop/Makefile b/x11-toolkits/py-gnome-desktop/Makefile
index 484ac1e4f..d804523d4 100644
--- a/x11-toolkits/py-gnome-desktop/Makefile
+++ b/x11-toolkits/py-gnome-desktop/Makefile
@@ -3,11 +3,12 @@
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/x11-toolkits/py-gnome-desktop/Makefile,v 1.56 2007/03/04 22:46:49 ahze Exp $
+# $MCom: ports/x11-toolkits/py-gnome-desktop/Makefile,v 1.57 2007/03/12 19:26:26 mezz Exp $
#
PORTNAME= gnome
PORTVERSION= 2.18.0
+PORTREVISION= 1
CATEGORIES= x11-toolkits python gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/gnome-python-desktop/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
@@ -55,6 +56,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>