aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorleeym <leeym@FreeBSD.org>2004-03-03 00:21:53 +0800
committerleeym <leeym@FreeBSD.org>2004-03-03 00:21:53 +0800
commit1ebef0ec4a39c2353ba103b94396ded8908bb460 (patch)
tree3c2c98ea63781f2f1392d5723ccfea8af6ce12a0 /mail
parent6d1a0245f02bc01eac95045f19ed8365cf00768b (diff)
downloadfreebsd-ports-gnome-1ebef0ec4a39c2353ba103b94396ded8908bb460.tar.gz
freebsd-ports-gnome-1ebef0ec4a39c2353ba103b94396ded8908bb460.tar.zst
freebsd-ports-gnome-1ebef0ec4a39c2353ba103b94396ded8908bb460.zip
From http://abook.sourceforge.net/
In 0.5.1 there is a bug in mutt import filter which causes crashes. - Add files/patch-aa - Bump PORTREVISION PR: 63610 Submitted by: Toni Viemero <toni.viemero@iki.fi>
Diffstat (limited to 'mail')
-rw-r--r--mail/abook/Makefile1
-rw-r--r--mail/abook/files/patch-aa11
2 files changed, 12 insertions, 0 deletions
diff --git a/mail/abook/Makefile b/mail/abook/Makefile
index f562cf10d277..aff15fdd39cb 100644
--- a/mail/abook/Makefile
+++ b/mail/abook/Makefile
@@ -7,6 +7,7 @@
PORTNAME= abook
PORTVERSION= 0.5.1
+PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
diff --git a/mail/abook/files/patch-aa b/mail/abook/files/patch-aa
new file mode 100644
index 000000000000..f34d2438a4b7
--- /dev/null
+++ b/mail/abook/files/patch-aa
@@ -0,0 +1,11 @@
+--- /tmp/abook-0.5.1/filter.c 2003-11-20 14:58:34.000000000 +0200
++++ filter.c 2004-01-22 13:47:31.000000000 +0200
+@@ -646,7 +646,7 @@
+ }
+
+ strncpy(*alias, tmp, ptr - tmp - 1);
+- *(*alias + (ptr - tmp)) = 0;
++ *(*alias + (ptr - tmp - 1)) = 0;
+
+ while(ISSPACE(*ptr))
+ ptr++;