summaryrefslogtreecommitdiff
path: root/math/gsl
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-03-28 21:49:41 +0000
committerjtb <jtb@pkgsrc.org>2001-03-28 21:49:41 +0000
commite1791dde3814fdcc3edc981c29d29b1ae338dd29 (patch)
tree8e68f1769d1ddd9be23bfb0daf729b675f006f1d /math/gsl
parent2b020a68f6e60cdc00c430294c07306d8e9e8510 (diff)
downloadpkgsrc-e1791dde3814fdcc3edc981c29d29b1ae338dd29.tar.gz
Updated to gsl-0.7.
* What is new in gsl-0.7: ** Linux/PowerPC should now be well supported. ** Header files for common physical constants have been added. ** Functions linear and nonlinear regression in one or more dimensions are now available. ** Vector and matrix views now have access to the address of the underlying block for compatibility with VSIPL (www.vsipl.org). ** There is a new library for generating low-discrepancy quasi-random sequences. ** The seeding procedure of the default random number generator MT19937 has been updated to match the 10/99 release of the original code. This fixes a weakness which occurred for seeds which were powers of 2. ** The blas library libgslblasnative has been renamed libgslblas to avoid confusion with system blas library
Diffstat (limited to 'math/gsl')
-rw-r--r--math/gsl/Makefile20
-rw-r--r--math/gsl/files/md54
-rw-r--r--math/gsl/patches/patch-aa100
-rw-r--r--math/gsl/patches/patch-ab13
-rw-r--r--math/gsl/patches/patch-ac44
-rw-r--r--math/gsl/patches/patch-ad12
-rw-r--r--math/gsl/patches/patch-ae12
-rw-r--r--math/gsl/pkg/PLIST250
8 files changed, 352 insertions, 103 deletions
diff --git a/math/gsl/Makefile b/math/gsl/Makefile
index 8250f480fe1..21cc40981ae 100644
--- a/math/gsl/Makefile
+++ b/math/gsl/Makefile
@@ -1,9 +1,21 @@
-# $NetBSD: Makefile,v 1.2 2001/02/17 18:22:25 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2001/03/28 21:49:41 jtb Exp $
#
-DISTNAME= gsl-0.5
+DISTNAME= gsl-0.7
CATEGORIES= math devel
-MASTER_SITES= ftp://sourceware.cygnus.com/pub/gsl/
+MASTER_SITES= ftp://sourceware.cygnus.com/pub/gsl/ \
+ ftp://ftp.freesoftware.com/pub/sourceware/pub/gsl/ \
+ ftp://mirrors.rcn.net/pub/sourceware/pub/gsl/ \
+ ftp://gd.tuwien.ac.at/gnu/sourceware/gsl/ \
+ ftp://ftp.funet.fi/pub/mirrors/sourceware.cygnus.com/pub/gsl/ \
+ ftp://ftp.unina.it/pub/Unix/cygnus/gsl/ \
+ ftp://ftp.pvv.ntnu.no/pub/cygnus/sourceware.cygnus.com/gsl/ \
+ ftp://ftp.fic.uni.lodz.pl/pub/sources.redhat.com/pub/gsl/ \
+ ftp://ftp.chg.ru/pub/sourceware/gsl/ \
+ ftp://ftp.sun.ac.za/sites/sourceware.cygnus.com/pub/gsl/ \
+ ftp://ftp1.sinica.edu.tw/pub3/CYGNUS/gsl/ \
+ ftp://sunsite.org.uk/Mirrors/sourceware.cygnus.com/pub/gsl/ \
+ ftp://unix.hensa.ac.uk/mirrors/sourceware.cygnus.com/pub/gsl/
MAINTAINER= David Maxwell <david@maxwell.net>
HOMEPAGE= http://sourceware.cygnus.com/gsl/
@@ -11,5 +23,7 @@ COMMENT= The GNU Scientific Library - mathematical libs
GNU_CONFIGURE= yes
USE_GTEXINFO= yes
+USE_LIBTOOL= yes
+LTCONFIG_OVERRIDE=${WRKSRC}/ltconfig
.include "../../mk/bsd.pkg.mk"
diff --git a/math/gsl/files/md5 b/math/gsl/files/md5
index 844fd61dd6a..f6ee33031dd 100644
--- a/math/gsl/files/md5
+++ b/math/gsl/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.1.1.1 2000/02/08 12:05:02 fredb Exp $
+$NetBSD: md5,v 1.2 2001/03/28 21:49:41 jtb Exp $
-MD5 (gsl-0.5.tar.gz) = b0041976c30f1d4a78fbb2e89b51ef7a
+SHA1 (gsl-0.7.tar.gz) = 49f7dc6d584f79be8c406010c3078b2e1a78a3ab
diff --git a/math/gsl/patches/patch-aa b/math/gsl/patches/patch-aa
new file mode 100644
index 00000000000..2c45a7a722a
--- /dev/null
+++ b/math/gsl/patches/patch-aa
@@ -0,0 +1,100 @@
+$NetBSD: patch-aa,v 1.1 2001/03/28 21:49:41 jtb Exp $
+
+--- /dev/null Wed Mar 28 17:30:50 2001
++++ ieee-utils/fp-netbsd.c
+@@ -0,0 +1,95 @@
++#include <ieeefp.h>
++#include <sys/param.h>
++#include <gsl/gsl_ieee_utils.h>
++#include <gsl/gsl_errno.h>
++
++int
++gsl_ieee_set_mode (int precision, int rounding, int exception_mask)
++{
++ fp_except mode = 0;
++ fp_rnd rnd = 0;
++
++ switch (precision)
++ {
++ case GSL_IEEE_SINGLE_PRECISION:
++ GSL_ERROR ("NetBSD only supports default precision rounding",
++ GSL_EUNSUP);
++ break;
++ case GSL_IEEE_DOUBLE_PRECISION:
++ GSL_ERROR ("NetBSD only supports default precision rounding",
++ GSL_EUNSUP);
++ break;
++ case GSL_IEEE_EXTENDED_PRECISION:
++ GSL_ERROR ("NetBSD only supports default precision rounding",
++ GSL_EUNSUP);
++ break;
++ }
++
++ switch (rounding)
++ {
++ case GSL_IEEE_ROUND_TO_NEAREST:
++ rnd = FP_RN;
++ fpsetround (rnd);
++ break;
++ case GSL_IEEE_ROUND_DOWN:
++ rnd = FP_RM;
++ fpsetround (rnd);
++ break;
++ case GSL_IEEE_ROUND_UP:
++ rnd = FP_RP;
++ fpsetround (rnd);
++ break;
++ case GSL_IEEE_ROUND_TO_ZERO:
++ rnd = FP_RZ;
++ fpsetround (rnd);
++ break;
++ default:
++ rnd = FP_RN;
++ fpsetround (rnd);
++ }
++
++/* Turn on all available exceptions apart from 'inexact'.
++ Denormalized operand exception not available on all ports. */
++
++#ifdef FP_X_DNML
++ mode = FP_X_INV | FP_X_DNML | FP_X_DZ | FP_X_OFL | FP_X_UFL;
++#else
++ mode = FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL;
++#endif
++
++ if (exception_mask & GSL_IEEE_MASK_INVALID)
++ mode &= ~ FP_X_INV;
++
++ if (exception_mask & GSL_IEEE_MASK_DENORMALIZED)
++#ifdef FP_X_DNML
++ mode &= ~ FP_X_DNML;
++#else
++ GSL_ERROR ("netbsd-" MACHINE " does not support the denormalized operand exception. "
++ "Use 'mask-denormalized' to work around this.",
++ GSL_EUNSUP);
++#endif
++
++ if (exception_mask & GSL_IEEE_MASK_DIVISION_BY_ZERO)
++ mode &= ~ FP_X_DZ;
++
++ if (exception_mask & GSL_IEEE_MASK_OVERFLOW)
++ mode &= ~ FP_X_OFL;
++
++ if (exception_mask & GSL_IEEE_MASK_UNDERFLOW)
++ mode &= ~ FP_X_UFL;
++
++ if (exception_mask & GSL_IEEE_TRAP_INEXACT)
++ {
++ mode |= FP_X_IMP;
++ }
++ else
++ {
++ mode &= ~ FP_X_IMP;
++ }
++
++ fpsetmask (mode);
++
++ return GSL_SUCCESS;
++
++}
++
diff --git a/math/gsl/patches/patch-ab b/math/gsl/patches/patch-ab
new file mode 100644
index 00000000000..48a6bd3fdfc
--- /dev/null
+++ b/math/gsl/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1 2001/03/28 21:49:41 jtb Exp $
+
+--- ieee-utils/fp.c.orig
++++ ieee-utils/fp.c
+@@ -22,6 +22,8 @@
+ #include "fp-tru64.c"
+ #elif defined(HAVE_FREEBSD_IEEE_INTERFACE)
+ #include "fp-freebsd.c"
++#elif defined(HAVE_NETBSD_IEEE_INTERFACE)
++#include "fp-netbsd.c"
+ #else
+ #include "fp-unknown.c"
+ #endif
diff --git a/math/gsl/patches/patch-ac b/math/gsl/patches/patch-ac
new file mode 100644
index 00000000000..d7861c177f5
--- /dev/null
+++ b/math/gsl/patches/patch-ac
@@ -0,0 +1,44 @@
+$NetBSD: patch-ac,v 1.1 2001/03/28 21:49:42 jtb Exp $
+
+--- configure.orig Thu Oct 26 20:08:46 2000
++++ configure
+@@ -2645,13 +2645,20 @@
+
+ echo "$ac_t""irix" 1>&6
+ ;;
+- *-*-*bsd*)
++ *-*-freebsd*)
+ cat >> confdefs.h <<\EOF
+ #define HAVE_FREEBSD_IEEE_INTERFACE 1
+ EOF
+
+ echo "$ac_t""freebsd" 1>&6
+ ;;
++ *-*-netbsd*)
++ cat >> confdefs.h <<\EOF
++#define HAVE_NETBSD_IEEE_INTERFACE 1
++EOF
++
++ echo "$ac_t""netbsd" 1>&6
++ ;;
+ *)
+ echo "$ac_t""unknown" 1>&6
+ ;;
+@@ -3065,6 +3072,7 @@
+ s%@CC@%$CC%g
+ s%@CPP@%$CPP%g
+ s%@LN_S@%$LN_S%g
++s%@AS@%$AS%g
+ s%@build@%$build%g
+ s%@build_alias@%$build_alias%g
+ s%@build_cpu@%$build_cpu%g
+@@ -3077,6 +3085,9 @@
+ s%@LIBOBJS@%$LIBOBJS%g
+ s%@GSL_CFLAGS@%$GSL_CFLAGS%g
+ s%@GSL_LIBS@%$GSL_LIBS%g
++s%@OBJEXT@%$OBJEXT%g
++s%@EXEEXT@%$EXEEXT%g
++s%@OBJDUMP@%$OBJDUMP%g
+
+ CEOF
+ EOF
diff --git a/math/gsl/patches/patch-ad b/math/gsl/patches/patch-ad
new file mode 100644
index 00000000000..6a8eced1bf1
--- /dev/null
+++ b/math/gsl/patches/patch-ad
@@ -0,0 +1,12 @@
+$NetBSD: patch-ad,v 1.1 2001/03/28 21:49:42 jtb Exp $
+
+--- acconfig.h.orig
++++ acconfig.h
+@@ -34,6 +34,7 @@
+ #undef HAVE_IRIX_IEEE_INTERFACE
+ #undef HAVE_AIX_IEEE_INTERFACE
+ #undef HAVE_FREEBSD_IEEE_INTERFACE
++#undef HAVE_NETBSD_IEEE_INTERFACE
+
+ /* Define this if we need to include /usr/include/float.h explicitly
+ in order to get FP_RND_RN and related macros. This is known to be
diff --git a/math/gsl/patches/patch-ae b/math/gsl/patches/patch-ae
new file mode 100644
index 00000000000..1450c3b24fe
--- /dev/null
+++ b/math/gsl/patches/patch-ae
@@ -0,0 +1,12 @@
+$NetBSD: patch-ae,v 1.1 2001/03/28 21:49:42 jtb Exp $
+
+--- config.h.in.orig
++++ config.h.in
+@@ -86,6 +86,7 @@
+ #undef HAVE_IRIX_IEEE_INTERFACE
+ #undef HAVE_AIX_IEEE_INTERFACE
+ #undef HAVE_FREEBSD_IEEE_INTERFACE
++#undef HAVE_NETBSD_IEEE_INTERFACE
+
+ /* Define this if we need to include /usr/include/float.h explicitly
+ in order to get FP_RND_RN and related macros. This is known to be
diff --git a/math/gsl/pkg/PLIST b/math/gsl/pkg/PLIST
index 291b40d49a8..03da830ba30 100644
--- a/math/gsl/pkg/PLIST
+++ b/math/gsl/pkg/PLIST
@@ -1,40 +1,14 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2000/02/08 12:05:02 fredb Exp $
-bin/gsl-randist
-bin/gsl-histogram
+@comment $NetBSD: PLIST,v 1.2 2001/03/28 21:49:42 jtb Exp $
bin/gsl-config
-lib/gsl/libutils.a
-lib/gsl/libgslsys.a
-lib/gsl/libgslerr.a
-lib/gsl/libgsltest.a
-lib/gsl/libgslblock.a
-lib/gsl/libgslvector.a
-lib/gsl/libgslmatrix.a
-lib/gsl/libgslieeeutils.a
-lib/gsl/libgslmin.a
-lib/gsl/libgsllinalg.a
-lib/gsl/libgsleigen.a
-lib/gsl/libgslblas.a
-lib/gsl/libgslblasnative.a
-lib/gsl/libgslblascblas.a
-lib/gsl/libgslspecfunc.a
-lib/gsl/libgsldht.a
-lib/gsl/libgslrng.a
-lib/gsl/libgslrandist.a
-lib/gsl/libgslfft.a
-lib/gsl/libgslpoly.a
-lib/gsl/libgslsum.a
-lib/gsl/libgslroots.a
-lib/gsl/libgslmultiroots.a
-lib/gsl/libgslstatistics.a
-lib/gsl/libgslsiman.a
-lib/gsl/libgslintegration.a
-lib/gsl/libgslinterpolation.a
-lib/gsl/libgslhistogram.a
-lib/gsl/libgslmonte.a
-lib/gsl/libgslodeiv.a
-include/gsl/gsl_errno.h
-include/gsl/gsl_message.h
-include/gsl/gsl_test.h
+bin/gsl-histogram
+bin/gsl-randist
+include/gsl/gsl_blas.h
+include/gsl/gsl_blas_raw.h
+include/gsl/gsl_blas_raw_L1.h
+include/gsl/gsl_blas_raw_L2.h
+include/gsl/gsl_blas_raw_L3.h
+include/gsl/gsl_blas_raw_cm.h
+include/gsl/gsl_blas_types.h
include/gsl/gsl_block.h
include/gsl/gsl_block_char.h
include/gsl/gsl_block_complex.h
@@ -51,23 +25,36 @@ include/gsl/gsl_block_uchar.h
include/gsl/gsl_block_uint.h
include/gsl/gsl_block_ulong.h
include/gsl/gsl_block_ushort.h
-include/gsl/gsl_vector.h
-include/gsl/gsl_vector_char.h
-include/gsl/gsl_vector_complex.h
-include/gsl/gsl_vector_complex_double.h
-include/gsl/gsl_vector_complex_float.h
-include/gsl/gsl_vector_complex_long_double.h
-include/gsl/gsl_vector_double.h
-include/gsl/gsl_vector_float.h
-include/gsl/gsl_vector_int.h
-include/gsl/gsl_vector_long.h
-include/gsl/gsl_vector_long_double.h
-include/gsl/gsl_vector_short.h
-include/gsl/gsl_vector_uchar.h
-include/gsl/gsl_vector_uint.h
+include/gsl/gsl_cblas.h
+include/gsl/gsl_complex.h
+include/gsl/gsl_complex_math.h
+include/gsl/gsl_const.h
+include/gsl/gsl_const_cgs.h
+include/gsl/gsl_const_mks.h
+include/gsl/gsl_const_num.h
+include/gsl/gsl_dft_complex.h
+include/gsl/gsl_dft_complex_float.h
+include/gsl/gsl_dht.h
+include/gsl/gsl_eigen.h
+include/gsl/gsl_errno.h
+include/gsl/gsl_fft.h
+include/gsl/gsl_fft_complex.h
+include/gsl/gsl_fft_complex_float.h
+include/gsl/gsl_fft_halfcomplex.h
+include/gsl/gsl_fft_halfcomplex_float.h
+include/gsl/gsl_fft_real.h
+include/gsl/gsl_fft_real_float.h
+include/gsl/gsl_fit.h
+include/gsl/gsl_heapsort.h
+include/gsl/gsl_histogram.h
+include/gsl/gsl_histogram2d.h
+include/gsl/gsl_ieee_utils.h
+include/gsl/gsl_integration.h
+include/gsl/gsl_interp.h
+include/gsl/gsl_linalg.h
+include/gsl/gsl_machine.h
+include/gsl/gsl_math.h
include/gsl/gsl_matrix.h
-include/gsl/gsl_vector_ulong.h
-include/gsl/gsl_vector_ushort.h
include/gsl/gsl_matrix_char.h
include/gsl/gsl_matrix_complex_double.h
include/gsl/gsl_matrix_complex_float.h
@@ -82,25 +69,56 @@ include/gsl/gsl_matrix_uchar.h
include/gsl/gsl_matrix_uint.h
include/gsl/gsl_matrix_ulong.h
include/gsl/gsl_matrix_ushort.h
+include/gsl/gsl_message.h
include/gsl/gsl_min.h
-include/gsl/gsl_ieee_utils.h
-include/gsl/gsl_linalg.h
-include/gsl/gsl_eigen.h
-include/gsl/gsl_blas.h
-include/gsl/gsl_blas_types.h
-include/gsl/gsl_blas_raw.h
-include/gsl/gsl_blas_raw_L1.h
-include/gsl/gsl_blas_raw_L2.h
-include/gsl/gsl_blas_raw_L3.h
-include/gsl/gsl_blas_raw_cm.h
+include/gsl/gsl_mode.h
+include/gsl/gsl_monte.h
+include/gsl/gsl_monte_miser.h
+include/gsl/gsl_monte_plain.h
+include/gsl/gsl_monte_vegas.h
+include/gsl/gsl_multifit.h
+include/gsl/gsl_multifit_nlin.h
+include/gsl/gsl_multimin.h
+include/gsl/gsl_multiroots.h
+include/gsl/gsl_odeiv.h
+include/gsl/gsl_permutation.h
+include/gsl/gsl_permute.h
+include/gsl/gsl_permute_char.h
+include/gsl/gsl_permute_double.h
+include/gsl/gsl_permute_float.h
+include/gsl/gsl_permute_int.h
+include/gsl/gsl_permute_long.h
+include/gsl/gsl_permute_long_double.h
+include/gsl/gsl_permute_short.h
+include/gsl/gsl_permute_uchar.h
+include/gsl/gsl_permute_uint.h
+include/gsl/gsl_permute_ulong.h
+include/gsl/gsl_permute_ushort.h
+include/gsl/gsl_permute_vector.h
+include/gsl/gsl_permute_vector_char.h
+include/gsl/gsl_permute_vector_double.h
+include/gsl/gsl_permute_vector_float.h
+include/gsl/gsl_permute_vector_int.h
+include/gsl/gsl_permute_vector_long.h
+include/gsl/gsl_permute_vector_long_double.h
+include/gsl/gsl_permute_vector_short.h
+include/gsl/gsl_permute_vector_uchar.h
+include/gsl/gsl_permute_vector_uint.h
+include/gsl/gsl_permute_vector_ulong.h
+include/gsl/gsl_permute_vector_ushort.h
+include/gsl/gsl_poly.h
+include/gsl/gsl_precision.h
+include/gsl/gsl_qrng.h
+include/gsl/gsl_randist.h
+include/gsl/gsl_rng.h
+include/gsl/gsl_roots.h
include/gsl/gsl_sf.h
-include/gsl/gsl_specfunc.h
include/gsl/gsl_sf_airy.h
include/gsl/gsl_sf_bessel.h
include/gsl/gsl_sf_chebyshev.h
include/gsl/gsl_sf_clausen.h
-include/gsl/gsl_sf_coupling.h
include/gsl/gsl_sf_coulomb.h
+include/gsl/gsl_sf_coupling.h
include/gsl/gsl_sf_dawson.h
include/gsl/gsl_sf_debye.h
include/gsl/gsl_sf_dilog.h
@@ -111,8 +129,8 @@ include/gsl/gsl_sf_erf.h
include/gsl/gsl_sf_exp.h
include/gsl/gsl_sf_expint.h
include/gsl/gsl_sf_fermi_dirac.h
-include/gsl/gsl_sf_gegenbauer.h
include/gsl/gsl_sf_gamma.h
+include/gsl/gsl_sf_gegenbauer.h
include/gsl/gsl_sf_hyperg.h
include/gsl/gsl_sf_laguerre.h
include/gsl/gsl_sf_legendre.h
@@ -122,20 +140,35 @@ include/gsl/gsl_sf_pow_int.h
include/gsl/gsl_sf_psi.h
include/gsl/gsl_sf_result.h
include/gsl/gsl_sf_synchrotron.h
-include/gsl/gsl_dht.h
include/gsl/gsl_sf_transport.h
include/gsl/gsl_sf_trig.h
include/gsl/gsl_sf_zeta.h
-include/gsl/gsl_rng.h
-include/gsl/gsl_randist.h
-include/gsl/gsl_fft.h
-include/gsl/gsl_fft_complex.h
-include/gsl/gsl_fft_halfcomplex.h
-include/gsl/gsl_fft_real.h
-include/gsl/gsl_dft_complex.h
-include/gsl/gsl_poly.h
-include/gsl/gsl_roots.h
-include/gsl/gsl_multiroots.h
+include/gsl/gsl_siman.h
+include/gsl/gsl_sort.h
+include/gsl/gsl_sort_char.h
+include/gsl/gsl_sort_double.h
+include/gsl/gsl_sort_float.h
+include/gsl/gsl_sort_int.h
+include/gsl/gsl_sort_long.h
+include/gsl/gsl_sort_long_double.h
+include/gsl/gsl_sort_short.h
+include/gsl/gsl_sort_uchar.h
+include/gsl/gsl_sort_uint.h
+include/gsl/gsl_sort_ulong.h
+include/gsl/gsl_sort_ushort.h
+include/gsl/gsl_sort_vector.h
+include/gsl/gsl_sort_vector_char.h
+include/gsl/gsl_sort_vector_double.h
+include/gsl/gsl_sort_vector_float.h
+include/gsl/gsl_sort_vector_int.h
+include/gsl/gsl_sort_vector_long.h
+include/gsl/gsl_sort_vector_long_double.h
+include/gsl/gsl_sort_vector_short.h
+include/gsl/gsl_sort_vector_uchar.h
+include/gsl/gsl_sort_vector_uint.h
+include/gsl/gsl_sort_vector_ulong.h
+include/gsl/gsl_sort_vector_ushort.h
+include/gsl/gsl_specfunc.h
include/gsl/gsl_statistics.h
include/gsl/gsl_statistics_char.h
include/gsl/gsl_statistics_double.h
@@ -148,25 +181,35 @@ include/gsl/gsl_statistics_uchar.h
include/gsl/gsl_statistics_uint.h
include/gsl/gsl_statistics_ulong.h
include/gsl/gsl_statistics_ushort.h
-include/gsl/gsl_siman.h
include/gsl/gsl_sum.h
-include/gsl/gsl_integration.h
-include/gsl/gsl_interp.h
-include/gsl/gsl_histogram.h
-include/gsl/gsl_histogram2d.h
-include/gsl/gsl_monte_vegas.h
-include/gsl/gsl_monte_miser.h
-include/gsl/gsl_monte_plain.h
-include/gsl/gsl_monte.h
-include/gsl/gsl_odeiv.h
-include/gsl/gsl_complex.h
-include/gsl/gsl_math.h
-include/gsl/gsl_machine.h
-include/gsl/gsl_mode.h
-include/gsl/gsl_precision.h
-@unexec install-info --delete %D/info/gsl-ref.info %D/info/dir
+include/gsl/gsl_test.h
+include/gsl/gsl_vector.h
+include/gsl/gsl_vector_char.h
+include/gsl/gsl_vector_complex.h
+include/gsl/gsl_vector_complex_double.h
+include/gsl/gsl_vector_complex_float.h
+include/gsl/gsl_vector_complex_long_double.h
+include/gsl/gsl_vector_double.h
+include/gsl/gsl_vector_float.h
+include/gsl/gsl_vector_int.h
+include/gsl/gsl_vector_long.h
+include/gsl/gsl_vector_long_double.h
+include/gsl/gsl_vector_short.h
+include/gsl/gsl_vector_uchar.h
+include/gsl/gsl_vector_uint.h
+include/gsl/gsl_vector_ulong.h
+include/gsl/gsl_vector_ushort.h
+@unexec install-info --delete --info-dir=%D/info %D/info/gsl-ref.info
info/gsl-ref.info
info/gsl-ref.info-1
+info/gsl-ref.info-10
+info/gsl-ref.info-11
+info/gsl-ref.info-12
+info/gsl-ref.info-13
+info/gsl-ref.info-14
+info/gsl-ref.info-15
+info/gsl-ref.info-16
+info/gsl-ref.info-17
info/gsl-ref.info-2
info/gsl-ref.info-3
info/gsl-ref.info-4
@@ -175,10 +218,21 @@ info/gsl-ref.info-6
info/gsl-ref.info-7
info/gsl-ref.info-8
info/gsl-ref.info-9
-info/gsl-ref.info-10
-info/gsl-ref.info-11
-info/gsl-ref.info-12
-info/gsl-ref.info-13
-@exec install-info %D/info/gsl-ref.info %D/info/dir
+@exec install-info --info-dir=%D/info %D/info/gsl-ref.info
+lib/libgsl.a
+lib/libgsl.la
+lib/libgsl.so
+lib/libgsl.so.0
+lib/libgsl.so.0.0
+lib/libgslblas.a
+lib/libgslblas.la
+lib/libgslblas.so
+lib/libgslblas.so.0
+lib/libgslblas.so.0.0
+lib/libgslblascblas.a
+lib/libgslblascblas.la
+lib/libgslblascblas.so
+lib/libgslblascblas.so.0
+lib/libgslblascblas.so.0.0
+share/aclocal/gsl.m4
@dirrm include/gsl
-@dirrm lib/gsl