From owner-svn-ports-head@FreeBSD.ORG Sun Nov 4 17:33:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DDDA7DF8; Sun, 4 Nov 2012 17:33:43 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C0B008FC08; Sun, 4 Nov 2012 17:33:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id qA4HXh0V037046; Sun, 4 Nov 2012 17:33:43 GMT (envelope-from thierry@svn.freebsd.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id qA4HXhKw037044; Sun, 4 Nov 2012 17:33:43 GMT (envelope-from thierry@svn.freebsd.org) Message-Id: <201211041733.qA4HXhKw037044@svn.freebsd.org> From: Thierry Thomas Date: Sun, 4 Nov 2012 17:33:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306978 - head/www/tt-rss 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.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: Sun, 04 Nov 2012 17:33:44 -0000 Author: thierry Date: Sun Nov 4 17:33:43 2012 New Revision: 306978 URL: http://svn.freebsd.org/changeset/ports/306978 Log: Fix the dæmon with an absolute path. Feature safe: yes Modified: head/www/tt-rss/Makefile Modified: head/www/tt-rss/Makefile ============================================================================== --- head/www/tt-rss/Makefile Sun Nov 4 17:00:48 2012 (r306977) +++ head/www/tt-rss/Makefile Sun Nov 4 17:33:43 2012 (r306978) @@ -4,6 +4,7 @@ PORTNAME= tt-rss PORTVERSION= 1.6.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://tt-rss.org/download/ @@ -38,7 +39,7 @@ SUB_LIST= DB=${DB} WWWOWN=${WWWOWN} PLIST_SUB= WWWOWN=${WWWOWN}:${WWWGRP} PKGMESSAGE= ${WRKDIR}/pkg-message -PHP2FIX= config.php-dist update.php +PHP2FIX= config.php-dist update.php update_daemon2.php SCRIPTS= update.php update_daemon2.php @@ -54,6 +55,7 @@ pre-everything:: pre-configure: .for script in ${PHP2FIX} ${REINPLACE_CMD} -e 's|/usr/bin/php|${LOCALBASE}/bin/php|' \ + -e 's|/usr/bin/env php| ${LOCALBASE}/bin/php|' \ ${WRKSRC}/${script} .endfor ${REINPLACE_CMD} -e 's|/usr/bin/curl|${LOCALBASE}/bin/curl|' \