e058281ba3
Based on a tarball from Shell Hung <i@shellhung.org> -- This module sprung out of a need to do one thing and one thing only, do it securely, and do it well. This module creates and checks detached signatures for data. That's it. If you want to do anything else that PGP lets you do, look elsewhere.
37 lines
869 B
Makefile
37 lines
869 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/02/22 19:37:02 avsm Exp $
|
|
|
|
DISTNAME= PGP-Sign-0.16
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= security perl5
|
|
NEED_VERSION= 1.352
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= PGP
|
|
|
|
MAINTAINER= Shell Hung <i@shellhung.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
FLAVORS= pgp pgp5
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mpgp}
|
|
RUN_DEPENDS= pgp::security/pgp
|
|
CONFIGURE_ARGS= PGPV="${LOCALBASE}/bin/pgpv" PGPS="${LOCALBASE}/bin/pgps" PGPSTYLE="PGP"
|
|
|
|
.elif ${FLAVOR:L:Mpgp5}
|
|
RUN_DEPENDS= pgp5::security/pgp5
|
|
CONFIGURE_ARGS= PGPV="${LOCALBASE}/bin/pgpv" PGPS="${LOCALBASE}/bin/pgps" PGPSTYLE="PGP5"
|
|
|
|
.else
|
|
RUN_DEPENDS= gpg::security/gnupg
|
|
CONFIGURE_ARGS= PGP="${LOCALBASE}/bin/gpg" PGPSTYLE="GPG"
|
|
.endif
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
CONFIGURE_STYLE= perl
|
|
|
|
.include <bsd.port.mk>
|