From owner-svn-ports-all@FreeBSD.ORG Sun May 25 02:41:38 2014 Return-Path: Delivered-To: svn-ports-all@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 4D7DA212; Sun, 25 May 2014 02:41:38 +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 206AB23B8; Sun, 25 May 2014 02:41:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4P2fbAq059973; Sun, 25 May 2014 02:41:37 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4P2fbNj059969; Sun, 25 May 2014 02:41:37 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201405250241.s4P2fbNj059969@svn.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 25 May 2014 02:41:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355103 - in head/devel/phpbt: . 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-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2014 02:41:38 -0000 Author: vanilla Date: Sun May 25 02:41:37 2014 New Revision: 355103 URL: http://svnweb.freebsd.org/changeset/ports/355103 QAT: https://qat.redports.org/buildarchive/r355103/ Log: Stageify, and switch to SUB_FILES to show pkg-message. Added: head/devel/phpbt/files/ head/devel/phpbt/files/pkg-message.in - copied unchanged from r355102, head/devel/phpbt/pkg-message Deleted: head/devel/phpbt/pkg-message Modified: head/devel/phpbt/Makefile Modified: head/devel/phpbt/Makefile ============================================================================== --- head/devel/phpbt/Makefile Sun May 25 02:30:15 2014 (r355102) +++ head/devel/phpbt/Makefile Sun May 25 02:41:37 2014 (r355103) @@ -18,16 +18,12 @@ USE_PHP= ctype pcre posix session tokeni NO_BUILD= YES PHPBT= www/data-dist/phpbt PLIST_SUB= PHPBT=${PHPBT} +SUB_FILES= pkg-message +SUB_LIST+= PHPBT=${PHPBT} -NO_STAGE= yes do-install: - -${MKDIR} ${PREFIX}/${PHPBT} - @(cd ${WRKSRC} && ${CP} -R * ${PREFIX}/${PHPBT}) - @${CHOWN} -R www:www ${PREFIX}/${PHPBT} - -post-install: - @${CAT} ${PKGMESSAGE} | \ - ${SED} -e 's|%%PREFIX%%|${PREFIX}|' | \ - ${SED} -e 's|%%PHPBT%%|${PHPBT}|' + -${MKDIR} ${STAGEDIR}${PREFIX}/${PHPBT} + @(cd ${WRKSRC} && ${CP} -R * ${STAGEDIR}${PREFIX}/${PHPBT}) + @${CHOWN} -R www:www ${STAGEDIR}${PREFIX}/${PHPBT} .include Copied: head/devel/phpbt/files/pkg-message.in (from r355102, head/devel/phpbt/pkg-message) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/phpbt/files/pkg-message.in Sun May 25 02:41:37 2014 (r355103, copy of r355102, head/devel/phpbt/pkg-message) @@ -0,0 +1,22 @@ +========================================================================== + +FreeBSD phpBugTracker installation instructions: + +Optional: Install JpGraph (http://www.aditus.nu/jpgraph/) if you +wish to use it. + +1. The phpBugTracker distribution has been installed in: + + %%PREFIX%%/%%PHPBT%% + +2. With your web browser, surf to this location. You will be + presented with a web page that will help you configure and install + the application. + +3. After completing the installation, login and start reporting bugs. + +* Note: You must have magic_quotes_gpc set to On either in php.ini +or in .htaccess (see http://www.php.net/manual/en/configuration.php +for more info). + +==========================================================================