pkgsrc/security/gpg2dot/Makefile
rillig 2829e658f2 Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.

Fixes PR 35265, although I did not use the patch provided therein.
2007-01-07 09:13:46 +00:00

46 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.10 2007/01/07 09:14:10 rillig Exp $
#
DISTNAME= gpg2dot-1.4
CATEGORIES= security
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= lukem@NetBSD.org
HOMEPAGE= ftp://ftp.NetBSD.org/pub/NetBSD/packages/pkgsrc/doc/pkgsrc.html
COMMENT= Converts your GnuPG keyring to a graph of associations
USE_LANGUAGES= # empty
USE_TOOLS+= perl:run
EXTRACT_ONLY= # empty
NO_CHECKSUM= yes
NO_CONFIGURE= yes
DISTVER= ${DISTNAME:S/gpg2dot-//}
WRKSRC= ${WRKDIR}
INSTALLATION_DIRS= bin
do-extract:
${CP} ${FILESDIR}/gpg2dot.pl ${WRKSRC}/gpg2dot.pl
# ${CP} ${FILESDIR}/gpg2dot.1 ${WRKSRC}/gpg2dot.1.in
do-build:
.for FILE in gpg2dot
${SED} -e 's|@PREFIX@|${PREFIX}|g' \
-e 's|@DISTVER@|${DISTVER}|g' \
< ${WRKSRC}/${FILE}.pl \
> ${WRKSRC}/${FILE}
.endfor
#.for FILE in gpg2dot
# ${SED} -e '' \
# < ${WRKSRC}/${FILE}.1.in \
# > ${WRKSRC}/${FILE}.1
#.endfor
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/gpg2dot ${PREFIX}/bin/gpg2dot
# ${INSTALL_MAN} ${WRKSRC}/gpg2dot.1 ${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"