diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-07-28 02:20:46 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-07-28 02:20:46 +0800 |
commit | bc76ca9178743f603e463fe3b061c061e64258ff (patch) | |
tree | eada6f6b4a0a7f7637f85f9c0aa0f6eb7b22d70e /devel | |
parent | a0d9a601cf4aeefc8ff4ec994cd74075b9ee1c3d (diff) | |
download | freebsd-ports-gnome-bc76ca9178743f603e463fe3b061c061e64258ff.tar.gz freebsd-ports-gnome-bc76ca9178743f603e463fe3b061c061e64258ff.tar.zst freebsd-ports-gnome-bc76ca9178743f603e463fe3b061c061e64258ff.zip |
- Don't make $PREFIX/otrs group writeable to make procmail happy
- give the user an idea of the components of otrs that need manual
configuration after the port/package has been installed.
PR: ports/100702
Submitted by: Nick Barkas (maintainer)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/otrs/Makefile | 1 | ||||
-rw-r--r-- | devel/otrs/files/patch-bin-SetPermissions.sh | 15 | ||||
-rw-r--r-- | devel/otrs/files/pkg-message.in | 5 |
3 files changed, 19 insertions, 2 deletions
diff --git a/devel/otrs/Makefile b/devel/otrs/Makefile index 197861c836c7..53d890b053c9 100644 --- a/devel/otrs/Makefile +++ b/devel/otrs/Makefile @@ -7,6 +7,7 @@ PORTNAME= otrs PORTVERSION= 2.0.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://ftp.otrs.org/pub/otrs/ DISTNAME= ${PORTNAME}-${PORTVERSION}-01 diff --git a/devel/otrs/files/patch-bin-SetPermissions.sh b/devel/otrs/files/patch-bin-SetPermissions.sh new file mode 100644 index 000000000000..5c895665b3bd --- /dev/null +++ b/devel/otrs/files/patch-bin-SetPermissions.sh @@ -0,0 +1,15 @@ +--- bin/SetPermissions.sh.orig Fri Jul 21 21:03:43 2006 ++++ bin/SetPermissions.sh Fri Jul 21 21:07:02 2006 +@@ -55,9 +55,10 @@ + echo "chown -R $WEBUSER:$OTRSGROUP $OTRSDEST" + chown $WEBUSER:$OTRSGROUP $OTRSDEST + chown -R $WEBUSER:$OTRSGROUP $OTRSDEST +-echo "chmod -R og+rw $OTRSDEST" +-chmod ug+wr $OTRSDEST ++echo "chmod -R og+rw $OTRSDEST/*" + chmod -R ug+wr $OTRSDEST ++# procmail does not like the home directory to be group writeable ++chmod g-w $OTRSDEST + + # set the $HOME to the OTRS user + echo "chown $OTRSUSER:$OTRSGROUP $OTRSDEST" diff --git a/devel/otrs/files/pkg-message.in b/devel/otrs/files/pkg-message.in index 72f16cb35b7e..d5e73c7d5b16 100644 --- a/devel/otrs/files/pkg-message.in +++ b/devel/otrs/files/pkg-message.in @@ -5,7 +5,8 @@ The rest of installation must be completed manually. Please read -http://doc.otrs.org/2.0/en/html/x357.html#webserver-configuration +http://doc.otrs.org/2.0/en/html/ -and follow instructions. +for further instructions, particularly regarding configuring your web +server, database, cron scripts, and receiving emails. ========================================================================== |