blob: 7cf00645aa71d7249172c0b00139248d03a56714 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=milter-greylist
pkgver=4.6.1
pkgrel=1
pkgdesc="Stand-alone milter written in C that implements the greylist filtering method"
url="http://hcpnet.free.fr/milter-greylist"
arch="all"
license="GPL"
depends=
depends_dev=
makedepends="$depends_dev bison flex geoip-dev libmilter-dev libspf2-dev"
install="$pkgname.pre-install"
subpackages="$pkgname-doc"
pkgusers="smmsp"
pkggroups="smmsp"
source="ftp://ftp.espci.fr/pub/milter-greylist/$pkgname-$pkgver.tgz
milter-greylist-conf.patch
"
builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
#autoreconf -vif
}
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var/lib \
--with-libspf2 \
--with-user=smmsp \
--with-conffile=/etc/$pkgname/greylist.conf \
--with-dumpfile=/var/lib/$pkgname/greylist.db \
--with-thread-safe-resolver \
--with-libGeoIP \
--enable-postfix \
--enable-spamassassin \
--enable-dnsrbl \
--disable-rpath
make -j1 || return 1
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install || return 1
install -m755 -D ../../$pkgname.initd "$pkgdir"/etc/init.d/$pkgname || return 1
install -m644 -D greylist2.conf "$pkgdir"/etc/$pkgname/greylist2.conf
mkdir -p "$pkgdir"/var/lib/$pkgname
chown -R smmsp:smmsp "$pkgdir"/var/lib/$pkgname
}
md5sums="f50f89fd5cb81b124f4e7933f197f7a6 milter-greylist-4.6.1.tgz
141e3b79fcea533cdd9ae57f2d731f24 milter-greylist-conf.patch"
sha256sums="98aea7e5a1c9245e04d8e1cc650ca085a738784dae7f2147d898e5b86b1ddbc0 milter-greylist-4.6.1.tgz
973788cd06c96d7e9c02d9ccfc1dd62f85c3ef635b44873755575033b7a97336 milter-greylist-conf.patch"
sha512sums="28d6f35b377f595777c26aa570b74c49f828f85fa3c53c02d887c89c96b50a25d758d361c0f8686b913465557bd7a2d1f0d53c40a9b73a3b3e8d3dc53c014f54 milter-greylist-4.6.1.tgz
4057061fae24a8d008c6a8aed82018a4bb9f6e9ce72a13d9369d54b192e9a6e99b0e72db8905aa182879c9522b87a92844d0be92773843773508a21e42dbd447 milter-greylist-conf.patch"
|