From owner-freebsd-ports@FreeBSD.ORG Wed Nov 13 18:28:08 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71CA4CA8 for ; Wed, 13 Nov 2013 18:28:08 +0000 (UTC) Received: from mail-ee0-x22c.google.com (mail-ee0-x22c.google.com [IPv6:2a00:1450:4013:c00::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D9FF25C6 for ; Wed, 13 Nov 2013 18:28:07 +0000 (UTC) Received: by mail-ee0-f44.google.com with SMTP id d51so402039eek.31 for ; Wed, 13 Nov 2013 10:28:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=iDZcZdgmotaL7tgxl5odz65/nFYzNWeaH721QVe9Ad8=; b=CjsDxumrifE5TI3Z7VYvGFlRmYMn90zgcHB253Y4MilKDBsS5c5ysN/WrXAbsheQ+9 2+4EteiRCYHpBbhtdrXROt6W7P9fGwk+hW6Nv1ASSMXELnI2qJIwVxzUY1cwJHHFSsQ6 yrVw1zAjeNTJ7HKOmyTOY0oRH6VJLeg7UVYw5dIXiReZdqAYkNt+GwvA3B32P5Wa78bE iYAUOwTdOmGSNXjRaYqv/mPlu7TFo5erb/gTX0O66oyv4mEG8xdkvMw05GGhjp4HnfCV x3c3ZrhTrOl3aqRuV04mzi35HKl5EKj7vhjaFgIC3BMHGVzxHYiufWv1xwXhpOe7f7gJ NWTQ== X-Received: by 10.14.22.73 with SMTP id s49mr502739ees.99.1384367286039; Wed, 13 Nov 2013 10:28:06 -0800 (PST) MIME-Version: 1.0 Received: by 10.223.197.10 with HTTP; Wed, 13 Nov 2013 10:27:45 -0800 (PST) From: Chad Gross Date: Wed, 13 Nov 2013 13:27:45 -0500 Message-ID: Subject: NfSen Port PATCH To: freebsd-ports@freebsd.org Content-Type: multipart/mixed; boundary=001a11c3990052d2f704eb1320b2 X-Content-Filtered-By: Mailman/MimeDel 2.1.16 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Nov 2013 18:28:08 -0000 --001a11c3990052d2f704eb1320b2 Content-Type: text/plain; charset=ISO-8859-1 I found an issue with the nfsen port Makefile. It is not properly configured to expand the %%PORTNAME%% variable used when generating the nfsen config file. For example, the config that is installed shows this: $VARDIR="${BASEDIR}/var/%%PORTNAME%%"; When it should be this: $VARDIR="${BASEDIR}/var/nfsen"; I have attached the patch, but also included it in-line below. I emailed the maintainer, but hadn't heard a response so figured I would send it here just in case. --- Makefile 2013-11-03 12:31:00.000000000 -0500 +++ Makefile.new 2013-11-03 12:30:51.000000000 -0500 @@ -37,6 +37,7 @@ SUB_LIST+= "PORTVERSION=${PORTVERSION}" SUB_LIST+= "PREFIX=${PREFIX}" SUB_LIST+= "WWWDIR=${WWWDIR}" +SUB_LIST+= "PORTNAME=${PORTNAME}" NO_STAGE= yes post-patch: Thanks, Chad --001a11c3990052d2f704eb1320b2 Content-Type: application/octet-stream; name="nfsen.patch" Content-Disposition: attachment; filename="nfsen.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hnywaici0 LS0tIE1ha2VmaWxlICAgIDIwMTMtMTEtMDMgMTI6MzE6MDAuMDAwMDAwMDAwIC0wNTAwCisrKyBN YWtlZmlsZS5uZXcgICAgICAgIDIwMTMtMTEtMDMgMTI6MzA6NTEuMDAwMDAwMDAwIC0wNTAwCkBA IC0zNyw2ICszNyw3IEBACiBTVUJfTElTVCs9ICAgICAiUE9SVFZFUlNJT049JHtQT1JUVkVSU0lP Tn0iCiBTVUJfTElTVCs9ICAgICAiUFJFRklYPSR7UFJFRklYfSIKIFNVQl9MSVNUKz0gICAgICJX V1dESVI9JHtXV1dESVJ9IgorU1VCX0xJU1QrPSAgICAgIlBPUlROQU1FPSR7UE9SVE5BTUV9Igog CiBOT19TVEFHRT0gICAgICB5ZXMKIHBvc3QtcGF0Y2g6Cgo= --001a11c3990052d2f704eb1320b2--