diff options
author | seb <seb@pkgsrc.org> | 2002-12-01 15:38:34 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2002-12-01 15:38:34 +0000 |
commit | df43349a71586fd69219227d7a668f68e2c130f4 (patch) | |
tree | 0998f40edae05577a7b7b115c66abf40b6e70826 /mail | |
parent | e225805136d780a78c9a0d9f77ebaa7dea7f15fc (diff) | |
download | pkgsrc-df43349a71586fd69219227d7a668f68e2c130f4.tar.gz |
Update to version 0.8.4.
Package Changes: update MASTER_SITES and HOMEPAGE.
Changes since previous version packaged:
Version 0.8.4 - 9 November 2002
-------------------------------
- Improvements/corrections on networking.
- Major bug fix related to rcopy/rmove.
Version 0.8.3 - 1 October 2002
------------------------------
- Bug fix/feature enhancement concerning the server announcing and closing
the connection immediately.
- Stale lockfile removed automatically.
- Many other small improvements (variable and compilation option added, etc.).
Version 0.8.2 - 31 July 2002
----------------------------
- Bug fix concerning the namespace of user's mailboxes.
Version 0.8.1 - 29 July 2002
----------------------------
- Major bug fix concerning SSL/TLS and rcopy/rmove.
- Small bug fix related to removing of the lock file.
Version 0.8 - 27 July 2002
--------------------------
- Copy/move messages between different mail accounts (IMAP mail servers)
support.
- Message flags can be changed.
- Capability to encrypt the accounts' passwords and store them securely
in the filesystem, using the integrated interactive password editor to
manage them.
- Passwords may be supplied interactively.
- Daemon mode in which the program polls repeatedly in a specified interval.
- Locking in order to prevent concurrent running instances.
- Variables to control direct expunging of mail and subscribing of newly
created mailboxes.
Version 0.7.3 - 17 June 2002
----------------------------
- Bug fix related to communication with some mail servers.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/imapfilter/Makefile | 8 | ||||
-rw-r--r-- | mail/imapfilter/distinfo | 8 | ||||
-rw-r--r-- | mail/imapfilter/patches/patch-aa | 47 |
3 files changed, 30 insertions, 33 deletions
diff --git a/mail/imapfilter/Makefile b/mail/imapfilter/Makefile index 3fe463e14b3..918a91c93ab 100644 --- a/mail/imapfilter/Makefile +++ b/mail/imapfilter/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.2 2002/10/25 11:58:54 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2002/12/01 15:38:34 seb Exp $ -DISTNAME= imapfilter-0.7.2 +DISTNAME= imapfilter-0.8.4 CATEGORIES= mail -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=imapfilter/} +MASTER_SITES= http://imapfilter.hellug.gr/source/ MAINTAINER= packages@netbsd.org -HOMEPAGE= http://imapfilter.sourceforge.net +HOMEPAGE= http://imapfilter.hellug.gr/ COMMENT= Mail filtering utility for the IMAP USE_BUILDLINK2= # defined diff --git a/mail/imapfilter/distinfo b/mail/imapfilter/distinfo index 08dcfb2297f..b17915e79dc 100644 --- a/mail/imapfilter/distinfo +++ b/mail/imapfilter/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2002/10/25 11:58:54 wiz Exp $ +$NetBSD: distinfo,v 1.4 2002/12/01 15:38:34 seb Exp $ -SHA1 (imapfilter-0.7.2.tar.gz) = c46b8f9bbecef7add099852d73447dfb36ea784f -Size (imapfilter-0.7.2.tar.gz) = 25216 bytes -SHA1 (patch-aa) = 752493c0658eec6ba5a1eaaae8d150dbf7dc276a +SHA1 (imapfilter-0.8.4.tar.gz) = 97e883941d081e056e1afd895905d184187923b6 +Size (imapfilter-0.8.4.tar.gz) = 37396 bytes +SHA1 (patch-aa) = 399b33a3b64acddb3da4143466e3cd14b81d6c74 diff --git a/mail/imapfilter/patches/patch-aa b/mail/imapfilter/patches/patch-aa index d95d39123af..f205aa3ddbb 100644 --- a/mail/imapfilter/patches/patch-aa +++ b/mail/imapfilter/patches/patch-aa @@ -1,28 +1,21 @@ -$NetBSD: patch-aa,v 1.2 2002/10/25 11:58:55 wiz Exp $ +$NetBSD: patch-aa,v 1.3 2002/12/01 15:38:34 seb Exp $ ---- Makefile.orig Tue Jan 22 00:17:58 2002 +--- Makefile.orig Sat Nov 9 14:36:30 2002 +++ Makefile -@@ -1,14 +1,9 @@ +@@ -1,9 +1,6 @@ -CC = cc --CFLAGS = -Wall -O2 -+DESTDIR = $(PREFIX) -+BINDIR = $(PREFIX)/bin -+MANDIR = $(PREFIX)/man - +-CFLAGS = -O +- -DESTDIR = /usr/local -BINDIR = /usr/local/bin -MANDIR = /usr/local/man -- --INSTALL = install -c --INST_DIR = install -d --INST_BIN = $(INSTALL) -m 755 --INST_DOC = $(INSTALL) -m 644 -+INST_BIN = $(BSD_INSTALL_PROGRAM) -+INST_DOC = $(BSD_INSTALL_MAN) ++DESTDIR = $(PREFIX) ++BINDIR = $(PREFIX)/bin ++MANDIR = $(PREFIX)/man MAN_BIN = imapfilter.1 MAN_RC = imapfilterrc.5 -@@ -19,19 +14,18 @@ OBJ = data.o file.o imap.o imapfilter.o +@@ -14,20 +11,19 @@ OBJ = data.o file.o imap.o imapfilter.o LIBS = -lssl -lcrypto @@ -32,16 +25,20 @@ $NetBSD: patch-aa,v 1.2 2002/10/25 11:58:55 wiz Exp $ - $(CC) $(LIBS) $(CFLAGS) -o $(BIN) $(OBJ) + $(CC) $(LDFLAGS) $(LIBS) $(CFLAGS) -o $(BIN) $(OBJ) - data.o file.o imap.o imapfilter.o log.o response.o request.o \ - memory.o socket.o: imapfilter.h config.h - data.o imapfilter.o imap.o file.o request.o socket.o: data.h + data.o file.o imap.o imapfilter.o lock.o log.o response.o request.o \ + memory.o passwd.o socket.o tty.o: imapfilter.h config.h + data.o imapfilter.o imap.o file.o passwd.o request.o socket.o: data.h install: imapfilter -- if test ! -d $(BINDIR); then $(INST_DIR) $(BINDIR); fi - $(INST_BIN) $(BIN) $(BINDIR) -- if test ! -d $(MANDIR)/man1; then $(INST_DIR) $(MANDIR)/man1; fi - $(INST_DOC) $(MAN_BIN) $(MANDIR)/man1 -- if test ! -d $(MANDIR)/man5; then $(INST_DIR) $(MANDIR)/man5; fi - $(INST_DOC) $(MAN_RC) $(MANDIR)/man5 +- if test ! -d $(BINDIR); then mkdir -p $(BINDIR); fi +- cp -f $(BIN) $(BINDIR) && chmod 0755 $(BINDIR)/$(BIN) +- if test ! -d $(MANDIR)/man1; then mkdir -p $(MANDIR)/man1; fi +- cp -f $(MAN_BIN) $(MANDIR)/man1 && chmod 0644 $(MANDIR)/man1/$(MAN_BIN) +- if test ! -d $(MANDIR)/man5; then mkdir -p $(MANDIR)/man5; fi +- cp -f $(MAN_RC) $(MANDIR)/man5 && chmod 0644 $(MANDIR)/man5/$(MAN_RC) ++ $(BSD_INSTALL_PROGRAM) $(BIN) $(BINDIR) ++ $(BSD_INSTALL_MAN) $(MAN_BIN) $(MANDIR)/man1 ++ $(BSD_INSTALL_MAN) $(MAN_RC) $(MANDIR)/man5 uninstall: + rm -f $(BINDIR)/$(BIN) $(MANDIR)/man1/$(MAN_BIN) $(MANDIR)/man5/$(MAN_RC) |