From 5676098ee47d19692070eac5fa09f2ecdb272ff3 Mon Sep 17 00:00:00 2001 From: mandree Date: Thu, 10 Jan 2013 01:46:37 +0000 Subject: Fix up my patch error. Not bumping PORTREVISION because there is no functional change, the script has either replaced itself through exec, or exited. --- mail/fetchmail/files/fetchmailconf.in | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'mail') 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 <