From owner-svn-ports-head@FreeBSD.ORG Fri Feb 15 17:07:20 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 C524EDBD; Fri, 15 Feb 2013 17:07:20 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x233.google.com (ie-in-x0233.1e100.net [IPv6:2607:f8b0:4001:c03::233]) by mx1.freebsd.org (Postfix) with ESMTP id 73EA8964; Fri, 15 Feb 2013 17:07:20 +0000 (UTC) Received: by mail-ie0-f179.google.com with SMTP id k11so5089533iea.10 for ; Fri, 15 Feb 2013 09:07:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=oQQE9KD0VcXlQg7EY2WLxeVe+mPHMe3X3V5I6UOlaWA=; b=Ozc4s2+Fhk5Z8wKuAowmUlpEphNpeNmAbvpumgJT/sFlI1lf/Uzl+Q8g1sZUMEJDBm l+3JpHlv3mUlMXrawn0RjI+4PccIvKn90KGtRCwQtNjRZwlYYbTdKCaBSgNFImwu2xyE l1j4JZNLNos9TnLBhXeV/IhZBnAF5Em42Mn5KmB0yyP/la43k7oK7/D6lqm+qrV8Adfo Y3qDFWZPkG+jEfCus7x5aH9obm9mIkEfCXPpYh7+/qsTMFMMlcHPtVaRfe8YaYLYgjau R2fSfUbJBljMlLbGPby20hsAL2TZ4nCjq1LgyAPZEta7r6R6a/EZXoKIGrGzoqvWKpuE xVog== MIME-Version: 1.0 X-Received: by 10.42.121.14 with SMTP id h14mr2056619icr.27.1360948039018; Fri, 15 Feb 2013 09:07:19 -0800 (PST) Received: by 10.64.63.12 with HTTP; Fri, 15 Feb 2013 09:07:18 -0800 (PST) Received: by 10.64.63.12 with HTTP; Fri, 15 Feb 2013 09:07:18 -0800 (PST) In-Reply-To: <201302151659.r1FGxrf5023838@svn.freebsd.org> References: <201302151659.r1FGxrf5023838@svn.freebsd.org> Date: Fri, 15 Feb 2013 17:07:18 +0000 Message-ID: Subject: Re: svn commit: r312301 - in head/net/ptpd2: . files From: Chris Rees To: Steven Kreuzer Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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: Fri, 15 Feb 2013 17:07:20 -0000 On 15 Feb 2013 17:00, "Steven Kreuzer" wrote: > > XXX Ports RC script present > Author: skreuzer > Date: Fri Feb 15 16:59:52 2013 > New Revision: 312301 > URL: http://svnweb.freebsd.org/changeset/ports/312301 > > Log: > Fix typo in rc script. ptpd_enable -> ptpd2_enable > > Modified: > head/net/ptpd2/Makefile > head/net/ptpd2/files/ptpd2.in > > Modified: head/net/ptpd2/Makefile > ============================================================================== > --- head/net/ptpd2/Makefile Fri Feb 15 16:54:57 2013 (r312300) > +++ head/net/ptpd2/Makefile Fri Feb 15 16:59:52 2013 (r312301) > @@ -7,7 +7,7 @@ > > PORTNAME= ptpd > DISTVERSION= 2.2.2 > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= net > MASTER_SITES= SF > > > Modified: head/net/ptpd2/files/ptpd2.in > ============================================================================== > --- head/net/ptpd2/files/ptpd2.in Fri Feb 15 16:54:57 2013 (r312300) > +++ head/net/ptpd2/files/ptpd2.in Fri Feb 15 16:59:52 2013 (r312301) > @@ -18,7 +18,7 @@ rcvar=ptpd2_enable > > command="%%PREFIX%%/sbin/${name}" > > -ptpd_enable=${ptpd2_enable:-"NO"} > +ptpd2_enable=${ptpd2_enable:-"NO"} Using the style : ${ptpd2_enable=yes} avoids this issue. Chris