Received: by mail.netbsd.org (Postfix, from userid 605) id 3F9DD850DD; Sat, 8 May 2021 09:24:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7D3B8850C9 for ; Sat, 8 May 2021 09:24:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Wsy-oaBMWJjN for ; Sat, 8 May 2021 09:24:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 0686D84DD2 for ; Sat, 8 May 2021 09:24:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F257BFA95; Sat, 8 May 2021 09:24:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1620465892280890" MIME-Version: 1.0 Date: Sat, 8 May 2021 09:24:52 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/devel/cxref To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20210508092452.F257BFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1620465892280890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sat May 8 09:24:52 UTC 2021 Modified Files: pkgsrc/devel/cxref: Makefile Log Message: Move "INSTALL" to "INSTALL.txt" so the "install" targets run as expected on macOS with case-insensitive filesystem, fixing install of cxref.1. While here, set LICENSE, update MASTER_SITES and HOMEPAGE, and remove unrecognized configure option "--with-cxref-cpp". To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/cxref/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1620465892280890 Content-Disposition: inline Content-Length: 1283 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/cxref/Makefile diff -u pkgsrc/devel/cxref/Makefile:1.15 pkgsrc/devel/cxref/Makefile:1.16 --- pkgsrc/devel/cxref/Makefile:1.15 Wed Oct 31 11:16:51 2012 +++ pkgsrc/devel/cxref/Makefile Sat May 8 09:24:52 2021 @@ -1,18 +1,26 @@ -# $NetBSD: Makefile,v 1.15 2012/10/31 11:16:51 asau Exp $ +# $NetBSD: Makefile,v 1.16 2021/05/08 09:24:52 schmonz Exp $ DISTNAME= cxref-1.6d CATEGORIES= devel lang -MASTER_SITES= http://www.gedanken.demon.co.uk/download-cxref/ +MASTER_SITES= ${HOMEPAGE}/download/ EXTRACT_SUFX= .tgz MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://www.gedanken.demon.co.uk/cxref/ +HOMEPAGE= https://www.gedanken.org.uk/software/cxref/ COMMENT= C Cross Referencing & Documenting tool +LICENSE= gnu-gpl-v2 GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-cxref-cpp CONFIGURE_ARGS+= PERL="" # Don't regenerate documentation USE_TOOLS+= gmake # uses the $< variable in the GNU way USE_TOOLS+= lex yacc +post-extract: fix-install-target-on-case-insensitive-fs +.PHONY: fix-install-target-on-case-insensitive-fs +fix-install-target-on-case-insensitive-fs: + cd ${WRKSRC} \ + && ${MV} -f doc/INSTALL doc/INSTALL.txt \ + && ${RM} -f INSTALL \ + && ${LN} -s doc/INSTALL.txt INSTALL.txt + .include "../../mk/bsd.pkg.mk" --_----------=_1620465892280890--