diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-07-31 20:45:44 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-07-31 20:45:44 +0000 |
commit | 3ae891bbbaa3f96365f4c9fbe49e5cee26183fbc (patch) | |
tree | 59f0163f13e99eefb959385243c564c5662bc5c2 /sympa/sympa.SlackBuild | |
download | slackbuilds-3ae891bbbaa3f96365f4c9fbe49e5cee26183fbc.tar.gz slackbuilds-3ae891bbbaa3f96365f4c9fbe49e5cee26183fbc.tar.bz2 |
initial import
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'sympa/sympa.SlackBuild')
-rwxr-xr-x | sympa/sympa.SlackBuild | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/sympa/sympa.SlackBuild b/sympa/sympa.SlackBuild new file mode 100755 index 00000000..8d306165 --- /dev/null +++ b/sympa/sympa.SlackBuild @@ -0,0 +1,142 @@ +#!/bin/bash +# +# slackbuild script for sympa +# + +cat << EOECHO +You'll need at least the following perl modules to build Sympa: + + cpan2tgz --no-recursive Compress::Zlib Archive::Zip Sub::Uplevel Test::Builder::Tester Test::Exception \\ + Module::Build Array::Compare Tree::DAG_Node Test::Warn Test::Simple Crypt::CipherSaber DBD::mysql \\ + Digest::MD5 File::Spec IO::Scalar IO::Stringy URI HTML::Tagset HTML::Parser LWP Locale::TextDomain \\ + Mail::Field Mail::Header Mail::Internet MIME::Tools Mail::Internet Regexp::Common AppConfig \\ + Template XML::NamespaceSupport XML::SAX XML::LibXML::Common XML::LibXML Net::SSLeay IO::Socket \\ + Convert::ASN1 Digest::SHA1 Digest::HMAC_MD5 Authen::SASL Digest::MD5 Net::LDAP SOAP::Lite FCGI + +And the following packages: + + MHonarc + mod_fcgi + +EOECHO + +if [ "$INTERACT" != "no" ]; then + echo Type ENTER you you have those installed, otherwise hit Ctrl-C and install them. + read crap +else + echo sleeping 3 seconds... + sleep 3 +fi + +CWD="`pwd`" + +if [ -f "/etc/slackbuildrc" ]; then + source /etc/slackbuildrc +fi + +if [ -f "~/.slackbuildrc" ]; then + source ~/.slackbuildrc +fi + +# default settings +PACKAGE="sympa" +VERSION=${VERSION:=5.2.1} +ARCH=${ARCH:=x86_64} +BUILD=${BUILD:=1rha} +SRC_DIR=${SRC:=$CWD} +TMP=${TMP:=/tmp} + +if [ "$ARCH" == "x86_64" ]; then + LIBDIR=/usr/lib64 +else + LIBDIR=/usr/lib +fi + +RTOOL="wget" +PACKAGE_EXT="gz" +SRC="$PACKAGE-$VERSION.tar.$PACKAGE_EXT" +URL="http://www.sympa.org/distribution/$SRC" + +if [ "$PACKAGE_EXT" == "bz2" ]; then + tarflag="j" +else + tarflag="z" +fi + +if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then + wget "$URL" -O "$SRC_DIR/$SRC" +fi + +cd $TMP +rm -rf package-$PACKAGE +mkdir package-$PACKAGE +cd package-$PACKAGE + +tar xvf$tarflag $SRC_DIR/$SRC +cd $PACKAGE-$VERSION +./configure --with-initdir=/etc/rc.d/ --prefix=/usr/local/sympa --with-confdir=/usr/local/sympa/conf \ + --with-etcdir=/usr/local/sympa/etc +make +make DESTDIR=$TMP/package-$PACKAGE/$PACKAGE install | tee $TMP/package-$PACKAGE/install.log + +CWD="`pwd`" + +cd $TMP/package-$PACKAGE/$PACKAGE + +mv usr/local/sympa/conf/sympa.conf usr/local/sympa/conf/sympa.conf.new +mv usr/local/sympa/conf/wwsympa.conf usr/local/sympa/conf/wwsympa.conf.new +mv usr/local/sympa/bin/etc/create_list.conf usr/local/sympa/bin/etc/create_list.conf.new +mv usr/local/sympa/bin/etc/topics.conf usr/local/sympa/bin/etc/topics.conf.new + +mkdir -p var/mail/sympa + +find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + +mkdir install +cat << EOF > install/slack-desc +# 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-----------------------------------------------------| +sympa: sympa (Sympa is a rich open source mailing list software) +sympa: +sympa: Sympa is a scalable and highly customizable mailing list software. +sympa: It can cope with big lists (780,000 subscribers), and it comes with +sympa: a complete Web interface for both the user and the administrator. +sympa: It is internationalized. Sites can customize Web and mail templates, +sympa: authentication backends, and authorization scenarios. Dynamic mailing +sympa: lists can use multiple backends (LDAP, SQL, files, lists, or others). +sympa: Sympa is the only S/MIME enabled mailing list software, and it provides +sympa: both authentication and encryption. +sympa: +EOF + +# docs +mkdir -p usr/doc/$PACKAGE-$VERSION + +for file in AUTHORS COPYING ChangeLog INSTALL KNOWNBUGS NEWS README; do + cp $CWD/$file* usr/doc/$PACKAGE-$VERSION/ +done + +# install script +echo '( chroot . /sbin/ldconfig )' > /install/doinst.sh +echo '( if ! grep -qe "^sympa:" etc/group; then echo creating group sympa... ; chroot . /usr/sbin/groupadd sympa; fi )' >> install/doinst.sh +echo '( if ! grep -qe "^sympa:" etc/passwd; then echo creating user sympa... ; chroot . /usr/sbin/useradd sympa -g sympa; fi )' >> install/doinst.sh +echo '( if [ ! -f "usr/local/sympa/conf/sympa.conf" ]; then mv usr/local/sympa/conf/sympa.conf.new usr/local/sympa/conf/sympa.conf ; fi )' >> install/doinst.sh +echo '( if [ ! -f "usr/local/sympa/conf/wwsympa.conf" ]; then mv usr/local/sympa/conf/wwsympa.conf.new usr/local/sympa/conf/wwsympa.conf ; fi )' >> install/doinst.sh +echo '( if [ ! -f "usr/local/sympa/bin/etc/create_list.conf" ]; then mv usr/local/sympa/bin/etc/create_list.conf.new usr/local/sympa/bin/etc/create_list.conf ; fi )' >> install/doinst.sh +echo '( if [ ! -f "usr/local/sympa/bin/etc/topics.conf" ]; then mv usr/local/sympa/bin/etc/topics.conf.new usr/local/sympa/bin/etc/topics.conf ; fi )' >> install/doinst.sh +echo '( chroot . /usr/bin/chown -R sympa.sympa /usr/local/sympa /var/mail/sympa )' >> install/doinst.sh +echo '( touch /var/log/sympa)' >> install/doinst.sh +# echo '( chmod +s /usr/local/sympa/bin/queue )' >> install/doinst.sh + +makepkg -c y -l y $TMP/$PACKAGE-$VERSION-$ARCH-$BUILD.tgz + +echo "Package creation complete. PLEASE check if everything was ok." +echo "Log files at $TMP/package-$PACKAGE/install.log" + |