diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2014-09-04 18:20:53 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2014-09-04 18:20:53 +0000 |
commit | 57a37508d64df473440f50a1a100f8e2fde75e83 (patch) | |
tree | db50ff5a576642bdf908099008ccc9591ab66ca8 /math/scilab/files/patch-configure | |
parent | Fix misleading option name: the option uses plotutils, not gnuplot (diff) |
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
Notes
Notes:
svn path=/head/; revision=367295
Diffstat (limited to 'math/scilab/files/patch-configure')
-rw-r--r-- | math/scilab/files/patch-configure | 56 |
1 files changed, 0 insertions, 56 deletions
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); - } - |