From owner-dev-commits-ports-all@freebsd.org Sun Sep 19 06:07:36 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E7A576AB8FD; Sun, 19 Sep 2021 06:07:36 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HBy0709bTz3MxV; Sun, 19 Sep 2021 06:07:34 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B07E18378; Sun, 19 Sep 2021 06:07:34 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18J67Y2o053406; Sun, 19 Sep 2021 06:07:34 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18J67Y3g053405; Sun, 19 Sep 2021 06:07:34 GMT (envelope-from git) Date: Sun, 19 Sep 2021 06:07:34 GMT Message-Id: <202109190607.18J67Y3g053405@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: a9a0e698ff76 - main - devel/pear-PhpDocumentor: Add LICENSE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: a9a0e698ff763586cc582a5572888016bc1235b4 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Sep 2021 06:07:37 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=a9a0e698ff763586cc582a5572888016bc1235b4 commit a9a0e698ff763586cc582a5572888016bc1235b4 Author: Po-Chuan Hsieh AuthorDate: 2021-09-19 05:29:04 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-09-19 06:00:04 +0000 devel/pear-PhpDocumentor: Add LICENSE - Remove duplicate BUILD_DEPENDS and RUN_DEPENDS - Add NO_ARCH - Use CONFLICTS_INSTALL instead of CONFLICTS - Change the way *_DEPENDS are set - Clean up no-op post-extract: --- devel/pear-PhpDocumentor/Makefile | 18 ++++++++---------- devel/pear-PhpDocumentor/pkg-descr | 4 ++-- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/devel/pear-PhpDocumentor/Makefile b/devel/pear-PhpDocumentor/Makefile index c6d88ac12c0d..961bc44c6171 100644 --- a/devel/pear-PhpDocumentor/Makefile +++ b/devel/pear-PhpDocumentor/Makefile @@ -7,20 +7,18 @@ CATEGORIES= devel www pear MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides automatic documenting of php-api from the source -BUILD_DEPENDS= ${PEARDIR}/PEAR.php:devel/pear@${PHP_FLAVOR} -RUN_DEPENDS:= ${BUILD_DEPENDS} - -CONFLICTS= pear-PHPDoc-[0-9]* +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/LICENSE USES= pear + +NO_ARCH= yes + +CONFLICTS_INSTALL= pear-PHPDoc + OPTIONS_DEFINE= XML_BEAUTIFIER XML_BEAUTIFIER_DESC= XML_Beautifier support -XML_BEAUTIFIER_RUN_DEPENDS= ${PEARDIR}/XML/Beautifier.php:textproc/pear-XML_Beautifier@${PHP_FLAVOR} - -post-extract: -.for dir in ${DUMMYDIRS} - ${TOUCH} ${WRKSRC}/${dir}/.peardummy -.endfor +XML_BEAUTIFIER_RUN_DEPENDS= ${PEAR_PKGNAMEPREFIX}XML_Beautifier>=1.1:textproc/pear-XML_Beautifier@${PHP_FLAVOR} .include diff --git a/devel/pear-PhpDocumentor/pkg-descr b/devel/pear-PhpDocumentor/pkg-descr index 6dce8bd36304..eb7238bc8389 100644 --- a/devel/pear-PhpDocumentor/pkg-descr +++ b/devel/pear-PhpDocumentor/pkg-descr @@ -2,7 +2,7 @@ The phpDocumentor tool is a standalone auto-documentor similar to JavaDoc written in PHP. It differs from PHPDoc in that it is MUCH faster, parses a much wider range of php files, and comes with many customizations including 11 HTML templates, Windows help file CHM output, PDF output, and XML DocBook peardoc2 -output for use with documenting PEAR. In addition, it can do PHPXref source -code highlighting and linking. +output for use with documenting PEAR. In addition, it can do PHPXref source code +highlighting and linking. WWW: https://pear.php.net/package/PhpDocumentor