mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
f8656b2ce6
SSL 3.0 protocols. The library does not include any patented algorithms and is available under the GNU Lesser GPL license. Important features of the GnuTLS library include: - Thread safety - Support for both TLS 1.0 and SSL 3.0 protocols - Support for both X.509 and OpenPGP certificates - Support for basic parsing and verification of certificates - Support for SRP for TLS authentication - Support for TLS Extension mechanism - Support for TLS Compression Methods Additionaly GnuTLS provides an emulation API for the widely used OpenSSL library, to ease integration with existing applications. WWW: http://www.gnutls.org/ PR: ports/45348 Submitted by: Sergei Kolobov <sergei@kolobov.com>
39 lines
964 B
Makefile
39 lines
964 B
Makefile
# New ports collection makefile for: gnutls
|
|
# Date created: 13 Nov 2002
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnutls
|
|
PORTVERSION= 0.5.11
|
|
CATEGORIES= security net
|
|
MASTER_SITES= ftp://ftp.gnutls.org/pub/gnutls/ \
|
|
ftp://ftp.gnupg.org/pub/gcrypt/alpha/gnutls/ \
|
|
http://www.mirrors.wiretapped.net/security/network-security/gnutls/ \
|
|
ftp://ftp.mirrors.wiretapped.net/security/network-security/gnutls/ \
|
|
|
|
MAINTAINER= sergei@kolobov.com
|
|
|
|
LIB_DEPENDS= gcrypt:${PORTSDIR}/security/libgcrypt \
|
|
tasn1:${PORTSDIR}/security/libtasn1
|
|
|
|
USE_LIBTOOL= yes
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_TARGET=
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt"
|
|
|
|
DOCS= AUTHORS NEWS README THANKS
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/doc/tex/*.ps ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|