From owner-svn-ports-all@FreeBSD.ORG Tue May 12 05:30:42 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60B1E6E0; Tue, 12 May 2015 05:30:42 +0000 (UTC) Received: from mail-pa0-x22e.google.com (mail-pa0-x22e.google.com [IPv6:2607:f8b0:400e:c03::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2E562170E; Tue, 12 May 2015 05:30:42 +0000 (UTC) Received: by pabsx10 with SMTP id sx10so132834035pab.3; Mon, 11 May 2015 22:30:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:message-id:to:cc:subject:from:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=rSr+WQHT5snVwzLMmSkR+I4N6qK9FYLFl+QMM5fu+E0=; b=aNyfTKRjlmaPMtXxUbvqyckzloMACC+1J0gM5dDPRTARt7dX5pOVIuIRWA30paReUK fwhUiJCc0W9n1ghlrcTRkvROifYVxwfXMSIN3cMevCc3LofZrKutxqBAfcBxIPVG6/p3 RCCaqi9zSPHqivDPlrkzEGnpGKytGfDffuCNVRswhLlSl9vYRI+MAxWqGIap7EVIlSKe XCAiOJ+jaR8oCuGx2C5AvRWKxOPJZxAg+8OYLDjVIL9T5ANaMQ/YwUymbEcifmTEt64k r5w9x9PLO1jtJRvo2TY3oaBqw9R11yM/fsPqgvEB6GaXdjKKRsQJqexYH9stagjNZ2bT b3ng== X-Received: by 10.66.221.193 with SMTP id qg1mr24611906pac.134.1431408641278; Mon, 11 May 2015 22:30:41 -0700 (PDT) Received: from localhost (rikad42.riken.jp. [134.160.214.42]) by mx.google.com with ESMTPSA id cp10sm14812906pdb.44.2015.05.11.22.30.38 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 11 May 2015 22:30:40 -0700 (PDT) Date: Tue, 12 May 2015 14:30:52 +0900 (JST) Message-Id: <20150512.143052.651182261408958185.maho.nakata@gmail.com> To: truckman@FreeBSD.org Cc: ports-committers@FreeBSD.org, svn-ports-all@FreeBSD.org, svn-ports-head@FreeBSD.org Subject: Re: svn commit: r383490 - head/math/octave From: Nakata Maho In-Reply-To: <201504080524.t385OXLX045087@gw.catspoiler.org> References: <20150408.115356.727257680516653223.maho.nakata@gmail.com> <201504080524.t385OXLX045087@gw.catspoiler.org> X-Mailer: Mew version 6.6 on Emacs 24.5 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Tue_May_12_14_30_52_2015_139)--" Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Tue, 12 May 2015 05:30:42 -0000 ----Next_Part(Tue_May_12_14_30_52_2015_139)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi Makc, I have attached a cleanup patch for scilab. BLAS and LAPACK part is modernized. Best, Nakata Maho From: Don Lewis Subject: Re: svn commit: r383490 - head/math/octave Date: Tue, 7 Apr 2015 22:24:33 -0700 (PDT) > On 8 Apr, Nakata Maho wrote: >> Please use OpenBLAS instead. It is faster and builds fast. > > Hmn, the option name in lapack++ and octave is OBLAS, but it is OPENBLAS > in py-numpy and suitesparse. scilab needs to be modernized. ----Next_Part(Tue_May_12_14_30_52_2015_139)-- Content-Type: Text/Plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=scilab-patch Index: Makefile =================================================================== --- Makefile ($Bec%'ecFe$:ec%!ec%&(B 386115) +++ Makefile ($Bh?Xh!&%eeb%&ecHe&>(B) @@ -37,11 +37,16 @@ LC_ALL=en_US.UTF-8 INSTALL_TARGET= install-strip -OPTIONS_DEFINE= ATLAS GUI OCAML TK -OPTIONS_DEFAULT= GUI OCAML TK +OPTIONS_DEFINE= GUI OCAML TK +OPTIONS_RADIO= BLAS +OPTIONS_RADIO_BLAS= OPENBLAS NETLIB ATLAS +OPTIONS_DEFAULT= OPENBLAS GUI OCAML TK OPTIONS_SUB= yes -ATLAS_DESC= Use Atlas instead of Blas +OPENBLAS_USES= blaslapack:openblas +NETLIB_USES= blaslapack:netlib +ATLAS_USES= blaslapack:atlas + GUI_DESC= Graphical User Interface (Java) OCAML_DESC= Scicos - dynamical system simulator (requires GUI) @@ -107,17 +112,6 @@ .include -.if ${PORT_OPTIONS:MATLAS} -LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas -BLAS_LIBS= -lf77blas -LAPACK_LIBS= -lalapack -lcblas -.else -LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack \ - libblas.so:${PORTSDIR}/math/blas -BLAS_LIBS= -lblas -LAPACK_LIBS= -llapack -.endif - .if ${PORT_OPTIONS:MGUI} USE_JAVA= yes # bsdjava (ie java/jdk16) doesn't have some "extra" classes that aren't in ----Next_Part(Tue_May_12_14_30_52_2015_139)----