From owner-svn-ports-all@FreeBSD.ORG Thu May 29 18:52:13 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 822D852F; Thu, 29 May 2014 18:52:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FBA32BE0; Thu, 29 May 2014 18:52:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4TIqDnx056652; Thu, 29 May 2014 18:52:13 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4TIqDON056651; Thu, 29 May 2014 18:52:13 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201405291852.s4TIqDON056651@svn.freebsd.org> From: Xin LI Date: Thu, 29 May 2014 18:52:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355724 - head/net/openldap24-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2014 18:52:13 -0000 Author: delphij Date: Thu May 29 18:52:12 2014 New Revision: 355724 URL: http://svnweb.freebsd.org/changeset/ports/355724 QAT: https://qat.redports.org/buildarchive/r355724/ Log: - Add support to GSSAPI (implies SASL). PR: ports/189470 Submitted by: zi Modified: head/net/openldap24-server/Makefile Modified: head/net/openldap24-server/Makefile ============================================================================== --- head/net/openldap24-server/Makefile Thu May 29 18:41:42 2014 (r355723) +++ head/net/openldap24-server/Makefile Thu May 29 18:52:12 2014 (r355724) @@ -64,9 +64,10 @@ PORTREVISION_SERVER= 1 OPENLDAP_SHLIB_MAJOR= 8 OPENLDAP_MAJOR= ${DISTVERSION:R} -OPTIONS_DEFINE= FETCH +OPTIONS_DEFINE= FETCH GSSAPI -FETCH_DESC= Enable fetch(3) support +FETCH_DESC= Enable fetch(3) support +GSSAPI_DESC= With GSSAPI support (implies SASL support) .if !defined(CLIENT_ONLY) OPTIONS_DEFINE+= DYNACL ACI BDB MDB DNSSRV PASSWD PERL RELAY SHELL @@ -144,10 +145,17 @@ BROKEN= You have 'USE_OPENLDAP' variab USE_OPENLDAP= yes WANT_OPENLDAP_VER= 24 +.if ${PORT_OPTIONS:MGSSAPI} && empty(PORT_OPTIONS:MSASL) +PORT_OPTIONS+= SASL +.endif + .if ${PORT_OPTIONS:MSASL} WANT_OPENLDAP_SASL= yes CONFLICTS= ${PKGNAMEPREFIX}${PORTNAME}-client-2.* PKGNAMESUFFIX= -sasl-server +.if ${PORT_OPTIONS:MGSSAPI} +RUN_DEPENDS+= cyrus-sasl-gssapi>0:${PORTSDIR}/security/cyrus-sasl2-gssapi +.endif .else CONFLICTS= ${PKGNAMEPREFIX}${PORTNAME}-sasl-client-2.* .endif