wok view perdition-pam/receipt @ rev 19321

apache: update PIDFILE
author Richard Dunbar <mojo@slitaz.org>
date Wed Jul 13 20:20:01 2016 -0400 (2016-07-13)
parents 9e01bc6321ea
children 113d38a1e4e9
line source
1 # SliTaz package receipt.
3 PACKAGE="perdition-pam"
4 VERSION="2.1"
5 CATEGORY="network"
6 SHORT_DESC="IMAP/POP proxy."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="perdition"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.vergenet.net/linux/$SOURCE"
12 WGET_URL="$WEB_SITE/download/$VERSION/$TARBALL"
13 CONFIG_FILES="/etc/perdition"
14 PROVIDE="perdition:pam"
16 DEPENDS="vanessa_logger vanessa_adt vanessa_socket libldap openssl cyrus-sasl \
17 pam glibc-base libkrb5 libcomerr3 gdbm"
18 BUILD_DEPENDS="vanessa_logger-dev vanessa_adt-dev vanessa_socket-dev \
19 openldap-dev pam pam-dev popt-dev cyrus-sasl-dev openssl-dev libidn-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure --prefix=/usr --infodir=/usr/share/info \
25 --disable-ldap-doc --disable-nis \
26 --disable-odbc --disable-mysql --disable-pg --disable-bdb \
27 --disable-cdb --disable-gdbm \
28 --sysconfdir=/etc --localstatedir=/var \
29 --mandir=/usr/share/man $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib $fs/etc/openldap/schema
38 cp -a $install/etc $fs
39 rm -f $fs/etc/perdition/perdition.conf
40 cp -a ../$SOURCE/stuff/etc $fs
41 cp -a $install/usr/sbin $fs/usr
42 cp -a $install/usr/lib/*.so* $fs/usr/lib
43 for i in pop3 pop3s imap4 imap4s imaps; do
44 mkdir -p $fs/var/run/perdition.$i
45 done
46 cp $src/perdition/db/ldap/perdition.schema $fs/etc/openldap/schema
47 }
49 # Pre and post install commands for Tazpkg.
50 post_install()
51 {
52 for i in pop3 pop3s imap4 imap4s imaps; do
53 chown nobody.nogroup "$1/var/run/perdition.$i"
54 done
55 cat <<EOF
56 ----
57 Perdition will forward to the 127.0.0.1:50143 imap server.
58 Can you change listen="imap" to listen="50143" in /etc/cyrus.conf
59 and restart cyrus-imap, or modify files in /etc/perdition.
60 To start $SOURCE server you can run :
62 /etc/init.d/$SOURCE start
64 Or add $SOURCE to RUN_DAEMONS in /etc/rcS.conf
65 ----
66 EOF
67 }