mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
network/zarafa-webaccess-ajax: Removed (build failure)
Niels says he'll look into the zarafa stuff later. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
bee8220ae6
commit
e0bf49bf39
5 changed files with 0 additions and 163 deletions
|
@ -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.
|
|
@ -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-webaccess-ajax: http://www.zarafa.com/
|
||||
zarafa-webaccess-ajax:
|
||||
zarafa-webaccess-ajax:
|
||||
zarafa-webaccess-ajax:
|
||||
zarafa-webaccess-ajax:
|
||||
zarafa-webaccess-ajax:
|
|
@ -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}
|
|
@ -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"
|
Loading…
Reference in a new issue