forked from Lainports/freebsd-ports
EXISTS counts after acknowledging EXPUNGE see <http://bugs.debian.org/314509> - add fetchmailconf wrapper check for _tkinter.so (if python was installed but not Tkinter, the wrapper would still try to run fetchmailconf.bin, which gives a less clear error message to the user than was intended) - let fetchmailconf wrapper pass command line arguments to fetchmailconf.bin (it supports -d and -f FILE) - replace PREFIX with LOCALBASE where appropriate - bump PORTREVISION Submitted by: Matthias Andree <matthias.andree@gmx.de> PR: ports/88444
22 lines
747 B
Bash
22 lines
747 B
Bash
#!/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.bin "$@"
|
|
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
|