From owner-svn-ports-all@FreeBSD.ORG Thu Feb 5 19:37:21 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AF7D83C; Thu, 5 Feb 2015 19:37:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7731CE20; Thu, 5 Feb 2015 19:37:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t15JbLIp004072; Thu, 5 Feb 2015 19:37:21 GMT (envelope-from tdb@FreeBSD.org) Received: (from tdb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t15JbLgJ004071; Thu, 5 Feb 2015 19:37:21 GMT (envelope-from tdb@FreeBSD.org) Message-Id: <201502051937.t15JbLgJ004071@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tdb set sender to tdb@FreeBSD.org using -f From: Tim Bishop Date: Thu, 5 Feb 2015 19:37:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378485 - head/net/pptpclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Feb 2015 19:37:21 -0000 Author: tdb Date: Thu Feb 5 19:37:20 2015 New Revision: 378485 URL: https://svnweb.freebsd.org/changeset/ports/378485 QAT: https://qat.redports.org/buildarchive/r378485/ Log: Avoid running /bin/ip which doesn't exist on FreeBSD. I get the following error every time I run pptp: /bin/ip: not found /bin/ip: not found Since /bin/ip doesn't exist on FreeBSD it doesn't make sense to try and run it, and pptp appears to function without it (this change certainly won't make things any worse). I've done a minimally invasive change which just makes it run /usr/bin/true instead. Modified: head/net/pptpclient/Makefile Modified: head/net/pptpclient/Makefile ============================================================================== --- head/net/pptpclient/Makefile Thu Feb 5 18:51:58 2015 (r378484) +++ head/net/pptpclient/Makefile Thu Feb 5 19:37:20 2015 (r378485) @@ -3,6 +3,7 @@ PORTNAME= pptpclient PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/pptp/pptp-${PORTVERSION} DISTNAME= pptp-${PORTVERSION} @@ -13,7 +14,8 @@ COMMENT= PPTP client for establishing a LICENSE= GPLv2 # (or later) USES= perl5 -MAKE_ARGS= CC="${CC}" OPTIMIZE="${CFLAGS}" DEBUG="" PPPD="/usr/sbin/ppp" +MAKE_ARGS= CC="${CC}" OPTIMIZE="${CFLAGS}" DEBUG="" \ + PPPD="/usr/sbin/ppp" IP="/usr/bin/true" CFLAGS+= -DUSER_PPP PLIST_FILES= sbin/pptp man/man8/pptp.8.gz