diff options
Diffstat (limited to 'security/gnutls/Makefile')
-rw-r--r-- | security/gnutls/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile new file mode 100644 index 0000000..b1e6a1a --- /dev/null +++ b/security/gnutls/Makefile @@ -0,0 +1,38 @@ +# 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> |