84f2203288
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).
24 lines
707 B
Makefile
24 lines
707 B
Makefile
# $NetBSD: Makefile,v 1.6 2020/01/26 05:26:19 rillig Exp $
|
|
|
|
DISTNAME= dbfsak-5.0.src
|
|
PKGNAME= ${DISTNAME:S/.src//}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dbfsak/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://dbfsak.sourceforge.net/
|
|
COMMENT= Tool for converting to and from DBF files
|
|
LICENSE= artistic
|
|
|
|
NO_CONFIGURE= yes
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
MAKE_FLAGS+= CPP=${CC:Q}
|
|
MAKE_FLAGS+= CFLAGS="${CFLAGS} -I. -DVERSION='\"${PKGVERSION_NOREV}\"'"
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dbfsak ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/dbfsak.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|