From owner-svn-ports-all@freebsd.org Tue Nov 17 02:25:50 2020 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 5149D47BBDA; Tue, 17 Nov 2020 02:25:50 +0000 (UTC) (envelope-from kbowling@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4CZqYV1rzlz3F1M; Tue, 17 Nov 2020 02:25:50 +0000 (UTC) (envelope-from kbowling@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 32B951865E; Tue, 17 Nov 2020 02:25:50 +0000 (UTC) (envelope-from kbowling@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AH2PoH9061049; Tue, 17 Nov 2020 02:25:50 GMT (envelope-from kbowling@FreeBSD.org) Received: (from kbowling@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AH2Pop3061048; Tue, 17 Nov 2020 02:25:50 GMT (envelope-from kbowling@FreeBSD.org) Message-Id: <202011170225.0AH2Pop3061048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kbowling set sender to kbowling@FreeBSD.org using -f From: Kevin Bowling Date: Tue, 17 Nov 2020 02:25:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555534 - head/databases/timescaledb X-SVN-Group: ports-head X-SVN-Commit-Author: kbowling X-SVN-Commit-Paths: head/databases/timescaledb X-SVN-Commit-Revision: 555534 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.34 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: Tue, 17 Nov 2020 02:25:50 -0000 Author: kbowling Date: Tue Nov 17 02:25:49 2020 New Revision: 555534 URL: https://svnweb.freebsd.org/changeset/ports/555534 Log: databases/timescaledb: add option to build without OpenSSL PR: 251049 Reported by: simplerezo at gmail.com Sponsored by: BBOX.io Modified: head/databases/timescaledb/Makefile Modified: head/databases/timescaledb/Makefile ============================================================================== --- head/databases/timescaledb/Makefile Tue Nov 17 02:22:37 2020 (r555533) +++ head/databases/timescaledb/Makefile Tue Nov 17 02:25:49 2020 (r555534) @@ -3,6 +3,7 @@ PORTNAME= timescaledb PORTVERSION= 1.7.4 +PORTREVISION= 1 CATEGORIES= databases MAINTAINER= kbowling@FreeBSD.org @@ -15,7 +16,7 @@ LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_TSL= ${WRKSRC}/tsl/LICENSE-TIMESCALE LICENSE_PERMS_TSL= dist-mirror pkg-mirror auto-accept -USES= compiler:c11 cmake pgsql:9.6,10,11,12 ssl +USES= compiler:c11 cmake pgsql:9.6,10,11,12 USE_GITHUB= YES GH_ACCOUNT= timescale @@ -24,11 +25,15 @@ PLIST_SUB= PORTVERSION=${PORTVERSION} SUB_FILES= pkg-message SUB_LIST= PORTVERSION=${PORTVERSION} -OPTIONS_DEFINE= TSL -OPTIONS_DEFAULT= TSL +OPTIONS_DEFINE= SSL TSL +OPTIONS_DEFAULT= SSL TSL OPTIONS_SUB= yes +SSL_DESC= Build with OpenSSL support TSL_DESC= Enables TSL licensed code in additon to Apache license code + +SSL_CMAKE_BOOL= USE_OPENSSL +SSL_USES= ssl TSL_CMAKE_BOOL_OFF= APACHE_ONLY CMAKE_OFF= REGRESS_CHECKS