diff options
author | Nick Sayer <nsayer@FreeBSD.org> | 2001-04-04 21:54:32 +0000 |
---|---|---|
committer | Nick Sayer <nsayer@FreeBSD.org> | 2001-04-04 21:54:32 +0000 |
commit | 9be2fdaa6730d00c459bd98ea03c7a2ec2644736 (patch) | |
tree | b05eaaa26b0899c325ca09cb2e3b8eb733ab5e84 /mail/pine4-ssl/files | |
parent | Forced commit: Most of the changes mentioned in the previous commit were (diff) |
Scrap pine4-ssl port as a separate entity. Shortly the pine4 port will
get a WITH_SSL=yes option, hopefully.
Notes
Notes:
svn path=/head/; revision=40851
Diffstat (limited to 'mail/pine4-ssl/files')
-rw-r--r-- | mail/pine4-ssl/files/extrapatch-aa | 18 | ||||
-rw-r--r-- | mail/pine4-ssl/files/extrapatch-ab | 12 | ||||
-rw-r--r-- | mail/pine4-ssl/files/pgpdecode | 51 | ||||
-rw-r--r-- | mail/pine4-ssl/files/pgpencrypt | 11 | ||||
-rw-r--r-- | mail/pine4-ssl/files/pgpsign | 11 |
5 files changed, 0 insertions, 103 deletions
diff --git a/mail/pine4-ssl/files/extrapatch-aa b/mail/pine4-ssl/files/extrapatch-aa deleted file mode 100644 index fa355b44b208..000000000000 --- a/mail/pine4-ssl/files/extrapatch-aa +++ /dev/null @@ -1,18 +0,0 @@ ---- imap/src/osdep/unix/Makefile.ssl.orig Fri Jan 14 20:56:16 2000 -+++ imap/src/osdep/unix/Makefile.ssl Tue Feb 1 00:34:17 2000 -@@ -1,12 +1,11 @@ - - # Extended flags needed for additional authenticators. You may need to modify. - --SSLDIR=/usr/local --SSLCFLAGS= -I$(SSLDIR)/include --SSLLDFLAGS= -L$(SSLDIR)/lib -lssl -lcrypto -+SSLCFLAGS= -I$(OPENSSLINC) -+SSLLDFLAGS= -L$(OPENSSLLIB) -lssl -lcrypto $(EXTRA_SSL_LIBS) - - .ifdef RSAREF --SSLLDFLAGS+= -lRSAglue -lrsaref -+SSLLDFLAGS+= -lRSAglue -L${LOCALBASE}/lib -lrsaref - .endif - - ssl: # SSL flags diff --git a/mail/pine4-ssl/files/extrapatch-ab b/mail/pine4-ssl/files/extrapatch-ab deleted file mode 100644 index d7ac7cea596b..000000000000 --- a/mail/pine4-ssl/files/extrapatch-ab +++ /dev/null @@ -1,12 +0,0 @@ ---- imap/Makefile.orig Tue Feb 1 00:45:16 2000 -+++ imap/Makefile Tue Feb 1 00:46:24 2000 -@@ -274,7 +274,8 @@ - - BUILDOPTIONS= EXTRACFLAGS='$(EXTRACFLAGS)' EXTRALDFLAGS='$(EXTRALDFLAGS)'\ - EXTRADRIVERS='$(EXTRADRIVERS)' EXTRAAUTHENTICATORS='$(EXTRAAUTHENTICATORS)'\ -- PASSWDTYPE=$(PASSWDTYPE) SPECIALAUTHENTICATORS='$(SPECIALAUTHENTICATORS)' -+ PASSWDTYPE=$(PASSWDTYPE) SPECIALAUTHENTICATORS='$(SPECIALAUTHENTICATORS)'\ -+ OPENSSLLIB=$(OPENSSLLIB) OPENSSLINC=$(OPENSSLINC) - #BUILD=$(MAKE) build $(BUILDOPTIONS) - # *** TEMPORARY FOR PINE 4.10 BUILD *** - BUILD=$(MAKE) build $(BUILDOPTIONS) GSSDIR=$(GSSDIR) diff --git a/mail/pine4-ssl/files/pgpdecode b/mail/pine4-ssl/files/pgpdecode deleted file mode 100644 index 40625939c37c..000000000000 --- a/mail/pine4-ssl/files/pgpdecode +++ /dev/null @@ -1,51 +0,0 @@ -#! /bin/sh -# ---------- pgpdecode --------- -# 21.03.96 Roland Rosenfeld <roland@spinnaker.rhein.de> -# -# Sun Mar 24 12:01:21 MET 1996 Andreas Klemm <andreas@knobel.gun.de> -# The tmp files in the original version were world readable for -# the short time of unpacking, setting suitable umask prevents this -# -# Wed Sep 16 21:35:43 WST 1997 Anthony Di Pietro <anthony@dino.omen.com.au> -# Modified to work with both PGP v2 and PGP v5. -# Now uses mktemp to prevent symlink attack and tmp races. - -umask 077 - -MYNAME=`basename $0` - -STDOUT=`mktemp -q /tmp/${MYNAME}.XXXXXX` -if [ $? -ne 0 ] -then - echo "$0: Can't create temporary file to decode message." - exit 1 -fi - -trap "rm -f $STDOUT ; exit" 0 1 2 15 - -STDERR=`mktemp -q /tmp/${MYNAME}.XXXXXX` -if [ $? -ne 0 ] -then - echo "$0: Can't create temporary file to decode message." - exit 1 -fi - -trap "rm -f $STDOUT $STDERR; exit" 0 1 2 15 - -if [ -x /usr/local/bin/pgpv ] -then - pgpv 2>&1 > $STDOUT |tee $STDERR > /dev/tty -else - pgp -f 2>&1 > $STDOUT |tee $STDERR > /dev/tty -fi - -cat $STDERR | \ -grep -v '^No files specified. Using stdin.$' | \ -grep -v '^Opening file \"stdout\" type text.$' | \ -grep -v '^Opening file \"stdout\" type binary.$' | \ -grep -v '^Opening file \"/dev/null\" type text.$' | \ -grep -v '^Opening file \"/dev/null\" type binary.$' | \ -grep -v '^$'| \ -sed -e 's/^/| /' -echo "" -cat $STDOUT diff --git a/mail/pine4-ssl/files/pgpencrypt b/mail/pine4-ssl/files/pgpencrypt deleted file mode 100644 index 3baa1d2739eb..000000000000 --- a/mail/pine4-ssl/files/pgpencrypt +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# ---------- pgpencrypt --------- -# 21.03.96 Roland Rosenfeld <roland@spinnaker.rhein.de> -# Wed 16 Sep 1998 23:46:43 WST Anthony Di Pietro <anthony@dino.omen.com.au> -# Modified to work with both PGP v2 and PGP v5. -if [ -x /usr/local/bin/pgpe ] -then - pgpe -s -a -r $* -else - pgp -feast $* -fi diff --git a/mail/pine4-ssl/files/pgpsign b/mail/pine4-ssl/files/pgpsign deleted file mode 100644 index 6eff395c89c0..000000000000 --- a/mail/pine4-ssl/files/pgpsign +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# ---------- pgpsign --------- -# 21.03.96 Roland Rosenfeld <roland@spinnaker.rhein.de> -# Wed 16 Sep 1998 23:48:51 WST Anthony Di Pietro <anthony@dino.omen.com.au> -# Modified to work with both PGP v2 and PGP v5. -if [ -x /usr/local/bin/pgps ] -then - pgps -a -t -else - pgp -fast -fi |