pkgsrc/mail/imapfilter/patches/patch-aa

67 lines
2.2 KiB
Text
Raw Normal View History

$NetBSD: patch-aa,v 1.6 2006/01/15 14:28:07 seb Exp $
--- Makefile.orig 2005-11-10 23:21:55.000000000 +0000
2002-10-25 13:56:13 +02:00
+++ Makefile
@@ -1,18 +1,11 @@
-DESTDIR = /usr/local
-BINDIR = /usr/local/bin
-SHAREDIR = /usr/local/share/imapfilter
-MANDIR = /usr/local/man
-
-INCDIRS = -I/usr/local/include
-LIBDIRS = -L/usr/local/lib
-
-MYCFLAGS = -Wall -O
-MYLDFLAGS =
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.
2002-12-01 16:38:34 +01:00
+DESTDIR = $(PREFIX)
+BINDIR = $(PREFIX)/bin
+SHAREDIR = $(PREFIX)/share/imapfilter
+MANDIR = $(PREFIX)/$(PKGMANDIR)
DEFS = -DMAKEFILE_SHAREDIR='"$(SHAREDIR)"'
-CFLAGS = $(MYCFLAGS) $(DEFS) $(INCDIRS)
-LDFLAGS = $(MYLDFLAGS) $(LIBDIRS)
+CFLAGS+= $(DEFS)
LIBS = -lm -llua -llualib -lssl -lcrypto
@@ -30,7 +23,7 @@ OBJ = auth.o buffer.o cert.o core.o file
all: $(BIN)
$(BIN): $(OBJ)
- $(CC) -o $(BIN) $(LDFLAGS) $(OBJ) $(LIBS)
+ $(CC) -o $(BIN) $(LDFLAGS) $(CFLAGS) $(OBJ) $(LIBS)
$(OBJ): imapfilter.h
buffer.o imap.o imapfilter.o namespace.o request.o response.o: buffer.h
@@ -42,19 +35,15 @@ auth.o cert.o imap.o imapfilter.o log.o
Update to version 0.9.2. Changes since last packaged version below. Version 0.9.2 - 9 August 2003 ----------------------------- - Header includes additions, in order to build without warning/errors on systems that do not conform to IEEE Std 1003.1-2001 (POSIX.1). Version 0.9.1 - 8 August 2003 ----------------------------- - Bug fixes related to compilation warnings/errors caused by missing header includes. - Minor bug fix concerning an uninitialized variable. Version 0.9 - 6 August 2003 --------------------------- - User authentication with the Challenge-Response Authentication Mechanism (CRAM), specifically CRAM-MD5. - Connection encryption using the IMAP STARTTLS extension. - X509 certificate checking while establishing SSL/TLS connections. - I18n support in the configuration file, along with the capability to specify the character set of the search criteria. - Date conversion specifiers in the name of the destination mailbox, based on either the system's local time or the message's envelope "Date:" header. - Default variable in the name of the destination mailbox, which expands to the mailbox currently processed. - In daemon mode, the SIGUSR1 signal wakes up the program from its sleep phase and causes rereading of the configuration file. Version 0.8.9 - 26 May 2003 --------------------------- - Fix of a bug which caused problems during the encryption/decryption of the passwords file. Version 0.8.8 - 25 May 2003 --------------------------- - Multiple bug fixes concerning the encrypted passwords editor, where in some cases the passwords file was badly written and the program did not accept the master passphrase.
2003-08-23 22:52:57 +02:00
imapfilter.o: version.h
install: $(BIN)
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.
2002-12-01 16:38:34 +01:00
- if test ! -d $(BINDIR); then mkdir -p $(BINDIR); fi
- cp -f $(BIN) $(BINDIR) && chmod 0755 $(BINDIR)/$(BIN)
- if test ! -d $(SHAREDIR); then mkdir -p $(SHAREDIR); fi
- cp -f $(INTERFACE_LUA) $(SHAREDIR) && \
- chmod 0644 $(SHAREDIR)/$(INTERFACE_LUA)
- cp -f $(AUXILIARY_LUA) $(SHAREDIR) && \
- chmod 0644 $(SHAREDIR)/$(AUXILIARY_LUA)
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.
2002-12-01 16:38:34 +01:00
- if test ! -d $(MANDIR)/man1; then mkdir -p $(MANDIR)/man1; fi
- cp -f $(MAN_BIN) $(MANDIR)/man1 && \
- chmod 0644 $(MANDIR)/man1/$(MAN_BIN)
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.
2002-12-01 16:38:34 +01:00
- if test ! -d $(MANDIR)/man5; then mkdir -p $(MANDIR)/man5; fi
- cp -f $(MAN_CONFIG) $(MANDIR)/man5 && \
- chmod 0644 $(MANDIR)/man5/$(MAN_CONFIG)
Update to version 0.9.2. Changes since last packaged version below. Version 0.9.2 - 9 August 2003 ----------------------------- - Header includes additions, in order to build without warning/errors on systems that do not conform to IEEE Std 1003.1-2001 (POSIX.1). Version 0.9.1 - 8 August 2003 ----------------------------- - Bug fixes related to compilation warnings/errors caused by missing header includes. - Minor bug fix concerning an uninitialized variable. Version 0.9 - 6 August 2003 --------------------------- - User authentication with the Challenge-Response Authentication Mechanism (CRAM), specifically CRAM-MD5. - Connection encryption using the IMAP STARTTLS extension. - X509 certificate checking while establishing SSL/TLS connections. - I18n support in the configuration file, along with the capability to specify the character set of the search criteria. - Date conversion specifiers in the name of the destination mailbox, based on either the system's local time or the message's envelope "Date:" header. - Default variable in the name of the destination mailbox, which expands to the mailbox currently processed. - In daemon mode, the SIGUSR1 signal wakes up the program from its sleep phase and causes rereading of the configuration file. Version 0.8.9 - 26 May 2003 --------------------------- - Fix of a bug which caused problems during the encryption/decryption of the passwords file. Version 0.8.8 - 25 May 2003 --------------------------- - Multiple bug fixes concerning the encrypted passwords editor, where in some cases the passwords file was badly written and the program did not accept the master passphrase.
2003-08-23 22:52:57 +02:00
+ $(BSD_INSTALL_PROGRAM_DIR) $(BINDIR)
+ $(BSD_INSTALL_PROGRAM) $(BIN) $(BINDIR)/$(BIN)
+ $(BSD_INSTALL_DATA_DIR) $(SHAREDIR)
+ $(BSD_INSTALL_DATA) $(INTERFACE_LUA) $(SHAREDIR)/$(INTERFACE_LUA)
+ $(BSD_INSTALL_DATA) $(AUXILIARY_LUA) $(SHAREDIR)/$(AUXILIARY_LUA)
Update to version 0.9.2. Changes since last packaged version below. Version 0.9.2 - 9 August 2003 ----------------------------- - Header includes additions, in order to build without warning/errors on systems that do not conform to IEEE Std 1003.1-2001 (POSIX.1). Version 0.9.1 - 8 August 2003 ----------------------------- - Bug fixes related to compilation warnings/errors caused by missing header includes. - Minor bug fix concerning an uninitialized variable. Version 0.9 - 6 August 2003 --------------------------- - User authentication with the Challenge-Response Authentication Mechanism (CRAM), specifically CRAM-MD5. - Connection encryption using the IMAP STARTTLS extension. - X509 certificate checking while establishing SSL/TLS connections. - I18n support in the configuration file, along with the capability to specify the character set of the search criteria. - Date conversion specifiers in the name of the destination mailbox, based on either the system's local time or the message's envelope "Date:" header. - Default variable in the name of the destination mailbox, which expands to the mailbox currently processed. - In daemon mode, the SIGUSR1 signal wakes up the program from its sleep phase and causes rereading of the configuration file. Version 0.8.9 - 26 May 2003 --------------------------- - Fix of a bug which caused problems during the encryption/decryption of the passwords file. Version 0.8.8 - 25 May 2003 --------------------------- - Multiple bug fixes concerning the encrypted passwords editor, where in some cases the passwords file was badly written and the program did not accept the master passphrase.
2003-08-23 22:52:57 +02:00
+ $(BSD_INSTALL_MAN_DIR) $(MANDIR)/man1
+ $(BSD_INSTALL_MAN) $(MAN_BIN) $(MANDIR)/man1/$(MAN_BIN)
Update to version 0.9.2. Changes since last packaged version below. Version 0.9.2 - 9 August 2003 ----------------------------- - Header includes additions, in order to build without warning/errors on systems that do not conform to IEEE Std 1003.1-2001 (POSIX.1). Version 0.9.1 - 8 August 2003 ----------------------------- - Bug fixes related to compilation warnings/errors caused by missing header includes. - Minor bug fix concerning an uninitialized variable. Version 0.9 - 6 August 2003 --------------------------- - User authentication with the Challenge-Response Authentication Mechanism (CRAM), specifically CRAM-MD5. - Connection encryption using the IMAP STARTTLS extension. - X509 certificate checking while establishing SSL/TLS connections. - I18n support in the configuration file, along with the capability to specify the character set of the search criteria. - Date conversion specifiers in the name of the destination mailbox, based on either the system's local time or the message's envelope "Date:" header. - Default variable in the name of the destination mailbox, which expands to the mailbox currently processed. - In daemon mode, the SIGUSR1 signal wakes up the program from its sleep phase and causes rereading of the configuration file. Version 0.8.9 - 26 May 2003 --------------------------- - Fix of a bug which caused problems during the encryption/decryption of the passwords file. Version 0.8.8 - 25 May 2003 --------------------------- - Multiple bug fixes concerning the encrypted passwords editor, where in some cases the passwords file was badly written and the program did not accept the master passphrase.
2003-08-23 22:52:57 +02:00
+ $(BSD_INSTALL_MAN_DIR) $(MANDIR)/man5
+ $(BSD_INSTALL_MAN) $(MAN_CONFIG) $(MANDIR)/man5/$(MAN_CONFIG)
Update to version 0.9.2. Changes since last packaged version below. Version 0.9.2 - 9 August 2003 ----------------------------- - Header includes additions, in order to build without warning/errors on systems that do not conform to IEEE Std 1003.1-2001 (POSIX.1). Version 0.9.1 - 8 August 2003 ----------------------------- - Bug fixes related to compilation warnings/errors caused by missing header includes. - Minor bug fix concerning an uninitialized variable. Version 0.9 - 6 August 2003 --------------------------- - User authentication with the Challenge-Response Authentication Mechanism (CRAM), specifically CRAM-MD5. - Connection encryption using the IMAP STARTTLS extension. - X509 certificate checking while establishing SSL/TLS connections. - I18n support in the configuration file, along with the capability to specify the character set of the search criteria. - Date conversion specifiers in the name of the destination mailbox, based on either the system's local time or the message's envelope "Date:" header. - Default variable in the name of the destination mailbox, which expands to the mailbox currently processed. - In daemon mode, the SIGUSR1 signal wakes up the program from its sleep phase and causes rereading of the configuration file. Version 0.8.9 - 26 May 2003 --------------------------- - Fix of a bug which caused problems during the encryption/decryption of the passwords file. Version 0.8.8 - 25 May 2003 --------------------------- - Multiple bug fixes concerning the encrypted passwords editor, where in some cases the passwords file was badly written and the program did not accept the master passphrase.
2003-08-23 22:52:57 +02:00
deinstall:
rm -f $(BINDIR)/$(BIN) $(SHAREDIR)/$(INTERFACE_LUA) \