mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
e92788bd72
- From the announcement: fetchmail 6.3.0 has been released on 2005-11-30. More than two years after the previous formal 6.2.5 release, this collects several dozen bug fixes, documentation, portability and IPv6 improvements and marks the beginning of a new "stable" 6.3.X branch that will not change, except for bug fixes and documentation updates. - files/patch-pop2.c contributed by Stanislav Brabec <sbrabec@suse.cz> via Matthias Andree <matthias.andree@gmx.de> (upstream maintainer)
23 lines
746 B
Bash
23 lines
746 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.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
|