From owner-svn-ports-head@freebsd.org Wed Jul 8 22:21:25 2020 Return-Path: Delivered-To: svn-ports-head@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 6C121357212; Wed, 8 Jul 2020 22:21:25 +0000 (UTC) (envelope-from yuri@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 4B2DKx2Gmrz48Qf; Wed, 8 Jul 2020 22:21:25 +0000 (UTC) (envelope-from yuri@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 31AF02753A; Wed, 8 Jul 2020 22:21:25 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 068MLPRj007261; Wed, 8 Jul 2020 22:21:25 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 068MLPvN007260; Wed, 8 Jul 2020 22:21:25 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202007082221.068MLPvN007260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 8 Jul 2020 22:21:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541720 - head/security/palisade X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/security/palisade X-SVN-Commit-Revision: 541720 X-SVN-Commit-Repository: ports 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.33 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, 08 Jul 2020 22:21:25 -0000 Author: yuri Date: Wed Jul 8 22:21:24 2020 New Revision: 541720 URL: https://svnweb.freebsd.org/changeset/ports/541720 Log: security/palisade: Remove dependency on NTL It is dropped since 1.10.0 Reported by: upstream Modified: head/security/palisade/Makefile Modified: head/security/palisade/Makefile ============================================================================== --- head/security/palisade/Makefile Wed Jul 8 21:42:37 2020 (r541719) +++ head/security/palisade/Makefile Wed Jul 8 22:21:24 2020 (r541720) @@ -3,6 +3,7 @@ PORTNAME= palisade DISTVERSIONPREFIX= v DISTVERSION= 1.10.1 +PORTREVISION= 1 CATEGORIES= security math MAINTAINER= yuri@FreeBSD.org @@ -15,7 +16,6 @@ BROKEN_i386= fails to build: a declaration of 'Mul128' BROKEN_powerpc64= fails to build: math/native_int/binint.h:510:11: error: Architecture not supported for MultD() BUILD_DEPENDS= autoconf:devel/autoconf # possibly a mistake in the project -LIB_DEPENDS= libntl.so:math/ntl USES= cmake:noninja compiler:c++11-lang localbase USE_GITLAB= yes @@ -31,8 +31,6 @@ USE_LDCONFIG= yes CMAKE_OFF= BUILD_UNITTESTS BUILD_EXAMPLES BUILD_BENCHMARKS CMAKE_OFF+= WITH_NTL # https://gitlab.com/palisade/palisade-development/-/issues/180 CMAKE_ARGS= -DWITH_NTL=Y - -LDFLAGS+= ${LOCALBASE}/lib/libntl.so # libntl is optional in palisade but is necessary in FreeBSD because is has an equivalent of quadmath.h that is missing in FreeBSD. -DWITH_NTL should be added by users to the compiler command lines. CXXFLAGS+= -I${WRKSRC}/third-party/google-test/googletest