diff options
author | Matt Goins <mjgoins@openflows.com> | 2008-10-29 12:20:42 -0400 |
---|---|---|
committer | Matt Goins <mjgoins@openflows.com> | 2008-10-29 12:20:42 -0400 |
commit | 680d7340d29d16325eb991feb37885d6faa955e2 (patch) | |
tree | 928830b83f7b248c448ccc7309aaa45ceecba8ba /packaging/freebsd/Makefile | |
parent | 1b6ebcddf8226ad4aa29da643060b6410030cf5d (diff) | |
parent | 6ed72efb63d7111acc7fb1f2e4f28757ad485b77 (diff) |
Merge commit 'dkg/master'
Diffstat (limited to 'packaging/freebsd/Makefile')
-rw-r--r-- | packaging/freebsd/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packaging/freebsd/Makefile b/packaging/freebsd/Makefile index 78ad0d3..984bc87 100644 --- a/packaging/freebsd/Makefile +++ b/packaging/freebsd/Makefile @@ -6,7 +6,7 @@ # PORTNAME= monkeysphere -PORTVERSION= 0.16 +PORTVERSION= 0.19 CATEGORIES= security MASTER_SITES= http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/ # hack for debian orig tarballs @@ -17,7 +17,7 @@ COMMENT= use the OpenPGP web of trust to verify ssh connections LIB_DEPENDS= gnutls.26:${PORTSDIR}/security/gnutls RUN_DEPENDS= base64:${PORTSDIR}/converters/base64 \ - gpg:${PORTSDIR}/security/gnupg \ + gpg:${PORTSDIR}/security/gnupg1 \ lockfile:${PORTSDIR}/mail/procmail \ /usr/local/bin/getopt:${PORTSDIR}/misc/getopt \ bash:${PORTSDIR}/shells/bash @@ -34,6 +34,12 @@ post-patch: find . -iname '*.orig' -delete post-install: + @if [ ! -f ${PREFIX}/etc/monkeysphere/gnupg-host.conf ]; then \ + ${CP} -p ${PREFIX}/etc/monkeysphere/gnupg-host.conf.sample ${PREFIX}/etc/monkeysphere/gnupg-host.conf ; \ + fi + @if [ ! -f ${PREFIX}/etc/monkeysphere/gnupg-authentication.conf ]; then \ + ${CP} -p ${PREFIX}/etc/monkeysphere/gnupg-authentication.conf.sample ${PREFIX}/etc/monkeysphere/gnupg-authentication.conf ; \ + fi @if [ ! -f ${PREFIX}/etc/monkeysphere/monkeysphere.conf ]; then \ ${CP} -p ${PREFIX}/etc/monkeysphere/monkeysphere.conf.sample ${PREFIX}/etc/monkeysphere/monkeysphere.conf ; \ fi |