- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
40 lines
945 B
Makefile
40 lines
945 B
Makefile
# Created by: michaelnottebrock@gmx.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dirmngr
|
|
PORTVERSION= 1.1.0
|
|
PORTREVISION= 13
|
|
CATEGORIES= security
|
|
MASTER_SITES= GNUPG
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= umq@ueo.co.jp
|
|
COMMENT= Client for managing and downloading certificate revocation lists
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libassuan.so:${PORTSDIR}/security/libassuan \
|
|
libgcrypt.so:${PORTSDIR}/security/libgcrypt \
|
|
libgpg-error.so:${PORTSDIR}/security/libgpg-error \
|
|
libksba.so:${PORTSDIR}/security/libksba \
|
|
libpth.so:${PORTSDIR}/devel/pth
|
|
|
|
USES= gmake iconv tar:bzip2
|
|
USE_OPENLDAP= yes
|
|
GNU_CONFIGURE= yes
|
|
INFO= dirmngr
|
|
|
|
CONFIGURE_ARGS+= --docdir=${DOCSDIR}
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
verify: checksum
|
|
gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig
|
|
|
|
.include <bsd.port.mk>
|