mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
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...
This commit is contained in:
parent
0bd998d319
commit
65b806a790
5 changed files with 0 additions and 127 deletions
|
@ -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.
|
|
@ -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...
|
||||
}
|
||||
|
|
@ -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:
|
|
@ -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}
|
|
@ -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"
|
Loading…
Reference in a new issue