From owner-svn-ports-all@FreeBSD.ORG Mon Dec 3 15:58:27 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7321F65; Mon, 3 Dec 2012 15:58:26 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BA6F78FC13; Mon, 3 Dec 2012 15:58:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qB3FwQIk067043; Mon, 3 Dec 2012 15:58:26 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB3FwQJo067038; Mon, 3 Dec 2012 15:58:26 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201212031558.qB3FwQJo067038@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Mon, 3 Dec 2012 15:58:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308156 - in head/devel: . pear-PHP_PMD 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.14 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: Mon, 03 Dec 2012 15:58:27 -0000 Author: rm Date: Mon Dec 3 15:58:26 2012 New Revision: 308156 URL: http://svnweb.freebsd.org/changeset/ports/308156 Log: The PHP Mess Detector aims to be a simplified PHP port of the well known Java Tool PMD. This project uses PHP_Depend to measure several software metrics from given source code, then it compares the calculated values with customizeable thresholds and reports all suspect software artifacts WWW: http://phpmd.org/ PR: 172761 Submitted by: Gasol Wu Feature safe: yes Added: head/devel/pear-PHP_PMD/ head/devel/pear-PHP_PMD/Makefile (contents, props changed) head/devel/pear-PHP_PMD/distinfo (contents, props changed) head/devel/pear-PHP_PMD/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 3 15:57:06 2012 (r308155) +++ head/devel/Makefile Mon Dec 3 15:58:26 2012 (r308156) @@ -3019,6 +3019,7 @@ SUBDIR += pear-PHP_Compat SUBDIR += pear-PHP_CompatInfo SUBDIR += pear-PHP_Depend + SUBDIR += pear-PHP_PMD SUBDIR += pear-PHP_Parser SUBDIR += pear-PHP_ParserGenerator SUBDIR += pear-PHP_Timer Added: head/devel/pear-PHP_PMD/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-PHP_PMD/Makefile Mon Dec 3 15:58:26 2012 (r308156) @@ -0,0 +1,26 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= PHP_PMD +PORTVERSION= 1.4.0 +CATEGORIES= devel pear +MASTER_SITES= http://pear.phpmd.org/get/ +PKGNAMEPREFIX= pear- + +MAINTAINER= gasol.wu@gmail.com +COMMENT= PHP Mess Detector + +LICENSE= BSD + +BUILD_DEPENDS= pear>=1.6.0:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/pear.phpmd.org.reg:${PORTSDIR}/devel/pear-channel-phpmd +RUN_DEPENDS= pear>=1.6.0:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/pear.phpmd.org.reg:${PORTSDIR}/devel/pear-channel-phpmd + +PEAR_CHANNEL= phpmd +PEAR_AUTOINSTALL= yes +USE_PHP= dom simplexml + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include Added: head/devel/pear-PHP_PMD/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-PHP_PMD/distinfo Mon Dec 3 15:58:26 2012 (r308156) @@ -0,0 +1,2 @@ +SHA256 (PEAR/PHP_PMD-1.4.0.tgz) = db0e63dc79b4ef35c36b53b9d52fe1bf5c416e10ffc6dd527d47b3351cf9ebe7 +SIZE (PEAR/PHP_PMD-1.4.0.tgz) = 46482 Added: head/devel/pear-PHP_PMD/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-PHP_PMD/pkg-descr Mon Dec 3 15:58:26 2012 (r308156) @@ -0,0 +1,6 @@ +The PHP Mess Detector aims to be a simplified PHP port of the well known +Java Tool PMD. This project uses PHP_Depend to measure several software +metrics from given source code, then it compares the calculated values +with customizeable thresholds and reports all suspect software artifacts + +WWW: http://phpmd.org/