summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Matteo Bernardini <ponce@slackbuilds.org>2013-11-20 12:20:03 +0100
committer Robby Workman <rworkman@slackbuilds.org>2013-11-20 11:14:30 -0600
commit42d1e4dc044f67b92c269c0acd4bef00f4381078 (patch)
tree0fba717fe97a4ee789384e52815e787455f4437e /network
parent65428e381c8927df433486e0f80817a3e7d15aea (diff)
downloadslackbuilds-42d1e4dc044f67b92c269c0acd4bef00f4381078.tar.gz
slackbuilds-42d1e4dc044f67b92c269c0acd4bef00f4381078.tar.xz
network/citadel: Removed (not working).
Maintainer intervention is needed Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/citadel/README33
-rw-r--r--network/citadel/citadel.SlackBuild102
-rw-r--r--network/citadel/citadel.info10
-rw-r--r--network/citadel/slack-desc19
4 files changed, 0 insertions, 164 deletions
diff --git a/network/citadel/README b/network/citadel/README
deleted file mode 100644
index 6d098c6e0c..0000000000
--- a/network/citadel/README
+++ /dev/null
@@ -1,33 +0,0 @@
-Citadel is a turnkey open-source solution for email and collaboration.
-
-It contains both the server and a text-mode client. You can build
-an entire working system with this, or you can just build the
-client and connect to some other existing system. It also provides
-connectivity through:
-
- * SMTP (Port 25 by default)
- * POP3 (Port 110 by default; SSL Enabled on port 995)
- * IMAP (Port 143 by default; SSL Enabled on port 993)
- * Citadel (Port 504; used by dedicated Citadel clients)
- * SMTP-MSA (Port 587; requires SMTP authentication)
- * ManageSieve (Port 2020; edit your mail filtering scripts with
- your favorite GUI client)
- * Postfix TCP dictionary (if you have an upstream mail hub running
- Postfix, it can use this service to verify valid email addresses
- on your Citadel)
- * lmtp.socket (Local mail transport, for use with an external MTA
- if for some reason you do not wish to use Citadel's built in SMTP
- service)
- * lmtp-unfiltered.socket (same as above, but without spam filtering)
- * citadel.socket (Citadel protocol)
-
-After installation, run /opt/citadel/setup to configure Citadel.
-That script requires a 'citadel' user/group to exist before
-running.
-The recommended UID/GID is 276. You can create these like so:
- groupadd -g 276 citadel
- useradd -u 276 -g 276 -c "Citadel" -m citadel
-
-It is very easy: just be careful to specify a new user "citadel"
-(or whatever, see above) who will run the server and specify a valid
-username and password to log into Citadel.
diff --git a/network/citadel/citadel.SlackBuild b/network/citadel/citadel.SlackBuild
deleted file mode 100644
index 8fc5999bc8..0000000000
--- a/network/citadel/citadel.SlackBuild
+++ /dev/null
@@ -1,102 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for citadel
-
-# 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=${VERSION:-8.22}
-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.?z*
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-CFLAGS="$SLKCFLAGS -I/opt/citadel/ctdlsupport/include" \
-CXXFLAGS="$SLKCFLAGS" \
-CPPFLAGS="-I/opt/citadel/ctdlsupport/include" \
-LDFLAGS="-L/opt/citadel/ctdlsupport/lib -Wl,--rpath -Wl,/opt/citadel/ctdlsupport/lib" \
-./configure \
- --prefix=/opt/citadel \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --with-db=/opt/citadel/ctdlsupport \
- --build=$ARCH-slackware-linux
-make
-make install DESTDIR=$PKG
-
-# Create some symlinks
-mkdir -p $PKG/usr/bin
-for f in citadel citserver citmail ; do
- ln -s /opt/citadel/$f $PKG/usr/bin/$f
-done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a COPYING README.txt $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}
diff --git a/network/citadel/citadel.info b/network/citadel/citadel.info
deleted file mode 100644
index fed73a72d9..0000000000
--- a/network/citadel/citadel.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="citadel"
-VERSION="8.22"
-HOMEPAGE="http://www.citadel.org"
-DOWNLOAD="http://ponce.cc/slackware/sources/repo/citadel/citadel-8.22.tar.gz"
-MD5SUM="2d5d3456292dcbb25ed4dfc511a2e8bc"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="libsieve libcitadel c-ares libev"
-MAINTAINER="Roberto Metere"
-EMAIL="roberto@metere.it"
diff --git a/network/citadel/slack-desc b/network/citadel/slack-desc
deleted file mode 100644
index f61a9ad784..0000000000
--- a/network/citadel/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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-citadel: citadel (Citadel server)
-citadel:
-citadel: Citadel is a turnkey open-source solution for email and collaboration.
-citadel: A multitude of powerful features are available, including:
-citadel: * email * instant messaging
-citadel: * calendaring/scheduling * wiki
-citadel: * address books * multiple domain support
-citadel: * bulletin boards * a powerful web interface
-citadel: * mailing list server
-citadel:
-citadel: homepage: http://www.citadel.org/