47fe899194
gnoMint is a tool for an easy creation and management of Certification Authorities. It allows a fancy visualization of all the pieces that conform a CA: x509 certificates, CSRs, CRLs... Currently, it allows the creation of CAs, CSRs and Certificates, and export both public and private parts of them into PEM formatted files. It manages the revocation of the created certificates, as well as the creation of CRLs. <...> ok jasper@
50 lines
1.3 KiB
Makefile
Executable File
50 lines
1.3 KiB
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2010/08/25 13:43:58 ajacoutot Exp $
|
|
|
|
COMMENT= X.509 Certification Authority management tool
|
|
|
|
DISTNAME= gnomint-1.2.1
|
|
|
|
CATEGORIES= security x11
|
|
|
|
HOMEPAGE= http://gnomint.sourceforge.net/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += ORBit-2 X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext tasn1
|
|
WANTLIB += Xfixes Xi Xinerama Xrandr Xrender atk-1.0 c cairo dbus-1
|
|
WANTLIB += dbus-glib-1 expat fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0
|
|
WANTLIB += gio-2.0 glib-2.0 glitz gmodule-2.0 gobject-2.0 gthread-2.0
|
|
WANTLIB += gtk-x11-2.0 m pango-1.0 pangocairo-1.0 pangoft2-1.0 sqlite3
|
|
WANTLIB += pcre pixman-1 png pthread pthread-stubs readline termcap
|
|
WANTLIB += xcb xcb-render xcb-render-util z gcrypt gnutls gpg-error
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnomint/}
|
|
|
|
MODULES= devel/gettext \
|
|
devel/gconf2 \
|
|
textproc/intltool
|
|
|
|
MODGCONF2_SCHEMAS_DIR=gnomint
|
|
|
|
RUN_DEPENDS= ::misc/shared-mime-info \
|
|
::devel/desktop-file-utils
|
|
|
|
LIB_DEPENDS= ::security/gnutls \
|
|
::databases/sqlite3
|
|
|
|
USE_LIBTOOL= Yes
|
|
USE_GMAKE= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
.include <bsd.port.mk>
|