mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
43 lines
994 B
Makefile
43 lines
994 B
Makefile
# New ports collection makefile for: dirmngr
|
|
# Date created: 06 Feb 2003
|
|
# Whom: michaelnottebrock@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dirmngr
|
|
PORTVERSION= 1.0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GNUPG}
|
|
MASTER_SITE_SUBDIR= dirmngr
|
|
|
|
MAINTAINER= lofi@freebsd.org
|
|
COMMENT= A client for managing and downloading certificate revocation lists
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libassuan.a:${PORTSDIR}/security/libassuan
|
|
LIB_DEPENDS= gcrypt.15:${PORTSDIR}/security/libgcrypt \
|
|
gpg-error.0:${PORTSDIR}/security/libgpg-error \
|
|
iconv:${PORTSDIR}/converters/libiconv \
|
|
ksba.17:${PORTSDIR}/security/libksba \
|
|
pth:${PORTSDIR}/devel/pth
|
|
|
|
USE_BZIP2= yes
|
|
USE_OPENLDAP= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
INFO= dirmngr
|
|
MAN1= dirmngr-client.1 dirmngr.1
|
|
|
|
CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.else
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|