From owner-svn-ports-all@freebsd.org Mon Sep 23 00:11:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 618C712FE58; Mon, 23 Sep 2019 00:11:54 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46c4WG1R1Rz4ND6; Mon, 23 Sep 2019 00:11:54 +0000 (UTC) (envelope-from cy@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 148EA69E7; Mon, 23 Sep 2019 00:11:54 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8N0Br9Y017871; Mon, 23 Sep 2019 00:11:53 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8N0BqDY017863; Mon, 23 Sep 2019 00:11:52 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201909230011.x8N0BqDY017863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Mon, 23 Sep 2019 00:11:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512606 - in head/sysutils: cfengine-devel cfengine310 cfengine311 cfengine312 cfengine313 cfengine314 X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/sysutils: cfengine-devel cfengine310 cfengine311 cfengine312 cfengine313 cfengine314 X-SVN-Commit-Revision: 512606 X-SVN-Commit-Repository: ports 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.29 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: Mon, 23 Sep 2019 00:11:54 -0000 Author: cy Date: Mon Sep 23 00:11:52 2019 New Revision: 512606 URL: https://svnweb.freebsd.org/changeset/ports/512606 Log: cfengine ./configure will detect pre-existing mysql and postgresql installs and use them even when options are deselected. This causes unwanted dependencies and unintuitive errors. Modified: head/sysutils/cfengine-devel/Makefile (contents, props changed) head/sysutils/cfengine310/Makefile (contents, props changed) head/sysutils/cfengine311/Makefile (contents, props changed) head/sysutils/cfengine312/Makefile (contents, props changed) head/sysutils/cfengine313/Makefile (contents, props changed) head/sysutils/cfengine314/Makefile (contents, props changed) Modified: head/sysutils/cfengine-devel/Makefile ============================================================================== --- head/sysutils/cfengine-devel/Makefile Sun Sep 22 20:58:33 2019 (r512605) +++ head/sysutils/cfengine-devel/Makefile Mon Sep 23 00:11:52 2019 (r512606) @@ -3,6 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.${CFENGINE_COMMIT_DATE} +PORTREVISION= 1 CATEGORIES= sysutils PKGNAMESUFFIX= -devel CFENGINE_HASH= 89f8f60 @@ -63,10 +64,12 @@ OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= --with-postgresql=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgresql MYSQL_USES= mysql MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL. MYSQL_CONFIGURE_WITH= --with-mysql=${LOCALBASE} +MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql Modified: head/sysutils/cfengine310/Makefile ============================================================================== --- head/sysutils/cfengine310/Makefile Sun Sep 22 20:58:33 2019 (r512605) +++ head/sysutils/cfengine310/Makefile Mon Sep 23 00:11:52 2019 (r512606) @@ -3,6 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.10.5 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine-package-repos/tarballs/ @@ -60,10 +61,12 @@ OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= --with-postgresql=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgresql MYSQL_USES= mysql MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL. MYSQL_CONFIGURE_WITH= --with-mysql=${LOCALBASE} +MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql Modified: head/sysutils/cfengine311/Makefile ============================================================================== --- head/sysutils/cfengine311/Makefile Sun Sep 22 20:58:33 2019 (r512605) +++ head/sysutils/cfengine311/Makefile Mon Sep 23 00:11:52 2019 (r512606) @@ -3,7 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.11.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine-package-repos/tarballs/ @@ -61,10 +61,12 @@ OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= --with-postgresql=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgresql MYSQL_USES= mysql MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL. MYSQL_CONFIGURE_WITH= --with-mysql=${LOCALBASE} +MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql Modified: head/sysutils/cfengine312/Makefile ============================================================================== --- head/sysutils/cfengine312/Makefile Sun Sep 22 20:58:33 2019 (r512605) +++ head/sysutils/cfengine312/Makefile Mon Sep 23 00:11:52 2019 (r512606) @@ -3,6 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.12.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine-package-repos/tarballs/ @@ -57,10 +58,12 @@ OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= --with-postgresql=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgresql MYSQL_USES= mysql MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL. MYSQL_CONFIGURE_WITH= --with-mysql=${LOCALBASE} +MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql Modified: head/sysutils/cfengine313/Makefile ============================================================================== --- head/sysutils/cfengine313/Makefile Sun Sep 22 20:58:33 2019 (r512605) +++ head/sysutils/cfengine313/Makefile Mon Sep 23 00:11:52 2019 (r512606) @@ -3,6 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.13.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine-package-repos/tarballs/ @@ -57,10 +58,12 @@ OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= --with-postgresql=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgresql MYSQL_USES= mysql MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL. MYSQL_CONFIGURE_WITH= --with-mysql=${LOCALBASE} +MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql Modified: head/sysutils/cfengine314/Makefile ============================================================================== --- head/sysutils/cfengine314/Makefile Sun Sep 22 20:58:33 2019 (r512605) +++ head/sysutils/cfengine314/Makefile Mon Sep 23 00:11:52 2019 (r512606) @@ -3,6 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.14.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine-package-repos/tarballs/ @@ -57,10 +58,12 @@ OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= --with-postgresql=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgresql MYSQL_USES= mysql MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL. MYSQL_CONFIGURE_WITH= --with-mysql=${LOCALBASE} +MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql