summaryrefslogtreecommitdiffstats
path: root/exim/Pkgfile.old
blob: da2fee5a9c8b05deee4fe2fbd8b7d80393cc435e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Description: Mail transfer agent
# URL:         http://www.exim.org
# Maintainer:  CRUX System Team, core-ports at crux dot nu
# Depends on:  db openssl libpcre tcp_wrappers

name=exim
version=4.72
release=1
source=(ftp://ftp.exim.org/pub/exim/exim4/$name-$version.tar.bz2 \
        $name $name-config.patch)

build() {
    cd $name-$version

    sed "s/#CFLAGS#/$CFLAGS/" $SRC/$name-config.patch | patch -p1
    cp src/EDITME Local/Makefile

    make -j1
    make DESTDIR=$PKG install

    install -D -m 755 $SRC/exim $PKG/etc/rc.d/exim
    install -D -m 644 doc/exim.8 $PKG/usr/man/man8/exim.8

    install -d $PKG/var/{log,spool} $PKG/usr/bin
    install -d -m 0750 -o mail -g mail $PKG/var/{log,spool}/exim

    touch $PKG/var/log/exim/exim_{mainlog,paniclog,rejectlog}
    chown mail:mail $PKG/var/log/exim/*
    chmod 640 $PKG/var/log/exim/*

    ln -sf $name-$version-1 $PKG/usr/sbin/sendmail
    ln -sf ../sbin/$name-$version-1 $PKG/usr/bin/mailq
}