#!/bin/sh # OpenLDAP (clients/libraries only!) CWD=`pwd` TMP=${TMP:-/tmp} PKG=$TMP/package-openldap-client VERSION=2.3.43 ARCH=${ARCH:-i486} BUILD=2as if [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mcpu=i686" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi rm -rf $PKG mkdir -p $PKG cd $TMP rm -rf openldap-$VERSION tar xvzf $CWD/openldap-$VERSION.tgz cd openldap-$VERSION # This will fix a problem with Evolution and Exchange autentication. patch -p0 < $CWD/openldap-ntlm.diff chown -R root:root . find . -perm 777 -exec chmod 755 {} \; find . -perm 664 -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --localstatedir=/var/lib \ --sysconfdir=/etc \ --with-cyrus-sasl \ --with-tls \ --with-readline \ --with-threads \ --enable-debug \ --enable-syslog \ --enable-dynamic \ --enable-local \ --enable-proctitle \ --disable-ipv6 \ --disable-static \ --enable-shared \ --disable-slapd \ --disable-slurpd make depend make -j3 make test make install DESTDIR=$PKG rm -f $PKG/etc/openldap/ldap.conf.default mv $PKG/etc/openldap/ldap.conf $PKG/etc/openldap/ldap.conf.new cat << EOF >> $PKG/etc/openldap/ldap.conf.new # In order to avoid problems with self-signed certificates using TLS: # "TLS certificate verification: Error, self signed certificate" # See also 'man ldap.conf' or http://www.openldap.org/doc/admin/tls.html TLS_REQCERT allow EOF mkdir -p $PKG/usr/doc/openldap-$VERSION cp -a \ ANNOUNCEMENT CHANGES COPYRIGHT LICENSE README \ $PKG/usr/doc/openldap-$VERSION # Remove man pages for the servers (not currently supported or shipped... find $PKG/usr/man -name slap* -exec rm -f {} \; find $PKG/usr/man -name slurp* -exec rm -f {} \; find $PKG/usr/man -type d -empty -exec rmdir {} \; # Gzip the man pages. ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done ) # Strip binaries ( cd $PKG 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 $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh cd $PKG requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/openldap-client-$VERSION-$ARCH-$BUILD.tgz