From owner-svn-ports-all@freebsd.org Sat Apr 11 05:01:36 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 F20982AE9A6; Sat, 11 Apr 2020 05:01:36 +0000 (UTC) (envelope-from tobik@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 48zjQm65mdz480Q; Sat, 11 Apr 2020 05:01:36 +0000 (UTC) (envelope-from tobik@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 CC867AA23; Sat, 11 Apr 2020 05:01:36 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03B51ahH070170; Sat, 11 Apr 2020 05:01:36 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03B51aST070169; Sat, 11 Apr 2020 05:01:36 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <202004110501.03B51aST070169@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 11 Apr 2020 05:01:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r531395 - branches/2020Q2/deskutils/ausweisapp2 X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: branches/2020Q2/deskutils/ausweisapp2 X-SVN-Commit-Revision: 531395 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: Sat, 11 Apr 2020 05:01:37 -0000 Author: tobik Date: Sat Apr 11 05:01:36 2020 New Revision: 531395 URL: https://svnweb.freebsd.org/changeset/ports/531395 Log: MFH: r531394 deskutils/ausweisapp2: Fix build on FreeBSD 11.3 CMake Error at /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:146 (message): Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR: Found unsuitable version "1.0.2s", but required is at least "1.1" (found /usr/lib/libcrypto.so) Call Stack (most recent call first): /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:391 (_FPHSA_FAILURE_MESSAGE) /usr/local/share/cmake/Modules/FindOpenSSL.cmake:447 (find_package_handle_standard_args) cmake/Libraries.cmake:71 (FIND_PACKAGE) CMakeLists.txt:145 (INCLUDE) While here remove unnecessary qt5-buildtools and qt5-linguisttools run dependencies. PR: 245088 Approved by: freebsd@sysctl.cz (maintainer) Approved by: ports-secteam blanket Modified: branches/2020Q2/deskutils/ausweisapp2/Makefile Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/deskutils/ausweisapp2/Makefile ============================================================================== --- branches/2020Q2/deskutils/ausweisapp2/Makefile Sat Apr 11 05:00:37 2020 (r531394) +++ branches/2020Q2/deskutils/ausweisapp2/Makefile Sat Apr 11 05:01:36 2020 (r531395) @@ -2,7 +2,7 @@ PORTNAME= ausweisapp2 DISTVERSION= 1.20.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils security MAINTAINER= freebsd@sysctl.cz @@ -21,11 +21,17 @@ USES= cmake compiler:c++17-lang pkgconfig qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= Governikus GH_PROJECT= AusweisApp2 -USE_QT= buildtools concurrent core declarative gui linguisttools \ - network quickcontrols2 svg websockets widgets +USE_QT= concurrent core declarative gui network quickcontrols2 svg \ + websockets widgets buildtools_build linguisttools_build # The VENDOR variable controls the name of the directory in ${PREFIX}/share. CMAKE_ARGS= -DVENDOR=${PORTNAME} MAKE_ENV= DESTDIR=${STAGEDIR} + +.include + +.if ${SSL_DEFAULT} == base && ${OPSYS} == FreeBSD && ${OSVERSION} < 1200085 +CMAKE_ON+= FORCE_LEGACY_OPENSSL +.endif .include