From owner-svn-ports-head@freebsd.org Wed Sep 16 12:29:58 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71B019CEF4D; Wed, 16 Sep 2015 12:29:58 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org (repo.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 483301627; Wed, 16 Sep 2015 12:29:58 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8GCTwY4078490; Wed, 16 Sep 2015 12:29:58 GMT (envelope-from gblach@FreeBSD.org) Received: (from gblach@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8GCTvcJ078487; Wed, 16 Sep 2015 12:29:57 GMT (envelope-from gblach@FreeBSD.org) Message-Id: <201509161229.t8GCTvcJ078487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gblach set sender to gblach@FreeBSD.org using -f From: Grzegorz Blach Date: Wed, 16 Sep 2015 12:29:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r397062 - in head/www/h2o: . 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: Wed, 16 Sep 2015 12:29:58 -0000 Author: gblach Date: Wed Sep 16 12:29:56 2015 New Revision: 397062 URL: https://svnweb.freebsd.org/changeset/ports/397062 Log: - Fix rc.d issues introduced with recent perl changes [1] - Update to 1.4.5 [2] PR: 203147 [1], 203096 [2] Submitted by: Dave Cottlehuber (maintainer) Modified: head/www/h2o/Makefile head/www/h2o/distinfo head/www/h2o/files/h2o.in Modified: head/www/h2o/Makefile ============================================================================== --- head/www/h2o/Makefile Wed Sep 16 12:17:44 2015 (r397061) +++ head/www/h2o/Makefile Wed Sep 16 12:29:56 2015 (r397062) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= h2o -PORTVERSION= 1.4.4 +PORTVERSION= 1.4.5 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= www MAINTAINER= dch@skunkwerks.at @@ -14,7 +13,8 @@ LICENSE= MIT USE_GITHUB= yes -USES= cmake compiler:c11 shebangfix +USES= cmake compiler:c11 perl5 shebangfix +USE_PERL5= run SHEBANG_FILES= share/h2o/start_server PORTDOCS= README.md @@ -40,6 +40,13 @@ USE_RC_SUBR= ${PORTNAME} CMAKE_ARGS+= -DWITH_BUNDLED_SSL=OFF -DEXTRA_LIBRARIES=OFF USE_OPENSSL_PORT= yes +post-patch: + @${REINPLACE_CMD} -e 's|exec perl|exec ${LOCALBASE}/bin/perl|' \ + ${WRKSRC}/share/h2o/annotate-backtrace-symbols \ + ${WRKSRC}/share/h2o/fetch-ocsp-response \ + ${WRKSRC}/share/h2o/kill-on-close \ + ${WRKSRC}/share/h2o/start_server + post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} \ ${STAGEDIR}${ETCDIR} \ Modified: head/www/h2o/distinfo ============================================================================== --- head/www/h2o/distinfo Wed Sep 16 12:17:44 2015 (r397061) +++ head/www/h2o/distinfo Wed Sep 16 12:29:56 2015 (r397062) @@ -1,2 +1,2 @@ -SHA256 (h2o-h2o-v1.4.4_GH0.tar.gz) = 0297ca73dba460653c6edb14dab17095f60616baf7c51e45ac9f8a6d54b9ba55 -SIZE (h2o-h2o-v1.4.4_GH0.tar.gz) = 4736114 +SHA256 (h2o-h2o-v1.4.5_GH0.tar.gz) = 0f60e8d35afad61afc284a7abfa9c9a3b976e8f9faed3f0966fb34056e2e138d +SIZE (h2o-h2o-v1.4.5_GH0.tar.gz) = 4736984 Modified: head/www/h2o/files/h2o.in ============================================================================== --- head/www/h2o/files/h2o.in Wed Sep 16 12:17:44 2015 (r397061) +++ head/www/h2o/files/h2o.in Wed Sep 16 12:29:56 2015 (r397062) @@ -28,7 +28,7 @@ rcvar=h2o_enable pidfile=`grep pid-file ${h2o_config} | cut -d' ' -f2` command="%%PREFIX%%/bin/${name}" command_args="-m daemon -c ${h2o_config}" -procname="perl" +procname="%%LOCALBASE%%/bin/perl" load_rc_config $name run_rc_command "$1"