summaryrefslogtreecommitdiff
path: root/math/fityk
diff options
context:
space:
mode:
authorwiedi <wiedi@pkgsrc.org>2014-02-24 12:35:10 +0000
committerwiedi <wiedi@pkgsrc.org>2014-02-24 12:35:10 +0000
commit4c9fd09731177716639d467ebc4a0f9255dbe402 (patch)
treef3323a2086ceb925226678e864f824716427ee12 /math/fityk
parentf97b2f406da992393292a7c0433fa335e11b8821 (diff)
downloadpkgsrc-4c9fd09731177716639d467ebc4a0f9255dbe402.tar.gz
Include <ieeefp.h> for finite() and update the homepage
Diffstat (limited to 'math/fityk')
-rw-r--r--math/fityk/Makefile4
-rw-r--r--math/fityk/distinfo3
-rw-r--r--math/fityk/patches/patch-src_common.h15
3 files changed, 19 insertions, 3 deletions
diff --git a/math/fityk/Makefile b/math/fityk/Makefile
index 584bb57c653..23bfe939eaf 100644
--- a/math/fityk/Makefile
+++ b/math/fityk/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2014/01/27 18:41:13 wiz Exp $
+# $NetBSD: Makefile,v 1.28 2014/02/24 12:35:10 wiedi Exp $
DISTNAME= fityk-0.9.7
PKGREVISION= 16
@@ -8,7 +8,7 @@ MASTER_SITES= https://cloud.github.com/downloads/wojdyr/fityk/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
-HOMEPAGE= http://fityk.sourceforge.net/
+HOMEPAGE= http://fityk.nieto.pl/
COMMENT= Peak fitting software
LICENSE= gnu-lgpl-v2
diff --git a/math/fityk/distinfo b/math/fityk/distinfo
index 39e6a50534a..052ed533957 100644
--- a/math/fityk/distinfo
+++ b/math/fityk/distinfo
@@ -1,9 +1,10 @@
-$NetBSD: distinfo,v 1.4 2013/04/30 22:25:39 joerg Exp $
+$NetBSD: distinfo,v 1.5 2014/02/24 12:35:10 wiedi Exp $
SHA1 (fityk-0.9.7.tar.bz2) = bb4d11b529c6c87c68c6f7359075915caf95a996
RMD160 (fityk-0.9.7.tar.bz2) = bd403037157b32ec7c7c6972f17116e403d099bc
Size (fityk-0.9.7.tar.bz2) = 1146628 bytes
SHA1 (patch-aa) = c923919db013ca9ddb8370617bf0b4b0aaa31922
SHA1 (patch-src_GAfit.cpp) = 6543899d3861853d0738bbb5ced2cc9f59fda6db
+SHA1 (patch-src_common.h) = 1ab3f9d0c72c1f4bb0740a22ccc7960fb18b4c90
SHA1 (patch-src_eparser.cpp) = 6120b71f1bcafc1efc5b774426955084739a42c0
SHA1 (patch-src_wxgui_ceria.cpp) = d3d07180b20b563c67d1bb7316d38ef64ff91a8a
diff --git a/math/fityk/patches/patch-src_common.h b/math/fityk/patches/patch-src_common.h
new file mode 100644
index 00000000000..dee6fbf22ae
--- /dev/null
+++ b/math/fityk/patches/patch-src_common.h
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_common.h,v 1.1 2014/02/24 12:35:10 wiedi Exp $
+
+needs ieeefp.h for finite()
+--- src/common.h.orig 2011-01-09 18:43:38.000000000 +0000
++++ src/common.h
+@@ -19,6 +19,9 @@
+ #include <math.h>
+ #include <assert.h>
+ #include <float.h> // DBL_MAX
++#if defined(__sun)
++#include <ieeefp.h>
++#endif
+
+ #include "fityk.h" //ExecuteError
+ using fityk::ExecuteError;