Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Oct 2013 16:50:01 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/177364: commit references a PR
Message-ID:  <201310241650.r9OGo1J8018956@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/177364; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/177364: commit references a PR
Date: Thu, 24 Oct 2013 16:45:00 +0000 (UTC)

 Author: makc
 Date: Thu Oct 24 16:44:52 2013
 New Revision: 331500
 URL: http://svnweb.freebsd.org/changeset/ports/331500
 
 Log:
   - Fix build with UMFPACK [1]
   - Update patch to really fix configure after hdf5-18 update [2]
   
   PR:		ports/177364 [1]
   Submitted by:	truckman [1]
   Submitted by:	Mamoru Iwaki <1wkmmr at gmail.com> via ports maillist [2]
 
 Modified:
   head/math/scilab/Makefile
   head/math/scilab/files/patch-configure
 
 Modified: head/math/scilab/Makefile
 ==============================================================================
 --- head/math/scilab/Makefile	Thu Oct 24 16:41:28 2013	(r331499)
 +++ head/math/scilab/Makefile	Thu Oct 24 16:44:52 2013	(r331500)
 @@ -201,7 +201,7 @@ post-extract:
  post-patch:
  	@# Configure fixes
  	@${REINPLACE_CMD} -e 's|-ldl | |' ${WRKSRC}/configure
 -	@${REINPLACE_CMD} -e 's|-lumfpack|-lumfpack -lamd -lcholmod -lcolamd $$LAPACK_LIBS $$BLAS_LIBS|g' ${WRKSRC}/configure
 +	@${REINPLACE_CMD} -e 's|-lumfpack|-lumfpack -lsuitesparseconfig -lamd -lcholmod -lcolamd $$LAPACK_LIBS $$BLAS_LIBS|g' ${WRKSRC}/configure
  	@${REINPLACE_CMD} -e 's|TCLTK_LIBS=" -ldl"|TCLTK_LIBS=" "|' ${WRKSRC}/configure
  	@${REINPLACE_CMD} -e 's|"x=" ==|"x" =|g' ${WRKSRC}/configure
  	@${REINPLACE_CMD} -e 's|"x" ==|"x" =|g' ${WRKSRC}/configure
 
 Modified: head/math/scilab/files/patch-configure
 ==============================================================================
 --- head/math/scilab/files/patch-configure	Thu Oct 24 16:41:28 2013	(r331499)
 +++ head/math/scilab/files/patch-configure	Thu Oct 24 16:44:52 2013	(r331500)
 @@ -1,5 +1,23 @@
  --- ./configure.orig	2011-07-20 08:15:42.000000000 +0000
  +++ ./configure	2013-10-23 11:59:48.722499060 +0000
 +@@ -12226,14 +12226,15 @@
 + 
 + public class conftest {
 +     public static void main(String[] argv) {
 +-        String minVersion="1.8.4";
 ++        int minVersion=10804;
 +                             int[] vers = new int[3];
 +                 try { H5.H5get_libversion(vers); }
 +                 catch (Throwable ex) {System.exit(-1);}
 +                 String ver = vers[0] + "."+ vers[1] +"."+vers[2];
 ++                int Version = 10000*vers[0] + 100*vers[1] + vers[2];
 + 
 +                             System.out.println(ver);
 +-                                  if (minVersion.compareTo(ver) > 0) {
 ++                                  if (minVersion > Version) {
 +                                    System.exit(-1);
 +                                 }
 + 
  @@ -12281,14 +12281,15 @@
   
   public class conftest {
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310241650.r9OGo1J8018956>