From owner-svn-ports-head@FreeBSD.ORG Sat May 9 09:12:02 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95181733; Sat, 9 May 2015 09:12:02 +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 833591E94; Sat, 9 May 2015 09:12:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t499C2u4067126; Sat, 9 May 2015 09:12:02 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t499C2cA067122; Sat, 9 May 2015 09:12:02 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201505090912.t499C2cA067122@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 9 May 2015 09:12:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385876 - in head/www/yaws: . 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.20 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: Sat, 09 May 2015 09:12:02 -0000 Author: olgeni Date: Sat May 9 09:12:01 2015 New Revision: 385876 URL: https://svnweb.freebsd.org/changeset/ports/385876 Log: Do not let the build hostname creep into the sample configuration file. Added: head/www/yaws/files/patch-scripts_gen-yaws-conf (contents, props changed) Modified: head/www/yaws/Makefile Modified: head/www/yaws/Makefile ============================================================================== --- head/www/yaws/Makefile Sat May 9 08:43:00 2015 (r385875) +++ head/www/yaws/Makefile Sat May 9 09:12:01 2015 (r385876) @@ -2,6 +2,7 @@ PORTNAME= yaws PORTVERSION= 1.99 +PORTREVISION= 1 CATEGORIES= www devel MASTER_SITES= http://yaws.hyber.org/download/ Added: head/www/yaws/files/patch-scripts_gen-yaws-conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/yaws/files/patch-scripts_gen-yaws-conf Sat May 9 09:12:01 2015 (r385876) @@ -0,0 +1,11 @@ +--- scripts/gen-yaws-conf.orig 2015-05-09 08:50:11 UTC ++++ scripts/gen-yaws-conf +@@ -9,7 +9,7 @@ cat yaws.conf.template + ./Subst %yawsdir% "$YAWSDIR" | \ + ./Subst %logdir% "$LOGDIR" | \ + ./Subst %vardir% "$VARDIR" | \ +- ./Subst %host% `hostname` | \ ++ ./Subst %host% "example" | \ + ./Subst %port% $PORT | \ + ./Subst %docroot% "$DOCROOT" | \ + ./Subst %tmpdir% "${TMPDIR:-/tmp}" | \