summaryrefslogtreecommitdiff
path: root/mail/etpan/patches/patch-aa
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2005-08-06 05:32:19 +0000
committerxtraeme <xtraeme>2005-08-06 05:32:19 +0000
commit9cbb61e428ce184ee36075da1b39cb9e46e1f57f (patch)
treef364769639ab36ea3774c1cadf3d0c7a1848c67a /mail/etpan/patches/patch-aa
parent384ffeaf043c506e13ad43c16b93c3514a8cf415 (diff)
downloadpkgsrc-9cbb61e428ce184ee36075da1b39cb9e46e1f57f.tar.gz
Initial import of etpan-0.6.1 from pkgsrc-wip.
etPan is a mail client that is based on libEtPan! Features: * IMAP4rev1 / POP3 / NNTP / mbox / mh / maildir * virtual folder tree * multiple folder views and message views * smart multi-threading * PGP signing and encryption (using GnuPG as external command) * S/MIME signing and encryption (using OpenSSL as external command) * SPAM process (using bogofilter as external command) * user interface for configuration edition
Diffstat (limited to 'mail/etpan/patches/patch-aa')
-rw-r--r--mail/etpan/patches/patch-aa43
1 files changed, 43 insertions, 0 deletions
diff --git a/mail/etpan/patches/patch-aa b/mail/etpan/patches/patch-aa
new file mode 100644
index 00000000000..f2013d6790b
--- /dev/null
+++ b/mail/etpan/patches/patch-aa
@@ -0,0 +1,43 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/08/06 05:32:19 xtraeme Exp $
+
+--- src/Makefile.in.orig 2005-08-05 21:37:44.000000000 +0200
++++ src/Makefile.in 2005-08-05 21:38:46.000000000 +0200
+@@ -7,14 +7,14 @@
+ bindir = @bindir@
+ INSTALL = @INSTALL@
+
+-SHELL = /bin/sh
+-RM = rm -fr
++#SHELL = /bin/sh
++#RM = rm -fr
+ # CPPFLAGS is duplicated for FreeBSD compatibility
+-CFLAGS = @DEFS@ @CFLAGS@ @CPPFLAGS@
+-CPPFLAGS = -I.. -Ilibversit @CPPFLAGS@
+-CC = @CC@
++CFLAGS += @DEFS@
++CPPFLAGS += -I.. -Ilibversit
++#CC = @CC@
+ PROGS = etpan
+-LDFLAGS = @LDFLAGS@ @LIBS@
++LINKERFLAGS = @LDFLAGS@ @LIBS@
+
+ OBJ = \
+ etpan-config.o \
+@@ -104,7 +104,7 @@
+ all: all-recursive $(PROGS)
+
+ etpan: $(OBJ)
+- $(CC) -o $@ $(OBJ) $(VERSIT_OBJ) $(LDFLAGS)
++ $(CC) -o $@ $(OBJ) $(VERSIT_OBJ) $(LINKERFLAGS)
+
+ install: etpan
+ $(INSTALL) -m 755 -d $(bindir)
+@@ -123,7 +123,7 @@
+ $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
+
+ etpan-ldap-test: etpan-ldap-test.o etpan-ldap.o
+- $(CC) -o $@ etpan-ldap-test.o etpan-ldap.o $(LDFLAGS)
++ $(CC) -o $@ etpan-ldap-test.o etpan-ldap.o $(LINKERFLAGS)
+
+ dep:
+ $(CC) -M $(CFLAGS) $(OBJ:.o=.c) etpan-ldap-test.c | sed 's,\( /[^ ]*\),,g;/^ *\\$$/d' > .deps