diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-12-28 15:14:41 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-12-28 15:14:41 +0000 |
commit | 9188c4ae383ded0161dc5bbbe6f60f8fac437f71 (patch) | |
tree | 79524fefca63b61bfacb2035733957ad18adb50f /sci-mathematics/scilab/files | |
parent | Moving to sci-mathematics/scilab (diff) | |
download | gentoo-2-9188c4ae383ded0161dc5bbbe6f60f8fac437f71.tar.gz gentoo-2-9188c4ae383ded0161dc5bbbe6f60f8fac437f71.tar.bz2 gentoo-2-9188c4ae383ded0161dc5bbbe6f60f8fac437f71.zip |
Moved from app-sci/scilab to sci-mathematics/scilab.
Diffstat (limited to 'sci-mathematics/scilab/files')
-rw-r--r-- | sci-mathematics/scilab/files/digest-scilab-2.7-r3 | 2 | ||||
-rw-r--r-- | sci-mathematics/scilab/files/digest-scilab-3.0 | 1 | ||||
-rw-r--r-- | sci-mathematics/scilab/files/scilab-2.7-configure.patch | 58 |
3 files changed, 61 insertions, 0 deletions
diff --git a/sci-mathematics/scilab/files/digest-scilab-2.7-r3 b/sci-mathematics/scilab/files/digest-scilab-2.7-r3 new file mode 100644 index 000000000000..c742d1e38c77 --- /dev/null +++ b/sci-mathematics/scilab/files/digest-scilab-2.7-r3 @@ -0,0 +1,2 @@ +MD5 e8aa1ede5efa20eeced284963d08bebb scilab-2.7.src.tar.gz 9510676 +MD5 712df122ba9d3dabf17e6016f33efcc4 patch_browsehelp.tar.gz 622246 diff --git a/sci-mathematics/scilab/files/digest-scilab-3.0 b/sci-mathematics/scilab/files/digest-scilab-3.0 new file mode 100644 index 000000000000..df2aa975ecc0 --- /dev/null +++ b/sci-mathematics/scilab/files/digest-scilab-3.0 @@ -0,0 +1 @@ +MD5 d6fc5fe12519f99ccdd492c4ba96935a scilab-3.0.src.tar.gz 10988126 diff --git a/sci-mathematics/scilab/files/scilab-2.7-configure.patch b/sci-mathematics/scilab/files/scilab-2.7-configure.patch new file mode 100644 index 000000000000..8499fd669258 --- /dev/null +++ b/sci-mathematics/scilab/files/scilab-2.7-configure.patch @@ -0,0 +1,58 @@ +--- scilab-2.7/configure.in 2003-02-06 02:42:05.000000000 -0500 ++++ scilab-save/configure.in 2004-04-21 10:06:54.000000000 -0400 +@@ -376,6 +376,55 @@ case "$host" in + fi + MAKEFILE_TARGET=Makefile.linux + ;; ++# Linux x86_64 (added by Scott Robert Ladd) ++ x86_64-*-linux-gnu) ++ LIEEELIB= ++ AC_CHECK_LIB(ieee,main, ++ [LIEEELIB=-lieee]) ++ MALLOC=malloc.o ++ GCC=yes ++ CC=gcc ++ CC_OPTIONS='-O -Dlinux -fwritable-strings' ++ CC_LDFLAGS=$LIEEELIB ++ # find Fortran compiler ++ # g77 already asked and found: good ++ if test "$WITH_G77" = yes; then ++ FC=g77 ++ # option with-f2c ++ elif test "$with_f2c" = yes; then ++ AC_CHECK_PROG(F2C,f2c,yes,no) ++ if test "$F2C" = no; then ++ AC_MSG_ERROR([Unable to configure: f2c compiler not found]) ++ fi ++ # script shell f77 have bugs, get ours ++ FC='${SCIDIR}/bin/f77-linux' ++ else ++ # first find g77 ++ AC_CHECK_PROG(WITH_G77,g77,yes,no) ++ if test "$WITH_G77" = yes; then ++ FC=g77 ++ else ++ # otherwise find f2c ++ AC_CHECK_PROG(F2C,f2c,yes,no) ++ if test "$F2C" = yes; then ++ # script shell f77 have bugs, get ours ++ FC='${SCIDIR}/bin/f77-linux' ++ else ++ AC_MSG_ERROR([Unable to configure: no Fortran compiler found]) ++ fi ++ fi ++ fi ++ FC_OPTIONS=-O ++ FC_OPTIONS_O0= ++ FC_LDFLAGS="$LIEEELIB -ldl -rdynamic" ++ LD=ld ++ LD_LDFLAGS=$LIEEELIB ++ if test "$enable_debug" = yes; then ++ CC_OPTIONS='-g -Dlinux -fwritable-strings' ++ FC_OPTIONS=-g ++ fi ++ MAKEFILE_TARGET=Makefile.linux ++ ;; + # SUN OS (NO LONGER SUPPORTED) + sparc-*-sunos*) + # standard compilers |