74c43352a7
General purpose crypto library based on code used in GnuPG PR: 43894 Submitted by: Tilman Linneweh <tilman@arved.de>
34 lines
998 B
Makefile
34 lines
998 B
Makefile
# New ports collection Makefile for: libgcrypt
|
|
# Date created: July 17 2002
|
|
# Whom: Tilman Linneweh <tilman@arved.de>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libgcrypt
|
|
PORTVERSION= 1.1.10
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://gd.tuwien.ac.at/privacy/gnupg/alpha/libgcrypt/ \
|
|
ftp://ftp.gnupg.org/gcrypt/alpha/libgcrypt/ \
|
|
http://ftp.hi.is/pub/mirrors/gnupg/alpha/libgcrypt/ \
|
|
http://www.mirrors.wiretapped.net/security/cryptography/apps/pgp/GnuPG/alpha/libgcrypt/ \
|
|
${MASTER_SITE_RINGSERVER}/net/gnupg/alpha/libgcrypt/ \
|
|
|
|
MAINTAINER= freebsdports@arved.de
|
|
|
|
BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf
|
|
|
|
USE_REINPLACE= yes
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|" \
|
|
${WRKSRC}/scripts/ltmain.sh
|
|
|
|
pre-configure:
|
|
@${RM} -f ${WRKSRC}/doc/gcrypt.info*
|
|
@cd ${WRKSRC}; ${LOCALBASE}/bin/autoconf
|
|
|
|
.include <bsd.port.mk>
|