diff options
author | olgeni <olgeni@FreeBSD.org> | 2013-05-25 17:39:23 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2013-05-25 17:39:23 +0800 |
commit | 96733d1e08ba0cef5e69655f001a31ba11a9f11c (patch) | |
tree | 18b10c3ffa9ec8fb1833973f8f3326abf5cdc074 /mail | |
parent | 03a4fa3dd6b97dde4ce6e5c04a6568fa98ef8572 (diff) | |
download | freebsd-ports-gnome-96733d1e08ba0cef5e69655f001a31ba11a9f11c.tar.gz freebsd-ports-gnome-96733d1e08ba0cef5e69655f001a31ba11a9f11c.tar.zst freebsd-ports-gnome-96733d1e08ba0cef5e69655f001a31ba11a9f11c.zip |
- Take maintainership from ports@
- Upgrade to snapshot of 2013-04-29 (5ebc6aae4d7c)
- Unbreak after dovecot upgrade to 2.2
Diffstat (limited to 'mail')
-rw-r--r-- | mail/dovecot2-antispam-plugin/Makefile | 14 | ||||
-rw-r--r-- | mail/dovecot2-antispam-plugin/distinfo | 4 | ||||
-rw-r--r-- | mail/dovecot2-antispam-plugin/files/patch-src_mailbox.c | 23 |
3 files changed, 9 insertions, 32 deletions
diff --git a/mail/dovecot2-antispam-plugin/Makefile b/mail/dovecot2-antispam-plugin/Makefile index cb9958abf523..073ff1eff1b5 100644 --- a/mail/dovecot2-antispam-plugin/Makefile +++ b/mail/dovecot2-antispam-plugin/Makefile @@ -2,21 +2,21 @@ # $FreeBSD$ PORTNAME= dovecot2-antispam-plugin -PORTVERSION= 20101222 -PORTREVISION= 7 +PORTVERSION= 20130429 CATEGORIES= mail -MASTER_SITES= http://www.bamus.cz/distfiles/ +MASTER_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ + LOCAL/olgeni DISTFILES= dovecot-antispam-plugin-${DISTVERSION}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= olgeni@FreeBSD.org COMMENT= Dovecot 2.x plugin for spam systems training -BUILD_DEPENDS= dovecot>=2.0.7:${PORTSDIR}/mail/dovecot2 \ +BUILD_DEPENDS= dovecot>=2.2.0:${PORTSDIR}/mail/dovecot2 \ gawk:${PORTSDIR}/lang/gawk -RUN_DEPENDS= dovecot>=2.0.7:${PORTSDIR}/mail/dovecot2 +RUN_DEPENDS= dovecot>=2.2.0:${PORTSDIR}/mail/dovecot2 CONFLICTS= dovecot-antispam-1.* -WRKSRC= ${WRKDIR}/dovecot-antispam-plugin-43880985e3dd +WRKSRC= ${WRKDIR}/dovecot-antispam-plugin-5ebc6aae4d7c USE_AUTOTOOLS= aclocal autoheader autoconf USE_BZIP2= yes diff --git a/mail/dovecot2-antispam-plugin/distinfo b/mail/dovecot2-antispam-plugin/distinfo index f6f03081b6e5..ba56e2be8c42 100644 --- a/mail/dovecot2-antispam-plugin/distinfo +++ b/mail/dovecot2-antispam-plugin/distinfo @@ -1,2 +1,2 @@ -SHA256 (dovecot-antispam-plugin-20101222.tar.bz2) = 3b72e3d6ac639abb64356ca330a2e41f183c11452d563ed8ac4a0f7b4ea55582 -SIZE (dovecot-antispam-plugin-20101222.tar.bz2) = 55753 +SHA256 (dovecot-antispam-plugin-20130429.tar.bz2) = d615b8667b053741336aa1506558dd23f92e5b23f35f8addf1d8bb564cf1a816 +SIZE (dovecot-antispam-plugin-20130429.tar.bz2) = 56340 diff --git a/mail/dovecot2-antispam-plugin/files/patch-src_mailbox.c b/mail/dovecot2-antispam-plugin/files/patch-src_mailbox.c deleted file mode 100644 index 5fc765ba2201..000000000000 --- a/mail/dovecot2-antispam-plugin/files/patch-src_mailbox.c +++ /dev/null @@ -1,23 +0,0 @@ -diff -r 43880985e3dd -r 5e8351bcfb29 src/mailbox.c ---- src/mailbox.c Wed Dec 22 22:34:22 2010 +0200 -+++ src/mailbox.c Sun Feb 26 21:34:05 2012 +0200 -@@ -135,7 +135,7 @@ - struct mailbox_transaction_context *t = ctx->transaction; - struct antispam_mailbox *asmb = STORAGE_CONTEXT(t->box); - -- if (ctx->copying == 0) -+ if (ctx->copying_via_save == 0) - { - struct antispam_user *asu = USER_CONTEXT(t->box->storage->user); - -@@ -171,7 +171,7 @@ - - // if we are copying then copy() code will do everything needed - int ret = asmb->module_ctx.super.save_finish(ctx); -- if (ctx->copying != 0 || ret != 0) -+ if (ctx->copying_via_save != 0 || ret != 0) - return ret; - - // since there is no source mailbox, let's assume - - |