ok giovanni@. ikeman is a tool designed to simplify management of X.509 public key infrastructure used to create IPsec flows by isakmpd(8) or iked(8). It displays all PKI data in a hierarchical view and can also create new certificate authorities, sign new certificate requests and revoke or un-revoke currently loaded certificates. All this in a user-friendly ncurses GUI, which also warns user about errors like already expired, revoked or not yet valid certificates.
25 lines
500 B
Makefile
25 lines
500 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/06/25 07:10:25 rpointel Exp $
|
|
|
|
COMMENT = interactive PKI manager for isakmpd(8) or iked(8)
|
|
DISTNAME = ikeman-0.2
|
|
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = http://storkhole.cz/software/ikeman/
|
|
|
|
MAINTAINER = Martin Pelikan <martin.pelikan@gmail.com>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}
|
|
|
|
WANTLIB += c crypto ncurses
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|