1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00
freebsd-ports/security/libgcrypt/Makefile

64 lines
1.5 KiB
Makefile

# New ports collection Makefile for: libgcrypt
# Date created: July 17 2002
# Whom: Tilman Linneweh <arved@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= libgcrypt
PORTVERSION= 1.5.0
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GNUPG}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= umq@ueo.co.jp
COMMENT= General purpose crypto library based on code used in GnuPG
LICENSE= GPLv2 LGPL21
LICENSE_COMB= multi
LICENSE_FILE= ${WRKSRC}/COPYING ${WRKSRC}/COPYING.LIB
BUILD_DEPENDS= libgpg-error>=1.8:${PORTSDIR}/security/libgpg-error
RUN_DEPENDS= libgpg-error>=1.8:${PORTSDIR}/security/libgpg-error
USE_BZIP2= yes
USE_AUTOTOOLS= libtool
USE_CSTD= gnu89
GNU_CONFIGURE= yes
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
USE_LDCONFIG= yes
DOCS= AUTHORS COPYING COPYING.LIB ChangeLog INSTALL NEWS README README.SVN \
THANKS TODO doc/HACKING doc/README.apichanges
INFO= gcrypt
.include <bsd.port.pre.mk>
.if ${ARCH} == "powerpc"
CONFIGURE_ARGS+= --disable-asm
.elif ${ARCH} == "i386"
.if (${OSVERSION} < 900033)
CONFIGURE_ARGS+= --disable-aesni-support
#workaround for FreeBSD 10.0
.elif (${OSVERSION} >= 1000000)
CONFIGURE_ARGS+= --disable-asm
.endif
.endif
.if (${OSVERSION} < 700000)
CONFIGURE_ARGS+= --disable-padlock-support
.endif
post-patch:
@${REINPLACE_CMD} -e "s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|" \
${WRKSRC}/ltmain.sh
pre-configure:
@${RM} -f ${WRKSRC}/doc/gcrypt.info*
.if !defined(NOPORTDOCS)
post-install:
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.post.mk>