diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2013-03-03 16:13:07 +0800 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2013-03-03 16:13:07 +0800 |
commit | b67e674ac6128bed77bd2ed4f2c57ec87fb14e2d (patch) | |
tree | 0b4abfa523d113912f27dffe0512ab5a1c7a0dde /mail/fetchmail | |
parent | 988b4c6c4681dccd79e26e571607275510be2c80 (diff) | |
download | freebsd-ports-gnome-b67e674ac6128bed77bd2ed4f2c57ec87fb14e2d.tar.gz freebsd-ports-gnome-b67e674ac6128bed77bd2ed4f2c57ec87fb14e2d.tar.zst freebsd-ports-gnome-b67e674ac6128bed77bd2ed4f2c57ec87fb14e2d.zip |
- Update script for chasing _tkinter.so relocation
PR: ports/176611
Submitted by: Li-Wen Hsu <lwhsu@FreeBSD.org>
Approved by: Corey Halpin <chalpin@cs.wisc.edu> (maintainer)
Diffstat (limited to 'mail/fetchmail')
-rw-r--r-- | mail/fetchmail/Makefile | 1 | ||||
-rw-r--r-- | mail/fetchmail/files/fetchmailconf.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index ed7efd734e6b..1af6945089ff 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -9,6 +9,7 @@ PORTNAME= fetchmail PORTVERSION= 6.3.24 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= SF/${PORTNAME}/branch_6.3/ \ http://mandree.home.pages.de/${PORTNAME}/ diff --git a/mail/fetchmail/files/fetchmailconf.in b/mail/fetchmail/files/fetchmailconf.in index b1a53b24a54b..32bb008144cd 100644 --- a/mail/fetchmail/files/fetchmailconf.in +++ b/mail/fetchmail/files/fetchmailconf.in @@ -9,7 +9,7 @@ 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 + if [ -e ${LOCALBASE}/lib/${PYTHON_VERSION}/lib-dynload/_tkinter.so ]; then exec ${LOCALBASE}/libexec/fetchmailconf.py "$@" fi fi |