summaryrefslogtreecommitdiffstats
path: root/network/zarafa-webaccess-ajax
diff options
context:
space:
mode:
author Robby Workman2010-05-21 22:02:09 +0200
committer Robby Workman2010-05-24 06:21:41 +0200
commit65b806a790a5eec2322d284ced6f2d73a94ce7e7 (patch)
tree8000a2dad2c40812898511ab6487a6faeab7c736 /network/zarafa-webaccess-ajax
parent0bd998d3199e7c2ff5d9ff55905c83c8fbd943b3 (diff)
downloadslackbuilds-65b806a790a5eec2322d284ced6f2d73a94ce7e7.tar.gz
network/zarafa-webaccess-ajax: Removed (missing dependency)
libvmime-zarafa was removed due to build failure, so zarafa can't build, and therefore neither can this...
Diffstat (limited to 'network/zarafa-webaccess-ajax')
-rw-r--r--network/zarafa-webaccess-ajax/README24
-rw-r--r--network/zarafa-webaccess-ajax/doinst.sh13
-rw-r--r--network/zarafa-webaccess-ajax/slack-desc19
-rw-r--r--network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.SlackBuild61
-rw-r--r--network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.info10
5 files changed, 0 insertions, 127 deletions
diff --git a/network/zarafa-webaccess-ajax/README b/network/zarafa-webaccess-ajax/README
deleted file mode 100644
index bdfc2afe8b..0000000000
--- a/network/zarafa-webaccess-ajax/README
+++ /dev/null
@@ -1,24 +0,0 @@
-The webaccess module of Zarafa is a 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 requires zarafa.
-
-This needs the following settings in your /etc/httpd/php.ini:
- extension = mapi.so
- 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 87e7f38794..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-webaceess-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 979aa1081a..0000000000
--- a/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.SlackBuild
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for zarafa-webaccess-ajax:
-# Ajax-based solution for webaccess to zarafa
-
-# Written by Niels Horn - niels.horn@gmail.com
-# revision date 2009/12/13
-
-PRGNAM=zarafa-webaccess-ajax
-VERSION=6.30.5
-ARCH=noarch
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-DOCROOT=${DOCROOT:-/var/www/htdocs}
-DOCDIR=${DOCDIR:-webaccess}
-PHPUSER=${PHPUSER:-root}
-PHPGROUP=${PHPGROUP:-apache}
-
-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/$UNTARDIR $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $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
-
-( cd $PKG/$DOCROOT/$DOCDIR ; ln -s /$CONFDIR/config.php )
-
-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 17890fbf11..0000000000
--- a/network/zarafa-webaccess-ajax/zarafa-webaccess-ajax.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="zarafa-webaccess-ajax"
-VERSION="6.30.5"
-HOMEPAGE="http://www.zarafa.com/"
-DOWNLOAD="http://download.zarafa.com/zarafa/drupal/ondemand.php?version=6.30.5&src=zarafa-webaccess-ajax-6.30.5"
-MD5SUM="b0281b855317c0c0af15477a27c0958b"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Niels Horn"
-EMAIL="niels.horn@gmail.com"
-APPROVED="rworkman"