54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
40 lines
933 B
Makefile
40 lines
933 B
Makefile
# New ports collection makefile for: dirmngr
|
|
# Date created: 06 Feb 2003
|
|
# Whom: michaelnottebrock@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dirmngr
|
|
PORTVERSION= 0.9.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GNUPG}
|
|
MASTER_SITE_SUBDIR= alpha/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.13:${PORTSDIR}/security/libgcrypt \
|
|
gpg-error:${PORTSDIR}/security/libgpg-error \
|
|
ksba.14:${PORTSDIR}/security/libksba \
|
|
pth:${PORTSDIR}/devel/pth
|
|
|
|
USE_BZIP2= yes
|
|
USE_OPENLDAP= yes
|
|
USE_GETOPT_LONG=yes
|
|
USE_AUTOTOOLS= libtool:13
|
|
USE_GMAKE= yes
|
|
INFO= dirmngr
|
|
|
|
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>
|