# HG changeset patch # User Christophe Lincoln # Date 1306275923 -7200 # Node ID b3a5a76246a31b2d6625beb77eec5264b34f6165 # Parent 46bdddb99587f357e5036d273a2f85ec2890654f cyrus-sasl: fix bdeps (need openssl-dev + rm libkrb5, if krb5 support is needed we must add krb5-dev to bdeps) diff -r 46bdddb99587 -r b3a5a76246a3 cyrus-sasl/receipt --- a/cyrus-sasl/receipt Wed May 25 00:21:47 2011 +0200 +++ b/cyrus-sasl/receipt Wed May 25 00:25:23 2011 +0200 @@ -8,20 +8,22 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://cyrusimap.web.cmu.edu/" WGET_URL="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/$TARBALL" -DEPENDS="libldap openssl libdb libsasl libsasl-modules libkrb5 libcomerr3" -BUILD_DEPENDS="openldap-dev db-dev" + +DEPENDS="libldap openssl libdb libsasl libsasl-modules libcomerr3" +BUILD_DEPENDS="openldap-dev db-dev openssl-dev" # Rules to configure and make the package. compile_rules() { cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --with-ldap=/usr --without-pam --with-devrandom=/dev/urandom \ - --with-openssl=/usr \ - --mandir=/usr/share/man $CONFIGURE_ARGS + ./configure \ + --with-ldap=/usr \ + --with-openssl=/usr \ + --without-pam \ + --with-devrandom=/dev/urandom \ + $CONFIGURE_ARGS sed -i 's/WITH_DES/WITH_DES 1/' config.h - make && - make DESTDIR=$PWD/_pkg install + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg.