942aad2e6a
"INFO_FILES should be set to YES or yes." "Packages that install info files should set INFO_FILES." Makefile and PLIST warning, respectively.
26 lines
636 B
Makefile
26 lines
636 B
Makefile
# $NetBSD: Makefile,v 1.20 2013/04/06 20:27:25 rodent Exp $
|
|
|
|
DISTNAME= vera-1.16
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://home.snafu.de/ohei/FTP/ \
|
|
${MASTER_SITE_GNU:=vera/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://cgi.snafu.de/ohei/user-cgi-bin/veramain-e.cgi
|
|
COMMENT= Virtual Entity of Relevant Acronyms
|
|
|
|
USE_TOOLS+= makeinfo
|
|
INFO_FILES= yes
|
|
|
|
INSTALLATION_DIRS= ${PKGINFODIR}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && makeinfo vera.texi
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; for f in vera.info vera.info-[0-9]*; do \
|
|
${TEST} ! -f "$$f" || \
|
|
${INSTALL_DATA} "$$f" ${DESTDIR}${PREFIX}/${PKGINFODIR};\
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|