diff options
Diffstat (limited to 'network')
-rw-r--r-- | network/zarafa-webaccess-ajax/README | 26 | ||||
-rw-r--r-- | network/zarafa-webaccess-ajax/doinst.sh | 13 | ||||
-rw-r--r-- | network/zarafa-webaccess-ajax/slack-desc | 19 | ||||
-rw-r--r-- | network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.SlackBuild | 95 | ||||
-rw-r--r-- | network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.info | 10 |
5 files changed, 0 insertions, 163 deletions
diff --git a/network/zarafa-webaccess-ajax/README b/network/zarafa-webaccess-ajax/README deleted file mode 100644 index 7a9fbe0a3a..0000000000 --- a/network/zarafa-webaccess-ajax/README +++ /dev/null @@ -1,26 +0,0 @@ -The webaccess module of Zarafa is an Ajax / PHP based solution to -access your e-mail, agenda, contacts, etcetera via a browser. - -This SlackBuild uses the following defaults: - - * DOCROOT=/var/www/htdocs - * DOCDIR=webaccess - * PHPUSER=root - * PHPGROUP=apache - -With the defaults, Zarafa will be accessible from: - - http://<yourserver>/webaccess/ - -Change these at build time if preferred: - - # DOCROOT=/your/preferred/directory \ - PHPUSER=youruser PHPGROUP=yourgroup \ - ./zarafa-webaccess-ajax.SlackBuild - -This needs the following settings in your /etc/httpd/php.ini: - - short_open_tag = On - -Check /etc/zarafa/config.php after installation if you need any non- -standard configuration. diff --git a/network/zarafa-webaccess-ajax/doinst.sh b/network/zarafa-webaccess-ajax/doinst.sh deleted file mode 100644 index 19a6ff6ac8..0000000000 --- a/network/zarafa-webaccess-ajax/doinst.sh +++ /dev/null @@ -1,13 +0,0 @@ -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... -} - diff --git a/network/zarafa-webaccess-ajax/slack-desc b/network/zarafa-webaccess-ajax/slack-desc deleted file mode 100644 index 1668dbbdaa..0000000000 --- a/network/zarafa-webaccess-ajax/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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-webaccess-ajax: zarafa-webaccess-ajax (web access module for zarafa) -zarafa-webaccess-ajax: -zarafa-webaccess-ajax: The webaccess module of Zarafa is a Ajax / PHP based solution to -zarafa-webaccess-ajax: access your e-mail, agenda, contacts, etc. via a browser. -zarafa-webaccess-ajax: -zarafa-webaccess-ajax: http://www.zarafa.com/ -zarafa-webaccess-ajax: -zarafa-webaccess-ajax: -zarafa-webaccess-ajax: -zarafa-webaccess-ajax: -zarafa-webaccess-ajax: diff --git a/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.SlackBuild b/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.SlackBuild deleted file mode 100644 index 302b188337..0000000000 --- a/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.SlackBuild +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/sh - -# Slackware build script for zarafa-webaccess-ajax: -# Ajax-based solution for webaccess to zarafa - -# Copyright 2009-2011 Niels Horn, Rio de Janeiro, RJ, Brazil -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -# revision date 2011/09/16 - -PRGNAM=zarafa-webaccess-ajax -VERSION=${VERSION:-7.1.0} -ARCH=noarch -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -DOCROOT=${DOCROOT:-/var/www/htdocs} -DOCDIR=${DOCDIR:-webaccess} -PHPUSER=${PHPUSER:-root} -PHPGROUP=${PHPGROUP:-apache} - -# To create valid symlinks, we need a relative path from DOCROOT -RELPATH="" -for i in $(echo $DOCROOT | tr "/" " "); do - RELPATH="${RELPATH}../" -done - -SRCNAM=zarafa -TARNAM=zcp -UNTARDIR=php-webclient-ajax -CONFDIR=etc/zarafa - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -rm -rf $TMP/$SRCNAM-$VERSION $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -tar --wildcards -xvf $CWD/$TARNAM-$VERSION.tar.gz $SRCNAM-$VERSION/$UNTARDIR/* -cd $SRCNAM-$VERSION/$UNTARDIR -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -# "Install" to $DOCROOT/$DOCDIR -mkdir -p $PKG/$DOCROOT/$DOCDIR/tmp -cp -a * $PKG/$DOCROOT/$DOCDIR/ -chown -R $PHPUSER:$PHPGROUP $PKG/$DOCROOT/$DOCDIR -chmod 660 $PKG/$DOCROOT/$DOCDIR/tmp - -# Move configuration & create symbolic link -mkdir -p $PKG/$CONFDIR -mv $PKG/$DOCROOT/$DOCDIR/config.php.dist $PKG/$CONFDIR/config.php.new -chown root:$PHPGROUP $PKG/$CONFDIR/config.php.new -chmod 640 $PKG/$CONFDIR/config.php.new - -# Create tmp dir + give write access to $PHPGROUP -mkdir -p $PKG/var/lib/zarafa-webaccess/tmp -chown $PHPUSER:$PHPGROUP $PKG/var/lib/zarafa-webaccess/tmp -chmod g+w $PKG/var/lib/zarafa-webaccess/tmp - -cd $PKG/$DOCROOT/$DOCDIR - ln -s ../${RELPATH}$CONFDIR/config.php config.php -cd - - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh -printf "config $CONFDIR/config.php.new\n" >> $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.info b/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.info deleted file mode 100644 index bf2ea0c0fd..0000000000 --- a/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="zarafa-webaccess-ajax" -VERSION="7.1.0" -HOMEPAGE="http://www.zarafa.com/" -DOWNLOAD="http://download.zarafa.com/community/final/7.1/7.1.0-36420/sourcecode/zcp-7.1.0.tar.gz" -MD5SUM="7c8ecdd77e6e4c8c0644e2e6e8d9e332" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="zarafa" -MAINTAINER="Niels Horn" -EMAIL="niels.horn@gmail.com" |