From owner-svn-ports-head@freebsd.org Wed Oct 31 19:20:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8ED9210E2FD1; Wed, 31 Oct 2018 19:20:15 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 446ED84CAE; Wed, 31 Oct 2018 19:20:15 +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 2570A10B49; Wed, 31 Oct 2018 19:20:15 +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 w9VJKFh5086669; Wed, 31 Oct 2018 19:20:15 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9VJKFMh086668; Wed, 31 Oct 2018 19:20:15 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810311920.w9VJKFMh086668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 31 Oct 2018 19:20:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483607 - head/math/py-cvxopt X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/py-cvxopt X-SVN-Commit-Revision: 483607 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: Wed, 31 Oct 2018 19:20:15 -0000 Author: yuri Date: Wed Oct 31 19:20:14 2018 New Revision: 483607 URL: https://svnweb.freebsd.org/changeset/ports/483607 Log: math/py-cvxopt: Remove WITH_ from options; Improve option descriptions Reported by: mat Modified: head/math/py-cvxopt/Makefile Modified: head/math/py-cvxopt/Makefile ============================================================================== --- head/math/py-cvxopt/Makefile Wed Oct 31 19:01:34 2018 (r483606) +++ head/math/py-cvxopt/Makefile Wed Oct 31 19:20:14 2018 (r483607) @@ -21,25 +21,24 @@ USE_PYTHON= distutils autoplist CFLAGS+= -I${LOCALBASE}/include/suitesparse -OPTIONS_DEFINE= WITH_GSL WITH_FFTW WITH_GLPK WITH_DSDP -OPTIONS_DEFAULT= WITH_GSL WITH_FFTW WITH_GLPK WITH_DSDP +OPTIONS_DEFINE= GSL FFTW GLPK DSDP +OPTIONS_DEFAULT= GSL FFTW GLPK DSDP -WITH_GSL_DESC= Build with gsl -WITH_GSL_MAKE_ENV= CVXOPT_BUILD_GSL=1 -WITH_GSL_LIB_DEPENDS= libgsl.so:math/gsl +GSL_DESC= Build with GSL, the GNU scientific library +GSL_MAKE_ENV= CVXOPT_BUILD_GSL=1 +GSL_LIB_DEPENDS= libgsl.so:math/gsl -WITH_FFTW_DESC= Build with fftw -WITH_FFTW_MAKE_ENV= CVXOPT_BUILD_FFTW=1 -WITH_FFTW_LIB_DEPENDS= libfftw3.so:math/fftw3 +FFTW_MAKE_ENV= CVXOPT_BUILD_FFTW=1 +FFTW_LIB_DEPENDS= libfftw3.so:math/fftw3 -WITH_GLPK_DESC= Build with GLPK -WITH_GLPK_MAKE_ENV= CVXOPT_BUILD_GLPK=1 -WITH_GLPK_LIB_DEPENDS= libglpk.so:math/glpk +GLPK_DESC= Build with GLPK, the linear programming solver +GLPK_MAKE_ENV= CVXOPT_BUILD_GLPK=1 +GLPK_LIB_DEPENDS= libglpk.so:math/glpk -WITH_DSDP_DESC= Build with DSDP -WITH_DSDP_MAKE_ENV= CVXOPT_BUILD_DSDP=1 -WITH_DSDP_CFLAGS= -I${LOCALBASE}/include/dsdp -WITH_DSDP_LIB_DEPENDS= libdsdp.so:math/dsdp +DSDP_DESC= Build with DSDP, the interior-point method +DSDP_MAKE_ENV= CVXOPT_BUILD_DSDP=1 +DSDP_CFLAGS= -I${LOCALBASE}/include/dsdp +DSDP_LIB_DEPENDS= libdsdp.so:math/dsdp post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cvxopt/*.so