blob: 3d3ce39f9691bb0012e2a3048e6cd99ef2358c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# $NetBSD: Makefile,v 1.17 2013/05/31 12:41:51 wiz Exp $
#
DISTNAME= gpg2dot-1.5
PKGREVISION= 2
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
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 ${DESTDIR}${PREFIX}/bin/gpg2dot
# ${INSTALL_MAN} ${WRKSRC}/gpg2dot.1 ${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"
|