From 57a37508d64df473440f50a1a100f8e2fde75e83 Mon Sep 17 00:00:00 2001 From: Max Brazhnikov Date: Thu, 4 Sep 2014 18:20:53 +0000 Subject: math/scilab: - Update to 5.5.0 - Populate USES with desktop-file-utils, iconv, libtool, pathfix, and shared-mime-info - Add dependency on xdg-utils - Remove needless USE_LDCONFIG - Clean up CONFIGURE_ENV from stale stuff - Update options: . remove DOCS, FFTW, MATIO, UMFPACK (always build with them for simplicity) . remove NLS (doesn't build without it) . merge HELP with GUI . PVM is not supported anymore . Enable OCAML and TK by default - Use options heplers - Clean up post-patch section from stale fixes - Convert to static pkg-plist --- math/scilab/files/patch-configure | 56 --------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 math/scilab/files/patch-configure (limited to 'math/scilab/files/patch-configure') diff --git a/math/scilab/files/patch-configure b/math/scilab/files/patch-configure deleted file mode 100644 index d057db61a5e7..000000000000 --- a/math/scilab/files/patch-configure +++ /dev/null @@ -1,56 +0,0 @@ ---- ./configure.orig 2011-07-20 08:15:42.000000000 +0000 -+++ ./configure 2013-10-23 11:59:48.722499060 +0000 -@@ -10719,7 +10719,7 @@ - ac_java_jvm_jni_lib_flags="$ac_java_jvm_jni_lib_flags -L$D -ljvm" - D=$ac_java_jvm_dir/jre/lib/$machine/native_threads - ac_java_jvm_jni_lib_runtime_path="${ac_java_jvm_jni_lib_runtime_path}:$D" -- ac_java_jvm_jni_lib_flags="$ac_java_jvm_jni_lib_flags -L$D -lhpi" -+ ac_java_jvm_jni_lib_flags="$ac_java_jvm_jni_lib_flags -L$D -ljvm" - fi - fi - -@@ -10850,7 +10850,7 @@ - ac_java_jvm_jni_lib_flags="$ac_java_jvm_jni_lib_flags -L$D -ljvm" - D=$ac_java_jvm_dir/jre/lib/mipsel/native_threads - ac_java_jvm_jni_lib_runtime_path="${ac_java_jvm_jni_lib_runtime_path}:$D" -- ac_java_jvm_jni_lib_flags="$ac_java_jvm_jni_lib_flags -L$D -lhpi" -+ ac_java_jvm_jni_lib_flags="$ac_java_jvm_jni_lib_flags -L$D -ljvm" - fi - fi - -@@ -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 { - 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); - } - -- cgit v1.2.3