pkgsrc/devel/cbrowser/Makefile
rillig 84f2203288 all: migrate some SourceForge homepage URLs back from https to http
https://mail-index.netbsd.org/pkgsrc-changes/2020/01/18/msg205146.html

In the above commit, the homepage URLs were migrated from http to https,
assuming that SourceForge would use the same host names for both http and
https connections. This assumption was wrong. Their documentation at
https://sourceforge.net/p/forge/documentation/Custom%20VHOSTs/ states
that the https URLs use the domain sourceforge.io instead.

To make the homepages from the above commit reachable again, pkglint has
been extended to check for reachable homepages. This check is only
enabled when the --network command line option is given.

Each of the homepages that referred to https://$project.sourceforge.net
before was migrated to https://$project.sourceforge.io (27), and if that
was not reachable, to the fallback URL http://$project.sourceforge.net
(163).
2020-01-26 05:26:08 +00:00

31 lines
813 B
Makefile

# $NetBSD: Makefile,v 1.19 2020/01/26 05:26:22 rillig Exp $
#
DISTNAME= cbrowser-0.8
PKGREVISION= 1
CATEGORIES= devel tk
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cbrowser/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://cbrowser.sourceforge.net/
COMMENT= Graphical C/C++ source code browsing tool, and call graph viewer
DEPENDS+= cscope-[0-9]*:../../devel/cscope
DEPENDS+= tk-[0-9]*:../../x11/tk
NO_BUILD= yes
INSTALLATION_DIRS= bin share/cbrowser
REPLACE_INTERPRETER+= wish
REPLACE.wish.old= /usr/local/bin/wish
REPLACE.wish.new= ${LOCALBASE}/bin/wish
REPLACE_FILES.wish= ftcllib.tcl
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/cbrowser ${DESTDIR}${PREFIX}/bin
for f in *.tcl tclIndex; do \
${INSTALL_SCRIPT} ${WRKSRC}/$$f ${DESTDIR}${PREFIX}/share/cbrowser; \
done
.include "../../mk/bsd.pkg.mk"