summaryrefslogtreecommitdiff
path: root/packaging/macports/Portfile
blob: e6176d0d313309f221b0c163a310180708910903 (plain)
  1. # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
  2. # $Id$
  3. PortSystem 1.0
  4. name monkeysphere
  5. version 0.24
  6. categories net security
  7. maintainers nomaintainer
  8. description use the OpenPGP web of trust to verify ssh connections
  9. long_description SSH key-based authentication is tried-and-true, \
  10. but it lacks a true Public Key Infrastructure for \
  11. key certification, revocation and expiration. \
  12. Monkeysphere is a framework that uses the OpenPGP \
  13. web of trust for these PKI functions. It can be \
  14. used in both directions: for users to get \
  15. validated host keys, and for hosts to authenticate \
  16. users.
  17. homepage http://web.monkeysphere.info/
  18. platforms darwin
  19. depends_run bin:ssh:openssh \
  20. port:gnupg \
  21. port:perl5.10 \
  22. port:p5-crypt-rsa \
  23. port:p5-digest-sha1 \
  24. port:procmail
  25. master_sites http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/
  26. distname ${name}_${version}
  27. extract.suffix .orig.tar.gz
  28. worksrcdir ${name}-${version}
  29. checksums md5 8590532f4702fa44027a6a583657c9ef
  30. patch.dir ${worksrcpath}
  31. patch.cmd make
  32. patch.args -f Makefile \
  33. WRKSRC=${worksrcpath} \
  34. SYSETCDIR=${destroot}${prefix}/etc/monkeysphere \
  35. SYSDATADIR=${destroot}${prefix}/var/db/monkeysphere \
  36. SYSSHAREDIR=${destroot}${prefix}/share/monkeysphere \
  37. post-patch
  38. use_configure no
  39. destroot.destdir DESTDIR=${destroot}${prefix}
  40. destroot.args PREFIX=
  41. # variant to use the port version of bash, which may be much newer
  42. # than the one provided by the system
  43. variant port-bash description {use port version of Bash} {
  44. depends_run-append port:bash
  45. }