3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# New ports collection Makefile for: libksba
|
|
# Date created: July 17 2002
|
|
# Whom: Tilman Linneweh <arved@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libksba
|
|
PORTVERSION= 0.4.7
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GNUPG}
|
|
MASTER_SITE_SUBDIR= alpha/${PORTNAME}
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}.sig
|
|
|
|
MAINTAINER= arved@FreeBSD.org
|
|
COMMENT= "KSBA is an X.509 Library"
|
|
|
|
USE_LIBTOOL_VER=13
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_TARGET=
|
|
CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
USE_AUTOCONF_VER= 253
|
|
USE_PERL5_BUILD= yes
|
|
|
|
INFO= ksba
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-extract:
|
|
.if exists(${PREFIX}/bin/gpg)
|
|
@${MKDIR} ${WRKDIR}
|
|
@${ECHO_CMD} "===> Verifying GnuPG Signature."
|
|
-${PREFIX}/bin/gpg --no-default-keyring --keyring ${WRKDIR}/keyring \
|
|
--keyserver pgp.mit.edu --recv-key 57548DCD
|
|
cd ${DISTDIR}; ${PREFIX}/bin/gpg --keyring ${WRKDIR}/keyring --verify \
|
|
${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}.sig \
|
|
${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
|
.else
|
|
@${ECHO_CMD} "===> GnuPG not installed. Signature can not be verified"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|