diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-05-13 01:00:28 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 01:00:28 +0200 |
commit | d3b76092ae29069755f966094cfd930438094ec6 (patch) | |
tree | 16c08961eb02209406a7d2a6ee319f38205fd983 /network/zarafa | |
parent | b6581c5eb3765ace3bfbcdb819bb6e95b285a979 (diff) | |
download | slackbuilds-d3b76092ae29069755f966094cfd930438094ec6.tar.gz |
network/zarafa: Added to 13.0 repository
Diffstat (limited to 'network/zarafa')
-rw-r--r-- | network/zarafa/README | 6 | ||||
-rw-r--r-- | network/zarafa/README.Slackware | 66 | ||||
-rw-r--r-- | network/zarafa/doinst.sh | 16 | ||||
-rw-r--r-- | network/zarafa/ical2mapi.patch | 14 | ||||
-rw-r--r-- | network/zarafa/slack-desc | 19 | ||||
-rw-r--r-- | network/zarafa/vmime-zarafa.patch | 11 | ||||
-rw-r--r-- | network/zarafa/zarafa.SlackBuild | 101 | ||||
-rw-r--r-- | network/zarafa/zarafa.info | 10 |
8 files changed, 243 insertions, 0 deletions
diff --git a/network/zarafa/README b/network/zarafa/README new file mode 100644 index 0000000000..341b2b2dc2 --- /dev/null +++ b/network/zarafa/README @@ -0,0 +1,6 @@ +Zarafa offers a replacement for MS Exchange Server, providing +Outlook "Look & Feel" webaccess, integration with Linux mailservers, +mobile phone support, Outlook sharing (100% MAPI) etc. + +This requires libvmime-zarafa, and zarafa-webaccess-ajax is needed +at runtime. diff --git a/network/zarafa/README.Slackware b/network/zarafa/README.Slackware new file mode 100644 index 0000000000..c670d79841 --- /dev/null +++ b/network/zarafa/README.Slackware @@ -0,0 +1,66 @@ +README.Slackware +================ + +This document gives some basic instructions on setting up Zarafa on Slackware + +1) Prepare your MySQL server +---------------------------- + +On your MySQL server, enter with an account with full privileges: + + # mysql -u <your_account> -p<your_password> + +In MySQL, create the database and user: + + mysql> create database zarafa; + mysql> grant all priviliges on zarafa.* to zarafa@hn_gtw01.hn identified by 'zarafa'; + mysql> flush privileges; + mysql> quit + +You can change the name of the user and password as you please. + +2) Edit Zarafa configuration files +---------------------------------- + +The sample configuration files are installed in /etc/zarafa/ +Thera are files for the server, spooler, gateway, etc. + +Change at least the file server.cfg to the correct values for your MySQL +server: + + mysql_host (can be localhost is mysql is on the same box) + mysql_user (default is root, not a good idea) + mysql_password + +3) Starting and stopping services +--------------------------------- + +You can start and stop the zarafa services with the command: + + # zarafa-<service> start | stop + +For instance: + + # zarafa-server start + +Select the services you need to start and put the commands in +/etc/rc.d/rc.local & /etc/rc.d/rc.local_shutdown + +4) Creating "public store" +-------------------------- + +To create the public store of shared folders, use: + + # zarafa-admin -s + +5) Where to go from here +------------------------ + +With these steps, you have concluded the basic setup of Zarafa. For web +access, install the zarafa-webaccess-ajax package. + +More documentation is available in the man-pages and from the Zarafa site: +http://www.zarafa.com/content/documentation +On this site, several manuals (including some translations) and whitepapers +can be downloaded. + diff --git a/network/zarafa/doinst.sh b/network/zarafa/doinst.sh new file mode 100644 index 0000000000..a7a54d81e2 --- /dev/null +++ b/network/zarafa/doinst.sh @@ -0,0 +1,16 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +for cnf in etc/zarafa/*.cfg.new; do + config $cnf +done diff --git a/network/zarafa/ical2mapi.patch b/network/zarafa/ical2mapi.patch new file mode 100644 index 0000000000..4e60671b75 --- /dev/null +++ b/network/zarafa/ical2mapi.patch @@ -0,0 +1,14 @@ +--- zarafa-6.30.5/ECtools/ECTestTools/ICalTests/ical2mapi.cpp 2009-11-12 20:55:01.000000000 -0200 ++++ zarafa-6.30.5_patched/ECtools/ECTestTools/ICalTests/ical2mapi.cpp 2009-12-12 12:28:15.000000000 -0200 +@@ -178,9 +178,9 @@ + if (readfile(argv[4], &icalstring)) + goto exit; + +- CreateICalToMapi(lpInbox, lpAdrBook, &lpICalToMapi); ++ CreateICalToMapi(lpInbox, lpAdrBook, 0, &lpICalToMapi); + +- hr = lpICalToMapi->ParseICal(icalstring, "UTF-8", "UTC", 0); // assume ical file is in utf-8 ++ hr = lpICalToMapi->ParseICal(icalstring, "UTF-8", "UTC", NULL, 0); // assume ical file is in utf-8 + if (FAILED(hr)) { + cerr << "unable to parse" << endl; + goto exit; diff --git a/network/zarafa/slack-desc b/network/zarafa/slack-desc new file mode 100644 index 0000000000..2a3f5c465f --- /dev/null +++ b/network/zarafa/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +zarafa: zarafa (MS Exchange replacement) +zarafa: +zarafa: Zarafa offers a replacement for MS Exchange Server, providing +zarafa: Outlook "Look & Feel" webaccess, integration with Linux mailservers, +zarafa: mobile phone support, Outlook sharing (100% MAPI) etc. +zarafa: +zarafa: http://www.zarafa.com/ +zarafa: +zarafa: +zarafa: +zarafa: diff --git a/network/zarafa/vmime-zarafa.patch b/network/zarafa/vmime-zarafa.patch new file mode 100644 index 0000000000..1811338867 --- /dev/null +++ b/network/zarafa/vmime-zarafa.patch @@ -0,0 +1,11 @@ +--- zarafa-6.30.5/configure 2009-11-12 20:28:29.000000000 -0200 ++++ zarafa-6.30.5_patched/configure 2009-12-12 18:27:55.000000000 -0200 +@@ -22494,7 +22494,7 @@ + _ACEOF + + VMIME_CFLAGS=-I$VMIME_PREFIX +- VMIME_LIBS="-lvmime" ++ VMIME_LIBS="-lvmime-zarafa" + + else + diff --git a/network/zarafa/zarafa.SlackBuild b/network/zarafa/zarafa.SlackBuild new file mode 100644 index 0000000000..f463f083c3 --- /dev/null +++ b/network/zarafa/zarafa.SlackBuild @@ -0,0 +1,101 @@ +#!/bin/sh + +# Slackware build script for zarafa: +# an MS Exchange substitute + +# Written by Niels Horn - niels.horn@gmail.com +# revision date 2009/12/12 + +PRGNAM=zarafa +VERSION=6.30.5 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +set -e + +rm -rf $TMP/$PRGNAM-$VERSION $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +# Apply patches to avoid compiling error +# (note: this is my personal solution / hack, I did not find any answer on +# the official zarafa forum, although other users reported the same issue.) +patch -p1 < $CWD/ical2mapi.patch + +# Apply patch to use "vmime-zarafa" instead of "vmime" +patch -p1 < $CWD/vmime-zarafa.patch + +SLKCFLAGS="$SLKCFLAGS -I/usr/include/vmime-zarafa" + +CFLAGS=$SLKCFLAGS \ +CXXFLAGS=$SLKCFLAGS \ +CPPFLAGS=$SLKCFLAGS \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --with-userscript-prefix=/etc/zarafa/userscripts \ + --with-quotatemplate-prefix=/etc/zarafa/quotamails \ + --with-vmime-prefix=/usr/include/vmime-zarafa \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +# Sample configuration files +mkdir -p $PKG/etc/$PRGNAM +( cd $PKG/usr/doc/$PRGNAM-$VERSION + for cnf in *.cfg; do + mv $cnf $PKG/etc/$PRGNAM/$cnf.new + done +) + +# Directory for log file +mkdir -p $PKG/var/log/$PRGNAM + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README.Slackware > $PKG/usr/doc/$PRGNAM-$VERSION/README.Slackware + +mkdir -p $PKG/install +cat $CWD/doinst.sh > $PKG/install/doinst.sh +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/zarafa/zarafa.info b/network/zarafa/zarafa.info new file mode 100644 index 0000000000..3bc89cae89 --- /dev/null +++ b/network/zarafa/zarafa.info @@ -0,0 +1,10 @@ +PRGNAM="zarafa" +VERSION="6.30.5" +HOMEPAGE="http://www.zarafa.com/" +DOWNLOAD="http://download.zarafa.com/zarafa/drupal/ondemand.php?version=6.30.5&src=zarafa-6.30.5" +MD5SUM="43465b74868f175e73716c58732b2b8f" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Niels Horn" +EMAIL="niels.horn@gmail.com" +APPROVED="rworkman" |