From owner-svn-ports-all@FreeBSD.ORG Sun Dec 16 15:11:35 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B282B891; Sun, 16 Dec 2012 15:11:35 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9547C8FC12; Sun, 16 Dec 2012 15:11:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBGFBZK0099063; Sun, 16 Dec 2012 15:11:35 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBGFBZGf099062; Sun, 16 Dec 2012 15:11:35 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201212161511.qBGFBZGf099062@svn.freebsd.org> From: Pawel Pekala Date: Sun, 16 Dec 2012 15:11:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309010 - head/math/openblas X-SVN-Group: ports-head 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.14 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: Sun, 16 Dec 2012 15:11:35 -0000 Author: pawel Date: Sun Dec 16 15:11:34 2012 New Revision: 309010 URL: http://svnweb.freebsd.org/changeset/ports/309010 Log: - Option descriptions should not be quoted - Use negation instead of empty() Reported by: jhale Modified: head/math/openblas/Makefile Modified: head/math/openblas/Makefile ============================================================================== --- head/math/openblas/Makefile Sun Dec 16 14:53:00 2012 (r309009) +++ head/math/openblas/Makefile Sun Dec 16 15:11:34 2012 (r309010) @@ -43,10 +43,10 @@ WRKSRC= ${WRKDIR}/${GH_USER}-${GH_PORTN OPTIONS_DEFINE= DYNAMIC_ARCH INTERFACE64 OPENMP AVX -DYNAMIC_ARCH_DESC= "Support multiple CPU types on i386 and amd64" -INTERFACE64_DESC= "Use 8 byte integers on 64-bit architectures" -OPENMP_DESC= "Use OpenMP for threading" -AVX_DESC= "Support Advanced Vector Extensions (AVX)" +DYNAMIC_ARCH_DESC= Support multiple CPU types on i386 and amd64 +INTERFACE64_DESC= Use 8 byte integers on 64-bit architectures +OPENMP_DESC= Use OpenMP for threading +AVX_DESC= Support Advanced Vector Extensions (AVX) .if defined(PACKAGE_BUILDING) OPTIONS_DEFAULT= DYNAMIC_ARCH @@ -87,7 +87,7 @@ BROKEN = QUAD_PRECISION is broken; pleas BUILDFLAGS+= QUAD_PRECISION=1 .endif -.if empty ( ${PORT_OPTIONS:MAVX} ) +.if ! ${PORT_OPTIONS:MAVX} BUILDFLAGS+= NO_AVX=1 .endif