From owner-svn-ports-head@FreeBSD.ORG Thu Jan 10 01:46:38 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BB3C82C5; Thu, 10 Jan 2013 01:46:38 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 95A29D41; Thu, 10 Jan 2013 01:46:38 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0A1kcYS002976; Thu, 10 Jan 2013 01:46:38 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0A1kcPY002975; Thu, 10 Jan 2013 01:46:38 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201301100146.r0A1kcPY002975@svn.freebsd.org> From: Matthias Andree Date: Thu, 10 Jan 2013 01:46:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r310168 - head/mail/fetchmail/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2013 01:46:38 -0000 Author: mandree Date: Thu Jan 10 01:46:37 2013 New Revision: 310168 URL: http://svnweb.freebsd.org/changeset/ports/310168 Log: Fix up my patch error. Not bumping PORTREVISION because there is no functional change, the script has either replaced itself through exec, or exited. Modified: head/mail/fetchmail/files/fetchmailconf.in Modified: head/mail/fetchmail/files/fetchmailconf.in ============================================================================== --- head/mail/fetchmail/files/fetchmailconf.in Thu Jan 10 01:36:21 2013 (r310167) +++ head/mail/fetchmail/files/fetchmailconf.in Thu Jan 10 01:46:37 2013 (r310168) @@ -20,25 +20,3 @@ the FreeBSD Ports Collection in lang/pyt 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 <