diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-11-12 18:45:21 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-11-12 18:45:21 +0800 |
commit | 9cda739d4f4aa1fd53fc583d29a007c9bc943441 (patch) | |
tree | 6a04d5cb08fe87adb67919c02d785ba930458da8 /mail/evolution | |
parent | 19167337b07657cefec9414e8fe4400ee09a4af6 (diff) | |
download | freebsd-ports-gnome-9cda739d4f4aa1fd53fc583d29a007c9bc943441.tar.gz freebsd-ports-gnome-9cda739d4f4aa1fd53fc583d29a007c9bc943441.tar.zst freebsd-ports-gnome-9cda739d4f4aa1fd53fc583d29a007c9bc943441.zip |
Change permissions of all files in ${PREFIX}/share/gnome/evolution/default_user
to be 644, otherwise after installation the user will be unable to make any
changes to his/her mailboxes.
See http://bugzilla.ximian.com/show_bug.cgi?id=14961 for details.
Submitted by: Christopher Masto <chris@netmonger.net>
Diffstat (limited to 'mail/evolution')
-rw-r--r-- | mail/evolution/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 49d42de01c25..74bc15322350 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -7,6 +7,7 @@ PORTNAME= evolution PORTVERSION= 0.99.0 +PORTREVISION= 1 CATEGORIES= mail gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/evolution @@ -45,4 +46,8 @@ pre-patch: @find ${WRKSRC} -type f -name "*.[ch]" | xargs ${GREP} -l 'wrong DB3' | \ xargs ${PERL} -pi -e 's|.*wrong DB3.*||' +post-install: + @find ${PREFIX}/share/gnome/evolution/default_user -type f | \ + xargs ${CHMOD} 644 + .include <bsd.port.mk> |