From owner-svn-ports-head@freebsd.org Mon Feb 17 02:51:52 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 96D8D24A694; Mon, 17 Feb 2020 02:51:52 +0000 (UTC) (envelope-from danfe@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 48LT603J40z41cS; Mon, 17 Feb 2020 02:51:52 +0000 (UTC) (envelope-from danfe@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 6C80E2FFFB; Mon, 17 Feb 2020 02:51:52 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01H2pqLu029956; Mon, 17 Feb 2020 02:51:52 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01H2pqsf029955; Mon, 17 Feb 2020 02:51:52 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202002170251.01H2pqsf029955@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 17 Feb 2020 02:51:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526336 - head/graphics/seexpr X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/graphics/seexpr X-SVN-Commit-Revision: 526336 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.29 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: Mon, 17 Feb 2020 02:51:52 -0000 Author: danfe Date: Mon Feb 17 02:51:52 2020 New Revision: 526336 URL: https://svnweb.freebsd.org/changeset/ports/526336 Log: Allow to build with LLVM backend (off by default for now), the problem had been addressed in r526266. Modified: head/graphics/seexpr/Makefile Modified: head/graphics/seexpr/Makefile ============================================================================== --- head/graphics/seexpr/Makefile Mon Feb 17 02:32:04 2020 (r526335) +++ head/graphics/seexpr/Makefile Mon Feb 17 02:51:52 2020 (r526336) @@ -25,11 +25,12 @@ USE_QT= buildtools_build qmake_build core gui opengl MAKE_JOBS_UNSAFE= yes # https://github.com/wdas/seexpr/issues/40 -# XXX: fix the build errors and convert to OPTIONs -CMAKE_ARGS= -DENABLE_LLVM_BACKEND:BOOL=FALSE - -OPTIONS_DEFINE= PYTHON +OPTIONS_DEFINE= LLVM PYTHON OPTIONS_SUB= yes + +LLVM_DESC= Build with LLVM ${LLVM_DEFAULT:C/.$$//} backend +LLVM_LIB_DEPENDS= libLLVM.so:devel/llvm${LLVM_DEFAULT} +LLVM_CMAKE_OFF= -DENABLE_LLVM_BACKEND:BOOL=FALSE PYTHON_LIB_DEPENDS= ${PY_BOOST} PYTHON_USES= pyqt:5 python