aboutsummaryrefslogtreecommitdiff
path: root/mail/fetchmail
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2013-01-10 01:46:37 +0000
committerMatthias Andree <mandree@FreeBSD.org>2013-01-10 01:46:37 +0000
commitd98e2b724910c507ae390f841bcd79686a1638ac (patch)
tree045868738276ccce8a582e59ca2ad4943c616f77 /mail/fetchmail
parent8dfad65ec825fb32ff11299737e5b23f22faed7f (diff)
downloadports-d98e2b724910c507ae390f841bcd79686a1638ac.tar.gz
ports-d98e2b724910c507ae390f841bcd79686a1638ac.zip
Notes
Diffstat (limited to 'mail/fetchmail')
-rw-r--r--mail/fetchmail/files/fetchmailconf.in22
1 files changed, 0 insertions, 22 deletions
diff --git a/mail/fetchmail/files/fetchmailconf.in b/mail/fetchmail/files/fetchmailconf.in
index 717cc15467d4..b1a53b24a54b 100644
--- a/mail/fetchmail/files/fetchmailconf.in
+++ b/mail/fetchmail/files/fetchmailconf.in
@@ -20,25 +20,3 @@ the FreeBSD Ports Collection in lang/python, and Tkinter for Python
can be found in x11-toolkits/py-tkinter.
EOF
exit 1
-#!/bin/sh
-#
-# Wrapper for the real fetchmailconf. Checks whether Python and Tkinter are
-# installed, and runs the real fetchmailconf or alerts the user, as appropriate.
-#
-# $FreeBSD$
-
-LOCALBASE=%%LOCALBASE%%
-
-if [ -x $LOCALBASE/bin/python ] ; then
- PYTHON_VERSION=python$(${LOCALBASE}/bin/python -c 'import sys; print sys.version[:3]' 2>/dev/null)
- if [ -e ${LOCALBASE}/lib/${PYTHON_VERSION}/site-packages/_tkinter.so ]; then
- exec ${LOCALBASE}/libexec/fetchmailconf.py "$@"
- fi
-fi
-cat <<EOF
-The fetchmailconf program requires Python with Tkinter, which does
-not appear to be installed on this system. Python can be found in
-the FreeBSD Ports Collection in lang/python, and Tkinter for Python
-can be found in x11-toolkits/py-tkinter.
-EOF
-exit 1