From owner-dev-commits-ports-all@freebsd.org Wed Jul 14 12:27:29 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 7794364B52F; Wed, 14 Jul 2021 12:27:29 +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 4GPxbP2xfCz4q0d; Wed, 14 Jul 2021 12:27:29 +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 4C9FB15AD9; Wed, 14 Jul 2021 12:27:29 +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 16ECRT84094777; Wed, 14 Jul 2021 12:27:29 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16ECRTHw094776; Wed, 14 Jul 2021 12:27:29 GMT (envelope-from git) Date: Wed, 14 Jul 2021 12:27:29 GMT Message-Id: <202107141227.16ECRTHw094776@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org From: "Tobias C. Berner" Subject: git: 4d12465fa9f7 - 2021Q3 - japanese/another-htmllint: Install right 'htmllint' file MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: tcberner X-Git-Repository: ports X-Git-Refname: refs/heads/2021Q3 X-Git-Reftype: branch X-Git-Commit: 4d12465fa9f7dc9275b96a8613060210199195f4 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: Wed, 14 Jul 2021 12:27:29 -0000 The branch 2021Q3 has been updated by tcberner: URL: https://cgit.FreeBSD.org/ports/commit/?id=4d12465fa9f7dc9275b96a8613060210199195f4 commit 4d12465fa9f7dc9275b96a8613060210199195f4 Author: Yasuhiro Kimura AuthorDate: 2021-07-13 03:59:24 +0000 Commit: Tobias C. Berner CommitDate: 2021-07-14 12:27:18 +0000 japanese/another-htmllint: Install right 'htmllint' file Install right 'htmllint' file. Currently one included in original archive is installed. But to work correctly one generated from file/htmllint.in need to be installed. So change 'do-install' target so it installs the latter instead of the former. PR: 256966 (cherry picked from commit 76f8790617d3e5d7ab76803b15c7084d5818f8a7) --- japanese/another-htmllint/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/japanese/another-htmllint/Makefile b/japanese/another-htmllint/Makefile index d9beb243b13e..03cd26cb8765 100644 --- a/japanese/another-htmllint/Makefile +++ b/japanese/another-htmllint/Makefile @@ -1,6 +1,6 @@ PORTNAME= another-htmllint PORTVERSION= 20111128 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= japanese www MASTER_SITES= http://openlab.ring.gr.jp/k16/htmllint/archives/ DISTNAME= htmllint @@ -50,7 +50,7 @@ do-build-W3M-on: do-install: ${MKDIR} ${STAGEDIR}${DATADIR}/rule ${STAGEDIR}${DATADIR}/html - cd ${WRKSRC} && ${INSTALL_SCRIPT} htmllint ${STAGEDIR}${PREFIX}/bin + cd ${WRKSRC} && ${INSTALL_SCRIPT} ../htmllint ${STAGEDIR}${PREFIX}/bin cd ${WRKSRC} && ${INSTALL_SCRIPT} ${HTML} ${STAGEDIR}${DATADIR}/html cd ${WRKSRC} && ${INSTALL_DATA} ${PM} ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${INSTALL_DATA} ${RULE} ${STAGEDIR}${DATADIR}/rule