From owner-svn-ports-head@freebsd.org Wed Jan 4 02:09:19 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A395BC9CBF3; Wed, 4 Jan 2017 02:09:19 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 646E316BA; Wed, 4 Jan 2017 02:09:19 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0429Iwa022381; Wed, 4 Jan 2017 02:09:18 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0429IRe022377; Wed, 4 Jan 2017 02:09:18 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201701040209.v0429IRe022377@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Wed, 4 Jan 2017 02:09:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430529 - in head/security/heimdal: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jan 2017 02:09:19 -0000 Author: hrs Date: Wed Jan 4 02:09:18 2017 New Revision: 430529 URL: https://svnweb.freebsd.org/changeset/ports/430529 Log: - Fix krb5-config --libs to provide a list of libraries including dependency. This broke ports which depend on this utility. - Add LMDB option to support database/lmdb. Added: head/security/heimdal/files/patch-tools-krb5-config.in (contents, props changed) Modified: head/security/heimdal/Makefile head/security/heimdal/files/patch-configure Modified: head/security/heimdal/Makefile ============================================================================== --- head/security/heimdal/Makefile Wed Jan 4 02:00:23 2017 (r430528) +++ head/security/heimdal/Makefile Wed Jan 4 02:09:18 2017 (r430529) @@ -3,7 +3,7 @@ PORTNAME= heimdal PORTVERSION= 7.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security ipv6 MASTER_SITES= http://www.h5l.org/dist/src/ \ http://ftp.pdc.kth.se/pub/heimdal/src/ \ @@ -55,7 +55,7 @@ INFO= heimdal hx509 MAKE_JOBS_UNSAFE= yes -OPTIONS_DEFINE= IPV6 BDB SQLITE LDAP PKINIT DIGEST KX509 CRACKLIB +OPTIONS_DEFINE= IPV6 BDB LMDB SQLITE LDAP PKINIT DIGEST KX509 CRACKLIB OPTIONS_DEFAULT= BDB PKINIT DIGEST KX509 OPTIONS_SUB= yes @@ -71,6 +71,10 @@ BDB_CONFIGURE_ENV_OFF= ac_cv_header_db_h ac_cv_func_db_create=no BDB_CONFIGURE_OFF= --enable-ndbm-db +LMDB_DESC= Enable LMDB KDC backend support +LMDB_CONFIGURE_ENABLE= mdb_db +LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb + SQLITE_DESC= Enable SQLite KDC backend support SQLITE_USES= sqlite SQLITE_CONFIGURE_ON= --with-sqlite3-include="${LOCALBASE}/include" \ Modified: head/security/heimdal/files/patch-configure ============================================================================== --- head/security/heimdal/files/patch-configure Wed Jan 4 02:00:23 2017 (r430528) +++ head/security/heimdal/files/patch-configure Wed Jan 4 02:09:18 2017 (r430529) @@ -18,15 +18,6 @@ ;; *-*-openbsd*) native_pthread_support=yes -@@ -16776,7 +16776,7 @@ fi - - fi - --for db_type in unknown $db_type_preference; do -+for db_type in $db_type_preference unknown; do - if eval test \"x\$have_${db_type}\" = xyes; then - break - fi @@ -16935,6 +16935,9 @@ esac $as_echo "#define HAVE_NDBM 1" >>confdefs.h Added: head/security/heimdal/files/patch-tools-krb5-config.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/heimdal/files/patch-tools-krb5-config.in Wed Jan 4 02:09:18 2017 (r430529) @@ -0,0 +1,10 @@ +--- tools/krb5-config.in.orig 2017-01-04 10:37:40.213263000 +0900 ++++ tools/krb5-config.in 2017-01-04 10:37:56.622658000 +0900 +@@ -82,6 +82,7 @@ + ;; + --libs) + do_libs=yes ++ do_lib_deps=yes + ;; + --deps) + do_lib_deps=yes