wok view dovecot/receipt @ rev 14017

Up gst-plugins-base (0.10.36)
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 17 19:55:44 2013 +0100 (2013-02-17)
parents 7f0d30db2f42
children 10e6c72b2c15
line source
1 # SliTaz package receipt.
3 PACKAGE="dovecot"
4 VERSION="2.1.6"
5 CATEGORY="network"
6 SHORT_DESC="Dovecot IMAP and POP3 Server."
7 MAINTAINER="l.lemarinel@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://dovecot.org"
10 WGET_URL="http://www.dovecot.org/releases/${VERSION:0:3}/$TARBALL"
12 DEPENDS="libssl libcap openldap pam postgresql libmysqlclient"
13 BUILD_DEPENDS="openssl-dev libcap-dev openldap-dev \
14 libmysqlclient mysql-dev sqlite-dev pam-dev postgresql-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc/dovecot \
22 --localstatedir=/var \
23 --libexecdir=/usr/lib/$PACKAGE \
24 --with-ssl=openssl \
25 --with-ldap=plugin \
26 --with-sql=plugin \
27 --with-mysql \
28 --with-pgsql \
29 --with-sqlite \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/lib \
40 $fs/var/log/dovecot \
41 $fs/var/run/dovecot \
42 $fs/etc/ssl/misc
45 cp -a $install/usr/sbin $fs/usr
46 cp -a $install/usr/bin $fs/usr
47 cp -a $install/usr/lib $fs/usr
48 cp -a $install/etc $fs/
50 cp -pa $stuff/init.d $fs/etc
52 #cp -pa $fs/etc/dovecot/dovecot-example.conf $fs/etc/dovecot/dovecot.conf
53 cp -pa $install/usr/share/doc/dovecot/example-config/* $fs/etc/dovecot/
54 #cp -pa $src/doc/example-config/conf.d/*.conf $fs/etc/dovecot/conf.d
55 #cp -pa $src/doc/example-config/conf.d/*.ext $fs/etc/dovecot/conf.d
56 cp -pa $src/doc/*.cnf $fs/etc/ssl
57 cp -pa $src/doc/mkcert.sh $fs/etc/ssl/misc/dovmkcert.sh
59 # Remove archive file *.*a
60 find $fs -name "*.*a" -exec rm -f {} \;
62 # Fix perms
63 chmod 755 $fs/etc/ssl/misc/*
65 # Customising config.
66 sed -i -e "s/^#default_vsz_limit.*/default_vsz_limit = 50M"/ \
67 $fs/etc/dovecot/conf.d/10-master.conf
69 sed -i -e "s!^#log_path =.*!log_path = /var/log/dovecot/dovecot.log"! \
70 $fs/etc/dovecot/conf.d/10-logging.conf
72 sed -i -e "s/^#listen.*/listen = *"/ \
73 $fs/etc/dovecot/dovecot.conf
74 }
76 #nd post install commands for Tazpkg.
77 post_install()
78 {
79 local user
80 local group
82 user=dovecot
83 group=dovecot
85 if ! grep -q $user $1/etc/passwd; then
86 echo -n "Adding user/group $user..."
87 chroot $1/ addgroup -g 76 -S $group
88 chroot $1/ adduser -u 76 -S -D -H -G $group $user
89 chroot $1/ adduser -u 74 -S -D -H -G nogroup dovenull
90 status
91 fi
94 # Set perms for files and directories
95 chroot $1/ chown -R ${user}.${group} /var/log/${user} \
96 /var/run/${user}
98 cat <<EOF
99 ----
100 To start $PACKAGE server you can run :
102 /etc/init.d/$PACKAGE start
104 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
105 ----
106 EOF
107 }
110 post_remove()
111 {
112 echo "Removing stalled files..."
113 test -d $1/var/log/dovecot && rm -rf $1/var/log/dovecot
114 test -d $1/var/run/dovecot && rm -rf $1/var/run/dovecot
116 echo "Removing user/group daemon"
117 chroot "$1/" deluser dovecot
118 chroot "$1/" deluser dovenull
119 }