diff options
author | Roberto Metere <roberto{at}metere{dot}it> | 2011-03-06 13:29:48 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-03-06 13:29:48 -0300 |
commit | cc180c300abe3bb80beb70fbca37ae3609de1477 (patch) | |
tree | dc2ce974762b7cc0b1e4e723ce104e3e6ea9a9f5 /network/citadel/citadel.SlackBuild | |
parent | 7e49b00cde13e8b25635c97c06557da661955a6c (diff) | |
download | slackbuilds-cc180c300abe3bb80beb70fbca37ae3609de1477.tar.gz |
network/citadel: Added (e-mail and collaboration suite)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/citadel/citadel.SlackBuild')
-rw-r--r-- | network/citadel/citadel.SlackBuild | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/network/citadel/citadel.SlackBuild b/network/citadel/citadel.SlackBuild new file mode 100644 index 0000000000..443a098ea1 --- /dev/null +++ b/network/citadel/citadel.SlackBuild @@ -0,0 +1,101 @@ +#!/bin/sh + +# Slackware build script for ejabberd + +# Copyright (c) 2010 Roberto Metere. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "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 COPYRIGHT +# OWNER OR CONTRIBUTORS 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. + +PRGNAM=citadel +VERSION=7.85 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +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" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.* +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS -I/usr/local/ctdlsupport/include" \ +CXXFLAGS="$SLKCFLAGS" \ +CPPFLAGS=-I/usr/local/ctdlsupport/include \ +LDFLAGS='-L/usr/local/ctdlsupport/lib -Wl,--rpath -Wl,/usr/local/ctdlsupport/lib' \ +./configure \ + --prefix=/opt/citadel \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --with-db=/opt/citadel/ctdlsupport \ + --with-pam \ + --with-libical \ + --disable-threaded-client \ + --build=$ARCH-slackware-linux +make +make install DESTDIR=$PKG + +# Create some symlinks +for f in citadel citserver citmail ; do + ln -s /opt/citadel/$f /usr/bin/$f +done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING README.txt config.log \ + $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 + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |