wok view cyrus-sasl-pam/receipt @ rev 2431

cyrus-sasl-pam: use pam mechanism !
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 12 14:54:13 2009 +0000 (2009-03-12)
parents 22ab8eb50d81
children a4af2b62bb67
line source
1 # SliTaz package receipt.
3 PACKAGE="cyrus-sasl-pam"
4 VERSION="2.1.22"
5 CATEGORY="network"
6 SHORT_DESC="SASL authentication server using PAM."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="cyrus-sasl"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://cyrusimap.web.cmu.edu/"
11 WGET_URL="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/$TARBALL"
12 DEPENDS="libldap pam"
13 BUILD_DEPENDS="openldap-dev pam pam-dev"
14 PROVIDE="cyrus-sasl:pam"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --with-ldap=/usr --with-pam=/usr --with-devrandom=/dev/urandom \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/sasl2 $fs/var/state/saslauthd
31 cp -a $_pkg/usr/sbin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/sasl2/*.so* $fs/usr/lib/sasl2
34 cp -a ../$SOURCE/stuff/etc $fs
35 sed -i 's/shadow/pam/' $fs/etc/init.d/cyrus-sasl
36 }