wok diff perdition/receipt @ rev 23373
updated perl-net-dns (0.66 -> 1.23)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 31 13:47:04 2020 +0100 (2020-03-31) |
parents | c7a23f0fad68 |
children | 2a0479881723 |
line diff
1.1 --- a/perdition/receipt Wed Jan 13 23:15:10 2016 +0100 1.2 +++ b/perdition/receipt Tue Mar 31 13:47:04 2020 +0100 1.3 @@ -1,31 +1,42 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="perdition" 1.7 -VERSION="2.1" 1.8 +VERSION="2.2" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="IMAP/POP proxy." 1.11 +SHORT_DESC="Fully featured POP3 and IMAP4 proxy server." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="http://www.vergenet.net/linux/$PACKAGE" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://www.vergenet.net/linux/$PACKAGE" 1.18 WGET_URL="$WEB_SITE/download/$VERSION/$TARBALL" 1.19 + 1.20 +DEPENDS="vanessa_logger vanessa_adt vanessa_socket libldap openssl cyrus-sasl \ 1.21 + glibc-base libkrb5 libcomerr3 gdbm" 1.22 +BUILD_DEPENDS="vanessa_logger-dev vanessa_adt-dev vanessa_socket-dev \ 1.23 + openldap-dev popt-dev cyrus-sasl-dev openssl-dev libidn-dev" 1.24 CONFIG_FILES="/etc/perdition" 1.25 BUGS="Very slow: more than 10 seconds for login with squirrelmail, why ?" 1.26 1.27 -DEPENDS="vanessa_logger vanessa_adt vanessa_socket libldap openssl cyrus-sasl \ 1.28 - glibc-base libkrb5 libcomerr3 gdbm" 1.29 -BUILD_DEPENDS="vanessa_logger-dev vanessa_adt-dev vanessa_socket-dev \ 1.30 -openldap-dev popt-dev cyrus-sasl-dev openssl-dev libidn-dev" 1.31 - 1.32 # Rules to configure and make the package. 1.33 compile_rules() 1.34 { 1.35 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.36 - --disable-ldap-doc --disable-nis \ 1.37 - --disable-odbc --disable-mysql --disable-pg --disable-bdb \ 1.38 - --disable-cdb --disable-gdbm --disable-pam \ 1.39 - --sysconfdir=/etc --localstatedir=/var \ 1.40 - --mandir=/usr/share/man $CONFIGURE_ARGS && 1.41 + ./configure \ 1.42 + --prefix=/usr \ 1.43 + --infodir=/usr/share/info \ 1.44 + --disable-ldap-doc \ 1.45 + --disable-nis \ 1.46 + --disable-odbc \ 1.47 + --disable-mysql \ 1.48 + --disable-pg \ 1.49 + --disable-bdb \ 1.50 + --disable-cdb \ 1.51 + --disable-gdbm \ 1.52 + --disable-pam \ 1.53 + --sysconfdir=/etc \ 1.54 + --localstatedir=/var \ 1.55 + --mandir=/usr/share/man \ 1.56 + $CONFIGURE_ARGS && 1.57 make && 1.58 make DESTDIR=$DESTDIR install 1.59 } 1.60 @@ -33,16 +44,20 @@ 1.61 # Rules to gen a SliTaz package suitable for Tazpkg. 1.62 genpkg_rules() 1.63 { 1.64 - mkdir -p $fs/usr/lib $fs/etc/openldap/schema 1.65 - cp -a $install/etc $fs 1.66 + mkdir -p $fs/usr/lib 1.67 + mkdir -p $fs/etc/openldap/schema 1.68 + 1.69 + cp -a $install/etc $fs 1.70 rm -f $fs/etc/perdition/perdition.conf 1.71 - cp -a $stuff/etc $fs 1.72 - cp -a $install/usr/sbin $fs/usr 1.73 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.74 + 1.75 + cp -a $stuff/etc $fs 1.76 + cp -a $install/usr/sbin $fs/usr 1.77 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.78 for i in pop3 pop3s imap4 imap4s imaps; do 1.79 mkdir -p $fs/var/run/perdition.$i 1.80 done 1.81 - cp $src/perdition/db/ldap/perdition.schema $fs/etc/openldap/schema 1.82 + cp $src/perdition/db/ldap/perdition.schema \ 1.83 + $fs/etc/openldap/schema 1.84 } 1.85 1.86 # Pre and post install commands for Tazpkg.