1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from pisi.actionsapi import get
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import shelltools
- def setup():
- pisitools.dosed("libsasl2.pc.in", "libdir = @libdir@", "prefix=/usr\nexec_prefix=${prefix}\nlibdir = @libdir@")
- def cleanup():
- for p in ("config.*", "ltconfig", "ltmain.sh", "libtool.m4"):
- shelltools.unlink("config/%s" % p)
- cleanup()
- autotools.autoreconf("-vfi --no-recursive -I config -I cmulocal")
- shelltools.cd("saslauthd")
- cleanup()
- autotools.autoreconf("-vi --no-recursive -I config -I ../cmulocal -I ../config")
- shelltools.cd("..")
- pisitools.cflags.add("-fPIC")
- # Don't disable ldap support to break circular dep. with openldap
- # As workaround, we remove openldap-client runtime dep. in pspec
- autotools.configure("--with-saslauthd=/run/saslauthd \
- --with-pwcheck=/var/lib/sasl2 \
- --with-configdir=/etc/sasl2 \
- --with-plugindir=/usr/lib/sasl2 \
- --with-dbpath=/etc/sasl2/sasldb2 \
- --with-pam \
- --without-ldap \
- --with-openssl \
- --with-dblib=gdbm \
- --with-gss_impl=mit \
- --with-devrandom=/dev/urandom \
- --without-pgsql \
- --without-mysql \
- --enable-anon \
- --enable-cram \
- --enable-digest \
- --enable-gssapi \
- --enable-login \
- --enable-ntlm \
- --enable-plain \
- --disable-ldapdb \
- --enable-checkapop \
- --enable-alwaystrue \
- --disable-java \
- --disable-krb4 \
- --disable-otp \
- --disable-srp \
- --disable-sql \
- --disable-passdss \
- --disable-macos-framework \
- --disable-static")
-
- # for remove unused
- pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
- def build():
- autotools.make("-j1")
- autotools.make("-C saslauthd testsaslauthd")
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- autotools.rawInstall("DESTDIR=%s -C plugins" % get.installDIR())
- pisitools.dodir("/etc/sasl2")
- pisitools.dodir("/run/saslauthd")
- for doc in ["AUTHORS", "COPYING", "ChangeLog", "LDAP_SASLAUTHD", "NEWS", "README"]:
- pisitools.newdoc("saslauthd/%s" % doc, "saslauthd/%s" % doc)
- pisitools.dohtml("doc/*.html")
- pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "doc/TODO", "doc/*.txt")
|