summaryrefslogtreecommitdiff
path: root/math/cln
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2007-01-04 21:20:57 +0000
committeradam <adam@pkgsrc.org>2007-01-04 21:20:57 +0000
commitfd34860d999f8ef6cdcb2440c7eb27f5d3f91e1d (patch)
treeb89605dfb065478b4e90d520e6db220cd42666a9 /math/cln
parente7938b0138ea760253d8a2d92096cf2e609f395d (diff)
downloadpkgsrc-fd34860d999f8ef6cdcb2440c7eb27f5d3f91e1d.tar.gz
Changes 1.1.13:
* Compilation fixes for 64-bit brokenness introduced in last release. Changes 1.1.12: * Fix rare assertion when printing quite large floats. * Compilation fixes for several platforms: *BSD, Intel Mac, and MinGW.
Diffstat (limited to 'math/cln')
-rw-r--r--math/cln/Makefile6
-rw-r--r--math/cln/distinfo11
-rw-r--r--math/cln/patches/patch-aa22
-rw-r--r--math/cln/patches/patch-ab13
4 files changed, 13 insertions, 39 deletions
diff --git a/math/cln/Makefile b/math/cln/Makefile
index 16410fe18c7..bcb6bd67e88 100644
--- a/math/cln/Makefile
+++ b/math/cln/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2006/07/07 15:49:32 jlam Exp $
+# $NetBSD: Makefile,v 1.15 2007/01/04 21:20:57 adam Exp $
-DISTNAME= cln-1.1.11
+DISTNAME= cln-1.1.13
CATEGORIES= math
MASTER_SITES= ftp://ftpthep.physik.uni-mainz.de/pub/gnu/ \
ftp://ftp.santafe.edu/pub/gnu/ \
@@ -16,6 +16,6 @@ USE_LANGUAGES= c c++
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE= cln.pc.in
-INFO_FILES= # PLIST
+INFO_FILES= yes
.include "../../mk/bsd.pkg.mk"
diff --git a/math/cln/distinfo b/math/cln/distinfo
index ca68936248e..276814d2e74 100644
--- a/math/cln/distinfo
+++ b/math/cln/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.5 2006/04/06 19:46:33 adam Exp $
+$NetBSD: distinfo,v 1.6 2007/01/04 21:20:57 adam Exp $
-SHA1 (cln-1.1.11.tar.bz2) = ff9a02430e700afd990fc89d06cd8adcff32af67
-RMD160 (cln-1.1.11.tar.bz2) = 1ceca5e74bd7a6179d22a9ffd78bbe8fc7ce2e08
-Size (cln-1.1.11.tar.bz2) = 1710717 bytes
-SHA1 (patch-aa) = 5081352b902de9065e7c6645442823ab297bef09
-SHA1 (patch-ab) = 90c93f8b2269a23e8310e8e40ddabf6d8659de43
+SHA1 (cln-1.1.13.tar.bz2) = 61c130cbb00ed95a19ee9dffc136b2823e452647
+RMD160 (cln-1.1.13.tar.bz2) = 798e8e2a8d4aa81b770b6606ae1fe617bcb0cbc3
+Size (cln-1.1.13.tar.bz2) = 1708927 bytes
+SHA1 (patch-ab) = d1fc5f290b8838af030f968fbba26e51be177100
SHA1 (patch-ac) = d93e47d81cb010f0eb21b3a98d5ce9b9a6150623
diff --git a/math/cln/patches/patch-aa b/math/cln/patches/patch-aa
deleted file mode 100644
index 39eed5e0b15..00000000000
--- a/math/cln/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2004/03/05 14:46:23 adam Exp $
-
---- src/base/random/cl_random_from.cc.orig 2003-12-29 19:04:08.000000000 +0000
-+++ src/base/random/cl_random_from.cc
-@@ -12,7 +12,7 @@
- #include "cl_base_config.h"
- #include "cl_low.h"
-
--#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__)
-+#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) || defined(__NetBSD__)
-
- #include <sys/types.h>
- #include <unistd.h> // declares getpid()
-@@ -64,7 +64,7 @@ random_state::random_state ()
- {
- var uint32 seed_hi;
- var uint32 seed_lo;
--#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__)
-+#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) || defined(__NetBSD__)
- seed_lo = ::get_seed();
- seed_hi = (rand() // zufällige 31 Bit (bei UNIX_BSD) bzw. 16 Bit (bei UNIX_SYSV)
- << 8) ^ (uintL)(getpid()); // ca. 8 Bit von der Process ID
diff --git a/math/cln/patches/patch-ab b/math/cln/patches/patch-ab
index 5592f5b727e..f150c803d16 100644
--- a/math/cln/patches/patch-ab
+++ b/math/cln/patches/patch-ab
@@ -1,11 +1,8 @@
-$NetBSD: patch-ab,v 1.3 2006/03/12 16:33:32 rillig Exp $
+$NetBSD: patch-ab,v 1.4 2007/01/04 21:20:57 adam Exp $
-HTML documentation is installed to share/doc/cln/html, DVI and
-PostScript are left out.
-
---- doc/Makefile.in.orig 2004-10-26 21:29:16.000000000 +0000
+--- doc/Makefile.in.orig 2006-08-06 14:14:20.000000000 +0200
+++ doc/Makefile.in
-@@ -12,7 +12,7 @@ exec_prefix = @exec_prefix@
+@@ -13,7 +13,7 @@ datarootdir = @datarootdir@
datadir = @datadir@
infodir = @infodir@
mandir = @mandir@
@@ -14,7 +11,7 @@ PostScript are left out.
dvidir = $(datadir)/dvi
DESTDIR =
-@@ -42,7 +42,7 @@ SHELL = /bin/sh
+@@ -43,7 +43,7 @@ SHELL = /bin/sh
VPATH = $(srcdir)
@@ -23,7 +20,7 @@ PostScript are left out.
info : $(srcdir)/$(PACKAGE).info
-@@ -87,13 +87,11 @@ install : all installdirs force
+@@ -88,13 +88,11 @@ install : all installdirs force
install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$(PACKAGE).info || :;\
else : ; fi
$(INSTALL_DATA) $(srcdir)/$(PACKAGE)_*.html $(DESTDIR)$(htmldir)