2003-04-30 19:00:36 +02:00
|
|
|
# New ports collection makefile for: dirmngr
|
|
|
|
# Date created: 06 Feb 2003
|
|
|
|
# Whom: michaelnottebrock@gmx.net
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= dirmngr
|
2010-06-17 23:29:20 +02:00
|
|
|
PORTVERSION= 1.1.0
|
2011-07-03 13:40:49 +02:00
|
|
|
PORTREVISION= 8
|
2003-04-30 19:00:36 +02:00
|
|
|
CATEGORIES= security
|
2004-05-03 21:22:04 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_GNUPG}
|
2007-12-24 20:53:16 +01:00
|
|
|
MASTER_SITE_SUBDIR= dirmngr
|
2010-06-17 23:29:20 +02:00
|
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig
|
|
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
2003-04-30 19:00:36 +02:00
|
|
|
|
2008-09-24 11:23:44 +02:00
|
|
|
MAINTAINER= umq@ueo.co.jp
|
2003-04-30 19:00:36 +02:00
|
|
|
COMMENT= A client for managing and downloading certificate revocation lists
|
|
|
|
|
2011-01-14 08:42:11 +01:00
|
|
|
LIB_DEPENDS= assuan.0:${PORTSDIR}/security/libassuan \
|
2011-07-03 13:40:49 +02:00
|
|
|
gcrypt.18:${PORTSDIR}/security/libgcrypt \
|
2007-03-08 15:12:08 +01:00
|
|
|
gpg-error.0:${PORTSDIR}/security/libgpg-error \
|
2011-03-27 21:03:02 +02:00
|
|
|
ksba.19:${PORTSDIR}/security/libksba \
|
2004-12-17 14:41:01 +01:00
|
|
|
pth:${PORTSDIR}/devel/pth
|
2003-04-30 19:00:36 +02:00
|
|
|
|
2005-04-21 21:22:56 +02:00
|
|
|
USE_BZIP2= yes
|
2008-09-24 11:23:44 +02:00
|
|
|
USE_ICONV= yes
|
2003-08-28 18:41:11 +02:00
|
|
|
USE_OPENLDAP= yes
|
2006-02-23 11:40:44 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2003-04-30 19:00:36 +02:00
|
|
|
USE_GMAKE= yes
|
2003-08-28 18:41:11 +02:00
|
|
|
INFO= dirmngr
|
2006-09-13 23:12:05 +02:00
|
|
|
MAN1= dirmngr-client.1 dirmngr.1
|
2003-04-30 19:00:36 +02:00
|
|
|
|
2008-09-24 11:23:44 +02:00
|
|
|
CONFIGURE_ARGS+= --docdir=${DOCSDIR}
|
2011-09-24 00:26:39 +02:00
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
2004-12-17 14:41:01 +01:00
|
|
|
|
2010-06-17 23:29:20 +02:00
|
|
|
OPTIONS= NLS "National Language Support" off
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2004-08-04 17:56:09 +02:00
|
|
|
.if defined(WITHOUT_NLS)
|
|
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
|
|
PLIST_SUB+= NLS="@comment "
|
|
|
|
.else
|
|
|
|
USE_GETTEXT= yes
|
|
|
|
PLIST_SUB+= NLS=""
|
|
|
|
.endif
|
|
|
|
|
2010-06-17 23:29:20 +02:00
|
|
|
verify: checksum
|
|
|
|
gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|