Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Oct 2013 21:00:29 +0000 (UTC)
From:      Ryan Steinmetz <zi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330361 - in head/net: freeradius2 freeradius3
Message-ID:  <201310142100.r9EL0TSp054590@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zi
Date: Mon Oct 14 21:00:29 2013
New Revision: 330361
URL: http://svnweb.freebsd.org/changeset/ports/330361

Log:
  - Add OPTION to build against security/openssl
  - Do not bump PORTREVISION
  
  PR:		ports/182836
  Submitted by:	Mark Felder <feld@FreeBSD.org>

Modified:
  head/net/freeradius2/Makefile
  head/net/freeradius3/Makefile

Modified: head/net/freeradius2/Makefile
==============================================================================
--- head/net/freeradius2/Makefile	Mon Oct 14 20:56:34 2013	(r330360)
+++ head/net/freeradius2/Makefile	Mon Oct 14 21:00:29 2013	(r330361)
@@ -38,7 +38,7 @@ PLIST_SUB=	PORTVERSION=${DISTVERSION} LI
 
 OPTIONS_DEFINE=	USER KERBEROS HEIMDAL HEIMDAL_PORT LDAP MYSQL \
 		PGSQL UNIXODBC FIREBIRD PERL PYTHON OCI8 RUBY DHCP \
-		EXPERIMENTAL UDPFROMTO DEVELOPER EDIR
+		EXPERIMENTAL UDPFROMTO DEVELOPER EDIR SSL_PORT
 OPTIONS_DEFAULT=USER PERL PYTHON
 
 DHCP_DESC=		With DHCP support (EXPERIMENTAL)
@@ -52,6 +52,7 @@ EXPERIMENTAL_DESC=	Build experimental mo
 UDPFROMTO_DESC=		Compile in UDPFROMTO support
 DEVELOPER_DESC=		Enable developer options
 EDIR_DESC=		Enable eDirectory support (implies LDAP)
+SSL_PORT_DESC=		Use OpenSSL from the ports collection
 
 NO_STAGE=	yes
 .include <bsd.port.options.mk>
@@ -256,6 +257,10 @@ CFLAGS!=	${ECHO} ${CFLAGS} | ${SED} -Ee 
 CONFIGURE_ARGS+=--with-udpfromto
 .endif
 
+.if ${PORT_OPTIONS:MSSL_PORT}
+WITH_OPENSSL_PORT=yes
+.endif
+
 .include <bsd.port.pre.mk>
 
 .if ${ARCH} == "sparc64" && ${OSVERSION} < 700000

Modified: head/net/freeradius3/Makefile
==============================================================================
--- head/net/freeradius3/Makefile	Mon Oct 14 20:56:34 2013	(r330360)
+++ head/net/freeradius3/Makefile	Mon Oct 14 21:00:29 2013	(r330361)
@@ -42,7 +42,7 @@ PLIST_SUB=	PORTVERSION=${DISTVERSION} LI
 OPTIONS_DEFINE=	USER KERBEROS HEIMDAL HEIMDAL_PORT LDAP MYSQL \
 		PGSQL UNIXODBC FIREBIRD REDIS PYTHON RUBY DHCP \
 		EXPERIMENTAL UDPFROMTO DEVELOPER EDIR PERL REST \
-		FREETDS IDN
+		FREETDS IDN SSL_PORT
 OPTIONS_DEFAULT=USER PERL
 
 DHCP_DESC=		With DHCP support (EXPERIMENTAL)
@@ -56,6 +56,7 @@ UDPFROMTO_DESC=		Compile in UDPFROMTO su
 DEVELOPER_DESC=		Enable developer options
 EDIR_DESC=		Enable eDirectory support (implies LDAP)
 REST_DESC=		Enable RESTful API support
+SSL_PORT_DESC=		Use OpenSSL from the ports collection
 
 NO_STAGE=	yes
 
@@ -312,6 +313,10 @@ CONFIGURE_ARGS+=--quiet
 CONFIGURE_ARGS+=--with-udpfromto
 .endif
 
+.if ${PORT_OPTIONS:MSSL_PORT}
+WITH_OPENSSL_PORT=yes
+.endif
+
 .include <bsd.port.pre.mk>
 
 # if we're installing, place sample configs into ${EXAMPLESDIR}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310142100.r9EL0TSp054590>