freebsd-ports/security/gnutls-devel/Makefile
Tilman Keskinoz 8310ee07c9 Update libgcrypt to 1.2.1. Changes:
* made the code try to lock secure memory pool not only when running as
          root,
        * fixed type usage in Serpent,
        * made the code mix the PID into the entropy pool for better protection
          after a fork,
        * fixed memory leak in RSA.
        * fixed alignment problems in Rijndael,
        * fixed memory leak in gcry_pk_sign(),
        * fixed broken pointer access in gcry_ac_open(),
        * updated the documentation,
        * fixed several other bugs.
Chase Shared library version and bump PORTREVISION of affected ports.
2005-01-11 14:53:12 +00:00

52 lines
1.5 KiB
Makefile

# New ports collection makefile for: gnutls-devel
# Date created: 2003-07-17
# Whom: Sergei Kolobov <sergei@kolobov.com>
#
# $FreeBSD$
#
PORTNAME= gnutls
PORTVERSION= 1.1.9
PORTREVISION= 1
CATEGORIES= security net
MASTER_SITES= ${MASTER_SITE_GNUPG} \
http://www.mirrors.wiretapped.net/security/network-security/gnutls/devel/ \
ftp://ftp.mirrors.wiretapped.net/security/network-security/gnutls/devel/ \
ftp://ftp.gnutls.org/pub/gnutls/devel/
MASTER_SITE_SUBDIR= alpha/gnutls/devel
PKGNAMESUFFIX= -devel
MAINTAINER= sergei@FreeBSD.org
COMMENT= GNU Transport Layer Security library (development version)
LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \
gpg-error.1:${PORTSDIR}/security/libgpg-error \
tasn1.2:${PORTSDIR}/security/libtasn1 \
opencdk.8:${PORTSDIR}/security/opencdk
CONFLICTS= gnutls-[0-9]*
USE_ICONV= yes
USE_GETTEXT= yes
USE_INC_LIBTOOL_VER=15
INSTALLS_SHLIB= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --with-included-lzo
MAN1= certtool.1 gnutls-cli.1 gnutls-cli-debug.1 \
gnutls-serv.1 gnutls-srpcrypt.1
DOCS= AUTHORS NEWS README THANKS doc/tex/*.ps
EXAMPLES= doc/examples/*.c
post-install:
@${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>