maildrop: update to 3.0.2

This commit is contained in:
Juergen Daubert 2021-02-16 14:03:44 +01:00
parent e3a679a63a
commit d6f9494d44
2 changed files with 20 additions and 19 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/ZWCKvElNeSkLi/kkk4Gc6T42+KYbINyOsGNQ8SaF4hkJg81zSr0o1pMTO8BoxazuCmIIkB6tpR4RC2d3Af7swA= RWSE3ohX2g5d/YDhlXQEm0u6qMk9EBpeAdWzBpX8uGvL+DAkdCnuUa+nslc8HOkvaO3SX52XvKgGPK55c+YMr6SDd4dUsYCP5QU=
SHA256 (Pkgfile) = c957ec39bed92bff6351a4bf59de859cb714b1c7b23084e3d84dcd8688c5cbb5 SHA256 (Pkgfile) = d3411a6d8de4df929893a3f01545c26c5a530c37bf611c473a7ac408a9a27ee8
SHA256 (.footprint) = 5db95470879a80622486eb0d9098a0c2f3cc808b4e82d9c7fce16b55be82602f SHA256 (.footprint) = 5db95470879a80622486eb0d9098a0c2f3cc808b4e82d9c7fce16b55be82602f
SHA256 (maildrop-3.0.1.tar.bz2) = 5d0c3643ebfd45a31335dcabc09d014388476db3da329ab9cd5e5dd2aa484a7e SHA256 (maildrop-3.0.2.tar.bz2) = 0b53d93da9851e520d218dce07c94c79754893a2f80de1036eebaa85cb2bd597

View File

@ -1,25 +1,26 @@
# Description: Mail Delivery Agent with filtering abilities # Description: Mail Delivery Agent with filtering abilities
# URL: http://www.courier-mta.org/maildrop/ # URL: http://www.courier-mta.org/maildrop/
# Maintainer: Juergen Daubert, jue at crux dot nu # Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: gdbm libpcre courier-unicode libidn # Depends on: gdbm libpcre courier-unicode libidn
name=maildrop name=maildrop
version=3.0.1 version=3.0.2
release=1 release=1
source=(http://download.sourceforge.net/project/courier/$name/$version/$name-$version.tar.bz2) source=(http://download.sourceforge.net/project/courier/$name/$version/$name-$version.tar.bz2)
build () { build () {
cd $name-$version cd $name-$version
./configure --prefix=/usr \ ./configure \
--with-db=gdbm \ --prefix=/usr \
--enable-maildrop-uid=root \ --with-db=gdbm \
--enable-maildrop-gid=root \ --enable-maildrop-uid=root \
--disable-tempdir \ --enable-maildrop-gid=root \
--enable-syslog=1 --disable-tempdir \
make --enable-syslog=1
make DESTDIR=$PKG install make
make DESTDIR=$PKG install
chmod u+s $PKG/usr/bin/maildrop
rm -r $PKG/usr/share/{man/man3,doc} chmod u+s $PKG/usr/bin/maildrop
rm -r $PKG/usr/share/{man/man3,doc}
} }