Index: head/mail/fetchmail/files/fetchmailconf.in =================================================================== --- head/mail/fetchmail/files/fetchmailconf.in (revision 490782) +++ head/mail/fetchmail/files/fetchmailconf.in (nonexistent) @@ -1,22 +0,0 @@ -#!/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}/lib-dynload/_tkinter.so ]; then - exec ${LOCALBASE}/libexec/fetchmailconf.py "$@" - fi -fi -cat <