mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
c041c07d22
Public Key Infrastructure for key certification, revocation and expiration. Monkeysphere is a framework that uses the OpenPGP web of trust for these PKI functions. It can be used in both directions: for users to get validated host keys, and for hosts to authenticate users. WWW: http://web.monkeysphere.info/ PR: ports/128406 Submitted by: Daniel Kahn Gillmor <dkg at fifthhorseman.net>
73 lines
2.8 KiB
Makefile
73 lines
2.8 KiB
Makefile
# New ports collection makefile for: monkeysphere
|
|
# Date created: 2008-09-11 23:38:27-0400
|
|
# Whom: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= monkeysphere
|
|
PORTVERSION= 0.24
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/
|
|
# hack for debian orig tarballs
|
|
DISTFILES= ${PORTNAME}_${DISTVERSION}.orig.tar.gz
|
|
|
|
MAINTAINER= dkg@fifthhorseman.net
|
|
COMMENT= Use the OpenPGP web of trust to verify ssh connections
|
|
|
|
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg1 \
|
|
lockfile:${PORTSDIR}/mail/procmail \
|
|
bash:${PORTSDIR}/shells/bash \
|
|
${SITE_PERL}/${PERL_ARCH}/Crypt/OpenSSL/RSA.pm:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \
|
|
${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1
|
|
|
|
MAN1= monkeysphere.1 openpgp2ssh.1 pem2openpgp.1
|
|
MAN7= monkeysphere.7
|
|
MAN8= monkeysphere-host.8 monkeysphere-authentication.8
|
|
MANCOMPRESSED= yes
|
|
|
|
MAKE_ARGS= ETCPREFIX=${PREFIX} MANPREFIX=${PREFIX}/man ETCSUFFIX=.sample
|
|
|
|
# use proper system paths for FreeBSD instead of debian's:
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/etc/monkeysphere|/usr/local/etc/monkeysphere|g' \
|
|
${WRKSRC}/src/share/defaultenv \
|
|
${WRKSRC}/src/transitions/0.23 \
|
|
${WRKSRC}/man/man1/monkeysphere.1 \
|
|
${WRKSRC}/man/man8/monkeysphere-authentication.8 \
|
|
${WRKSRC}/man/man8/monkeysphere-host.8 \
|
|
${WRKSRC}/etc/monkeysphere-authentication.conf
|
|
@${REINPLACE_CMD} -e 's|/var/lib/monkeysphere|/var/monkeysphere|g' \
|
|
${WRKSRC}/src/transitions/0.23 \
|
|
${WRKSRC}/man/man1/monkeysphere.1 \
|
|
${WRKSRC}/man/man8/monkeysphere-authentication.8 \
|
|
${WRKSRC}/man/man8/monkeysphere-host.8 \
|
|
${WRKSRC}/src/monkeysphere-host \
|
|
${WRKSRC}/src/monkeysphere-authentication \
|
|
${WRKSRC}/doc/getting-started-admin.mdwn
|
|
@${REINPLACE_CMD} -e 's|/usr/share/monkeysphere|/usr/local/share/monkeysphere|g' \
|
|
${WRKSRC}/src/monkeysphere-host \
|
|
${WRKSRC}/src/monkeysphere-authentication \
|
|
${WRKSRC}/src/monkeysphere
|
|
# and clean up cruft from the sed replacements:
|
|
${FIND} ${WRKSRC} -name '*.bak' -delete
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/monkeysphere/monkeysphere.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/monkeysphere/monkeysphere.conf.sample ${PREFIX}/etc/monkeysphere/monkeysphere.conf ; \
|
|
fi
|
|
@if [ ! -f ${PREFIX}/etc/monkeysphere/monkeysphere-host.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/monkeysphere/monkeysphere-host.conf.sample ${PREFIX}/etc/monkeysphere/monkeysphere-host.conf ; \
|
|
fi
|
|
@if [ ! -f ${PREFIX}/etc/monkeysphere/monkeysphere-authentication.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/monkeysphere/monkeysphere-authentication.conf.sample ${PREFIX}/etc/monkeysphere/monkeysphere-authentication.conf ; \
|
|
fi
|
|
.if !defined(PACKAGE_BUILDING)
|
|
@${SETENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
.endif
|
|
|
|
post-deinstall:
|
|
@${SETENV} ${SH} ${PKGDEINSTALL} ${PKGNAME} POST-DEINSTALL
|
|
|
|
.include <bsd.port.mk>
|