cac4849e00
From Bjorn Ketelaars, ok benoit@ Easy-RSA is a small RSA key management package, based on the openssl command line tool, that can be found in the easy-rsa subdirectory of the OpenVPN distribution. While this tool is primarily concerned with key management for the SSL VPN application space, it can also be used for building web certificates.
24 lines
442 B
Makefile
24 lines
442 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/04/02 11:40:36 sthen Exp $
|
|
|
|
COMMENT = small RSA key management package
|
|
|
|
PKGNAME = easy-rsa-2.2.0
|
|
DISTNAME = ${PKGNAME}_master
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = http://openvpn.net/
|
|
|
|
# GPLv2 only
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = https://github.com/downloads/OpenVPN/easy-rsa/
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
NO_TEST = Yes
|
|
|
|
post-install:
|
|
@mv ${PREFIX}/share/easy-rsa/vars{,.dist}
|
|
|
|
.include <bsd.port.mk>
|