aboutsummaryrefslogtreecommitdiff
path: root/mail/panda-imap
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-11-01 19:55:24 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-11-01 19:55:24 +0000
commita0743c1422c2318114eea47ee01f605264696966 (patch)
tree358c552eb11b5117494bb0f4a239cdeda2a24bab /mail/panda-imap
parent11069212ab7d72540a755a2bd686dc4af0ebcbd6 (diff)
downloadports-a0743c1422c2318114eea47ee01f605264696966.tar.gz
ports-a0743c1422c2318114eea47ee01f605264696966.zip
Notes
Diffstat (limited to 'mail/panda-imap')
-rw-r--r--mail/panda-imap/pkg-req.rev23
-rw-r--r--mail/panda-imap/pkg-req.ssl27
2 files changed, 0 insertions, 50 deletions
diff --git a/mail/panda-imap/pkg-req.rev b/mail/panda-imap/pkg-req.rev
deleted file mode 100644
index 33ce1bc506fe..000000000000
--- a/mail/panda-imap/pkg-req.rev
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/sh
-# anders@fix.no, 2001-06-19
-
-if [ ! -f "$1" ]
-then
- echo "Your installation of the cclient port is outdated. Please delete it before"
- echo "continuing."
- exit 1
-fi
-
-portver=`grep "^#define CCLIENT_PORTVERSION" $1 | awk '{print $3}' \
-| sed s/\"//g`
-
-if [ "$portver" = "$2" ]
-then
- echo "Your imap-uw port matches the version of your cclient port. Fine."
- exit 0
-else
- echo "Your cclient port (PORTVERSION $portver) does not match the version of imap-uw"
- echo "(PORTVERSION $2) you are trying to install. Please delete your"
- echo "installation of the cclient port before continuing."
- exit 1
-fi
diff --git a/mail/panda-imap/pkg-req.ssl b/mail/panda-imap/pkg-req.ssl
deleted file mode 100644
index 881c5ef9049e..000000000000
--- a/mail/panda-imap/pkg-req.ssl
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/sh
-# anders@fix.no, 2001-06-19
-
-sslenabled=`grep "^#define CCLIENT_SSLENABLED" $1 | awk '{print $3}' \
-| sed s/\"//g`
-
-case $2 in
-yes)
- if [ "$sslenabled" = "yes" ]
- then
- echo "SSL check passed. We want SSL support, and cclient has it. Good."
- exit 0
- else
- echo "SSL check failed. We want SSL support, but cclient doesn't have it."
- echo "Please recompile and reinstall the cclient port with WITH_SSL=yes set."
- exit 1
- fi
- ;;
-*)
- if [ "$sslenabled" = "yes" ]
- then
- echo "You did not want SSL (by not defining WITH_SSL). Funny thing is, your cclient"
- echo "port has SSL support installed."
- exit 0
- fi
- ;;
-esac