5393242c73
Performing substitutions during post-patch breaks tools such as mkpatches, making it very difficult to regenerate correct patches after making changes, and often leading to substituted string replacements being committed.
26 lines
726 B
Makefile
26 lines
726 B
Makefile
# $NetBSD: Makefile,v 1.2 2018/07/04 13:40:33 jperkin Exp $
|
|
|
|
PKGNAME= indexinfo-0.2.6
|
|
CATEGORIES= print
|
|
MASTER_SITES= https://github.com/bapt/indexinfo/archive/
|
|
DIST_SUBDIR= indexinfo
|
|
DISTFILES= 0.2.6.tar.gz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/bapt/indexinfo
|
|
COMMENT= Utility to regenerate the GNU info page index
|
|
|
|
pre-install:
|
|
${MKDIR} ${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} != "FreeBSD" && ${OPSYS} != "DragonFly"
|
|
SUBST_CLASSES+= reallocf
|
|
SUBST_STAGE.reallocf= pre-configure
|
|
SUBST_FILES.reallocf= indexinfo.c
|
|
SUBST_SED.reallocf= -e "s|reallocf|realloc|"
|
|
SUBST_MESSAGE.reallocf= Replace reallocf with realloc on ${OPSYS}
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|