Makefile 557 B

12345678910111213141516171819202122232425262728
  1. # $OpenBSD: Makefile,v 1.26 2016/03/20 19:57:02 naddy Exp $
  2. COMMENT= perl module to create/verify PGP signatures
  3. MODULES= cpan
  4. PKG_ARCH= *
  5. DISTNAME= PGP-Sign-0.20
  6. REVISION= 2
  7. CATEGORIES= security
  8. # perl
  9. PERMIT_PACKAGE_CDROM= Yes
  10. FLAVORS= pgp
  11. FLAVOR?=
  12. .if ${FLAVOR:Mpgp}
  13. RUN_DEPENDS= pgp->=5,<6:security/pgp5
  14. CONFIGURE_ARGS= PGPV="${LOCALBASE}/bin/pgpv" PGPS="${LOCALBASE}/bin/pgps" PGPSTYLE="PGP5"
  15. .else
  16. RUN_DEPENDS= security/gnupg
  17. CONFIGURE_ARGS= PGP="${LOCALBASE}/bin/gpg" PGPSTYLE="GPG"
  18. .endif
  19. BUILD_DEPENDS= ${RUN_DEPENDS}
  20. .include <bsd.port.mk>