mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
c5b6fe346c
Graphical certification authority is an interface for managing RSA keys and certificates, and the creation and signing of PKCS#10 requests. It uses the OpenSSL library and a Berkeley DB for key and certificate storage. It supports importing and exporting keys and PEM DER PKCS8 certificates, signing and revoking of PEM DER PKCS12, and selection of x509v3 extensions. A tree view of certificates is presented. Author: Christian Hohnstaedt <christian@hohnstaedt.de> WWW: http://www.hohnstaedt.de/xca.html PR: 58378 Submitted by: Valentin Zahariev <curly@e-card.bg>
30 lines
603 B
Makefile
30 lines
603 B
Makefile
# New ports collection makefile for: xca
|
|
# Date created: 2002-12-23
|
|
# Whom: Valentin Zahariev <curly@e-card.bg>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xca
|
|
PORTVERSION= 0.4.5
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= curly@e-card.bg
|
|
COMMENT= Graphical certification authority
|
|
|
|
LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_REINPLACE= yes
|
|
USE_OPENSSL= yes
|
|
USE_QT_VER= 3
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e 's,(if[\ \t]+test[\ \t]+.+)[\ \t]+==,\1 =,' \
|
|
${WRKDIR}/${PKGNAME}/configure
|
|
|
|
.include <bsd.port.mk>
|