diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2013-03-05 17:07:43 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2013-03-05 17:07:43 +0000 |
commit | fb3520254ab73be0aad04c3a63b781750cf26b5b (patch) | |
tree | 268d74f9d8738f78b0c895672044611aa6343387 /security/botan/Makefile | |
parent | 4706739618b79681811e5b336a54032908638160 (diff) | |
download | ports-fb3520254ab73be0aad04c3a63b781750cf26b5b.tar.gz ports-fb3520254ab73be0aad04c3a63b781750cf26b5b.zip |
Notes
Diffstat (limited to 'security/botan/Makefile')
-rw-r--r-- | security/botan/Makefile | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/security/botan/Makefile b/security/botan/Makefile index f767b2520c94..8c2ebe1d5f1c 100644 --- a/security/botan/Makefile +++ b/security/botan/Makefile @@ -1,10 +1,5 @@ -# ex:ts=8 -# New ports collection makefile for: botan -# Date created: Mar 3, 2001 -# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> -# +# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org> # $FreeBSD$ -# PORTNAME= botan PORTVERSION= 1.8.13 @@ -19,9 +14,9 @@ COMMENT= A portable, easy to use, and efficient C++ crypto library LICENSE= BSD LICENSE_FILE= ${WRKSRC}/doc/license.txt -OPTIONS= SSL "Enable OpenSSL engine" on \ - GMP "Enable GMP engine" on \ - ECC "Enable ECC support" on +OPTIONS_DEFINE= SSL GMP ECC +OPTIONS_DEFAULT= SSL GMP ECC +ECC_DESC= ECC support USE_BZIP2= yes USE_PYTHON_BUILD= yes @@ -38,18 +33,18 @@ PORTDOCS= * .include <bsd.port.options.mk> -.if !defined(WITHOUT_SSL) +.if ${PORT_OPTIONS:MSSL} USE_OPENSSL= yes CONFIGURE_ARGS+=--with-openssl .endif -.if !defined(WITHOUT_GMP) +.if ${PORT_OPTIONS:MGMP} LIB_DEPENDS+= gmp.10:${PORTSDIR}/math/gmp CONFIGURE_ARGS+=--with-gnump MAKE_ARGS+= LDFLAGS="-L${LOCALBASE}/lib" .endif -.if !defined(WITHOUT_ECC) +.if ${PORT_OPTIONS:MECC} BUILD_DEPENDS+= ${LOCALBASE}/include/boost/tr1/memory.hpp:${PORTSDIR}/devel/boost-libs CONFIGURE_ARGS+=--with-tr1-implementation=boost CXXFLAGS+= -I${LOCALBASE}/include @@ -60,7 +55,7 @@ CONFIGURE_ARGS+=--with-tr1-implementation=none post-patch: ${REINPLACE_CMD} -e "s|#!/usr/bin/env python|#!${PYTHON_CMD}|" \ ${WRKSRC}/configure.py -.if defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${REINPLACE_CMD} -e '/$$(MKDIR_INSTALL) $$(DOCDIR)/d' \ -e '/$$(INSTALL_CMD_DATA) $$$$i $$(DOCDIR); /d' \ ${WRKSRC}/src/build-data/makefile/unix_shr.in |