Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/languages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9291
Added Files:
algae.info algae.patch
Removed Files:
algae-3.7.0-12.info algae-3.7.0-12.patch
Log Message:
Updated to new upstream version
--- NEW FILE: algae.info ---
Package: algae
Version: 4.3.2
Revision: 2
Maintainer: Matthias Neeracher <[EMAIL PROTECTED]>
Depends: readline-shlibs
BuildDepends: g77 (>= 3.1-20020420-1), readline
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: fe08abb5ce94d3c6ca8fc1ce481b8d9c
UpdateConfigGuess: true
Patch: %n.patch
SetLDFLAGS: -framework vecLib
ConfigureParams: --with-blas=veclib --with-lapack=veclib
GCC: 3.3
InstallScript:<<
make prefix=%i hdir=%i/include/algae install
mkdir -p %i/share/doc/%n
ln -s %p/share/%n/%v/html %i/share/doc/%n/html
<<
SplitOff: <<
Package: algae-dev
Files: include/algae/*.h
DocFiles: COPYING
<<
DocFiles: README COPYING VERSION doc/FAQ doc/algae.ps
InfoDocs: algae.info
Description: Interpreted language for numerical analysis
DescDetail: <<
Algae is an interpreted language for numerical analysis. Algae
borrows ideas from languages like MATLAB, APL, and C, but it
was developed in response to a need for a free, efficient, and
versatile high-level language with large problem capability.
<<
License: GPL
Homepage: http://www.sourceforge.net/projects/algae
--- NEW FILE: algae.patch ---
diff -ru algae-4.3.2-orig/Makefile.in algae-4.3.2/Makefile.in
--- algae-4.3.2-orig/Makefile.in Sat Dec 20 01:16:23 2003
+++ algae-4.3.2/Makefile.in Sat Dec 20 01:35:00 2003
@@ -171,6 +171,12 @@
cd lapack; $(MAKE)
.PHONY: xlapack
+vblas:
+.PHONY: vblas
+
+vlapack:
+.PHONY: vlapack
+
check: source
times: source
diff -ru algae-4.3.2-orig/configure algae-4.3.2/configure
--- algae-4.3.2-orig/configure Sat Dec 20 01:16:22 2003
+++ algae-4.3.2/configure Sat Dec 20 01:24:23 2003
@@ -3436,7 +3436,7 @@
echo "${ECHO_T}no" >&6
fi
-for ac_prog in mozilla netscape mosaic
+for ac_prog in mozilla netscape mosaic open
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
@@ -5253,11 +5253,12 @@
case "${withval}" in
y|yes ) ;;
n|no ) BLAS=xblas ;;
+ veclib ) BLAS=vblas ;;
* ) LDFLAGS="$LDFLAGS -L${withval}" ;;
esac
fi;
case $BLAS in
- xblas ) ;;
+ xblas|vblas ) ;;
* )
as_ac_Lib=`echo "ac_cv_lib_blas_$blas_func" | $as_tr_sh`
echo "$as_me:$LINENO: checking for $blas_func in -lblas" >&5
@@ -5468,7 +5469,7 @@
# checks (except for LAPACK) don't need it and won't find it.
if test "$BLAS" = xblas; then
- LDFLAGS="$LDFLAGS -L../blas"
+ LDFLAGS="-L../blas $LDFLAGS"
LOCAL_LIBS="-lblas $LOCAL_LIBS"
fi
@@ -5485,11 +5486,12 @@
case "${withval}" in
y|yes ) ;;
n|no ) LAPACK=xlapack ;;
+ veclib ) LAPACK=vlapack ;;
* ) LDFLAGS="$LDFLAGS -L${withval}" ;;
esac
fi;
case $LAPACK in
- xlapack ) ;;
+ xlapack|vlapack ) ;;
* )
as_ac_Lib=`echo "ac_cv_lib_lapack_$lapack_func" | $as_tr_sh`
echo "$as_me:$LINENO: checking for $lapack_func in -llapack" >&5
@@ -5564,7 +5566,7 @@
# checks don't need it and won't find it.
if test "$LAPACK" = xlapack; then
- LDFLAGS="$LDFLAGS -L../lapack"
+ LDFLAGS="-L../lapack $LDFLAGS"
LOCAL_LIBS="-llapack $LOCAL_LIBS"
fi
diff -ru algae-4.3.2-orig/doc/Makefile.in algae-4.3.2/doc/Makefile.in
--- algae-4.3.2-orig/doc/Makefile.in Sat Dec 20 01:16:22 2003
+++ algae-4.3.2/doc/Makefile.in Sat Dec 20 01:16:37 2003
@@ -174,13 +174,10 @@
-if test -f algae.info; then d=.; else d=$(srcdir); fi; \
for f in $$d/algae.info $$d/algae.info-*; do \
$(INSTALL_DATA) $$f $(infodir); \
- done; \
- if $(SHELL) -c 'install-info --version' > /dev/null 2>&1; then \
- install-info --info-dir=$(infodir) $$d/algae.info; else true; fi
+ done;
-if test -f algae_toc.html; then d=.; else d=$(srcdir); fi; \
for f in $$d/index.html $$d/algae*.html $$d/icon.gif $$d/info.db; do \
$(INSTALL_DATA) $$f $(htmldir); done
- -rm -f $(datadir)/algae/html; ln -s $(htmldir) $(datadir)/algae/html
-$(INSTALL_DATA) algae.1 $(mandir)/algae.$(manext)
uninstall:
diff -ru algae-4.3.2-orig/fpe/darwin.c algae-4.3.2/fpe/darwin.c
--- algae-4.3.2-orig/fpe/darwin.c Sat Dec 20 01:16:22 2003
+++ algae-4.3.2/fpe/darwin.c Sat Dec 20 01:16:37 2003
@@ -39,15 +39,15 @@
/* First enable the right FP exception conditions */
count = PPC_FLOAT_STATE_COUNT;
thread_get_state(victim, PPC_FLOAT_STATE, (thread_state_t)&fs, &count);
- /* Enable VE OE ZE, Disable UE XE */
- fs.fpscr = (fs.fpscr & ~0x1FFFFF28) | 0x0D0;
+ /* Enable OE ZE, Disable VE UE XE */
+ fs.fpscr = (fs.fpscr & ~0x1FFFFF28) | 0x050;
thread_set_state(victim, PPC_FLOAT_STATE, (thread_state_t)&fs, count);
/* Now, enable FP exceptions as such */
count = PPC_THREAD_STATE_COUNT;
thread_get_state(victim, PPC_THREAD_STATE, (thread_state_t)&ts, &count);
- /* Set FE0 = FE1 = 1 */
- ts.srr1 |= 0x0900;
+ /* Set FE0 = 1 FE1 = 0 */
+ ts.srr1 |= 0x0800;
thread_set_state(victim, PPC_THREAD_STATE, (thread_state_t)&ts, count);
return 0;
diff -ru algae-4.3.2-orig/src/Makefile.in algae-4.3.2/src/Makefile.in
--- algae-4.3.2-orig/src/Makefile.in Sat Dec 20 01:16:24 2003
+++ algae-4.3.2/src/Makefile.in Sat Dec 20 01:16:37 2003
@@ -220,7 +220,7 @@
install: all
$(INSTALL_PROGRAM) algae $(bindir)/algae-$(VERSION_NUMBER)
rm -f $(bindir)/algae
- ln -s $(bindir)/algae-$(VERSION_NUMBER) $(bindir)/algae
+ ln -s algae-$(VERSION_NUMBER) $(bindir)/algae
for f in $(H_SOURCES) $(H_NOT_DIST); do \
$(INSTALL_DATA) $$f $(hdir); done
.PHONY: install
diff -ru algae-4.3.2-orig/superlu/supermatrix.h algae-4.3.2/superlu/supermatrix.h
--- algae-4.3.2-orig/superlu/supermatrix.h Sat Dec 20 01:16:25 2003
+++ algae-4.3.2/superlu/supermatrix.h Sat Dec 20 01:16:37 2003
@@ -15,6 +15,11 @@
SLU_DN /* Fortran style column-wise storage for dense matrix */
} Stype_t;
+#undef _S
+#undef _D
+#undef _C
+#undef _Z
+
typedef enum {
SLU_S, /* single */
SLU_D, /* double */
--- algae-3.7.0-12.info DELETED ---
--- algae-3.7.0-12.patch DELETED ---
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits