pkgsrc/pkgtools/cdpack/Makefile
rillig b686dd9180 all: migrate several HOMEPAGEs to https
pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.
2020-01-18 23:30:43 +00:00

61 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.34 2020/01/18 23:33:25 rillig Exp $
#
PKGNAME= cdpack-1.9
CATEGORIES= pkgtools
MAINTAINER= dmcmahill@NetBSD.org
HOMEPAGE= https://www.NetBSD.org/
COMMENT= Utility to create multi-cd/dvd binary package collections
LICENSE= original-bsd
# for mkisofs
DEPENDS+= cdrtools-[0-9]*:../../sysutils/cdrtools
WRKSRC= ${WRKDIR}
NO_CONFIGURE= yes
USE_TOOLS+= awk:run
USE_TOOLS+= bzcat:run
USE_TOOLS+= expr:run
USE_TOOLS+= gzcat:run
USE_TOOLS+= printf:run
USE_TOOLS+= sort:run
USE_TOOLS+= tar:run
USE_TOOLS+= tsort:run
INSTALLATION_DIRS= bin libexec ${PKGMANDIR}/man1
do-build:
.for f in cdpack cddist
${SED} -e 's;@prefix@;${PREFIX};g' \
-e 's;@progver@;${PKGVERSION};g' \
-e 's;@AWK@;${AWK};g' \
-e 's;@BZCAT@;${BZCAT};g' \
-e 's;@EXPR@;${EXPR};g' \
-e 's;@GZCAT@;${GZCAT};g' \
-e 's;@PRINTF@;${PRINTF};g' \
-e 's;@SORT@;${SORT};g' \
-e 's;@TAR@;${TAR};g' \
-e 's;@TSORT@;${TSORT};g' \
${FILESDIR}/${f}.sh > \
${WRKSRC}/${f}
${CHMOD} 755 ${WRKDIR}/${f}
${SED} -e 's;@AWK@;${AWK};g' \
-e 's;@BZCAT@;${BZCAT};g' \
-e 's;@GZCAT@;${GZCAT};g' \
-e 's;@TAR@;${TAR};g' \
${FILESDIR}/${f}.1 > \
${WRKSRC}/${f}.1
.endfor
${SED} -e 's;@AWK@;${AWK};g' ${FILESDIR}/cdgen.awk > \
${WRKSRC}/cdgen.awk
do-install:
.for f in cdpack cddist
${INSTALL_SCRIPT} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.endfor
${INSTALL_SCRIPT} ${WRKSRC}/cdgen.awk ${DESTDIR}${PREFIX}/libexec
.include "../../mk/bsd.pkg.mk"