diff options
author | pav <pav@FreeBSD.org> | 2004-12-11 01:42:19 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-12-11 01:42:19 +0800 |
commit | 1a9e63fd3356ffa6dd9830ee7abf7082c67ffd86 (patch) | |
tree | 20281c80f7be4564efcb015e89ca8f90f4292f6f /math | |
parent | c9cdd7595782b314ccf15a6a025efd413fb6cd91 (diff) | |
download | freebsd-ports-gnome-1a9e63fd3356ffa6dd9830ee7abf7082c67ffd86.tar.gz freebsd-ports-gnome-1a9e63fd3356ffa6dd9830ee7abf7082c67ffd86.tar.zst freebsd-ports-gnome-1a9e63fd3356ffa6dd9830ee7abf7082c67ffd86.zip |
- Update to 1.4.1
Diffstat (limited to 'math')
-rw-r--r-- | math/gnumeric2/Makefile | 2 | ||||
-rw-r--r-- | math/gnumeric2/distinfo | 4 | ||||
-rw-r--r-- | math/gnumeric2/files/patch-src_tools_solver_lp_solve_commonlib.c | 25 | ||||
-rw-r--r-- | math/gnumeric2/pkg-plist | 5 |
4 files changed, 8 insertions, 28 deletions
diff --git a/math/gnumeric2/Makefile b/math/gnumeric2/Makefile index 60be1323da80..b9e7cbff7fb5 100644 --- a/math/gnumeric2/Makefile +++ b/math/gnumeric2/Makefile @@ -6,7 +6,7 @@ # PORTNAME= gnumeric2 -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= math gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:R} diff --git a/math/gnumeric2/distinfo b/math/gnumeric2/distinfo index f2e9933a5b77..7196294918a6 100644 --- a/math/gnumeric2/distinfo +++ b/math/gnumeric2/distinfo @@ -1,2 +1,2 @@ -MD5 (gnome2/gnumeric-1.4.0.tar.bz2) = f6b4bb2cdac76b3b9ffc2b3a146a5408 -SIZE (gnome2/gnumeric-1.4.0.tar.bz2) = 16806726 +MD5 (gnome2/gnumeric-1.4.1.tar.bz2) = bc60b5c342908e969b320ab833e6b151 +SIZE (gnome2/gnumeric-1.4.1.tar.bz2) = 16827174 diff --git a/math/gnumeric2/files/patch-src_tools_solver_lp_solve_commonlib.c b/math/gnumeric2/files/patch-src_tools_solver_lp_solve_commonlib.c deleted file mode 100644 index e2bbe97e643c..000000000000 --- a/math/gnumeric2/files/patch-src_tools_solver_lp_solve_commonlib.c +++ /dev/null @@ -1,25 +0,0 @@ ---- src/tools/solver/lp_solve/commonlib.c.orig Wed Sep 1 23:20:25 2004 -+++ src/tools/solver/lp_solve/commonlib.c Wed Sep 1 23:25:07 2004 -@@ -4,7 +4,7 @@ - #ifdef INTEGERTIME - # include <time.h> - #else --# include <sys/timeb.h> -+# include <sys/time.h> - #endif - - #include <stdlib.h> -@@ -282,10 +282,10 @@ - #elif defined CLOCKTIME - return((double)clock()/CLOCKS_PER_SEC /* CLK_TCK */); - #else -- struct timeb buf; -+ struct timeval buf; - -- ftime(&buf); -- return((double)buf.time+((double) buf.millitm)/1000.0); -+ gettimeofday(&buf, NULL); -+ return((double)buf.tv_sec+((double) buf.tv_usec)/1000.0); - #endif - } - diff --git a/math/gnumeric2/pkg-plist b/math/gnumeric2/pkg-plist index 8a1ec77c5f3b..5592883422c4 100644 --- a/math/gnumeric2/pkg-plist +++ b/math/gnumeric2/pkg-plist @@ -73,6 +73,10 @@ lib/gnumeric/%%VERSION%%/plugins/plot_pie/plugin.xml lib/gnumeric/%%VERSION%%/plugins/plot_radar/plot-types.xml lib/gnumeric/%%VERSION%%/plugins/plot_radar/plugin.xml lib/gnumeric/%%VERSION%%/plugins/plot_radar/radar.so +lib/gnumeric/%%VERSION%%/plugins/plot_surface/gog-contour-prefs.glade +lib/gnumeric/%%VERSION%%/plugins/plot_surface/surface.so +lib/gnumeric/%%VERSION%%/plugins/plot_surface/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/plot_surface/plot-types.xml lib/gnumeric/%%VERSION%%/plugins/plot_xy/gog-bubble-prefs.glade lib/gnumeric/%%VERSION%%/plugins/plot_xy/plot-types.xml lib/gnumeric/%%VERSION%%/plugins/plot_xy/plugin.xml @@ -782,6 +786,7 @@ share/locale/zh_TW/LC_MESSAGES/gnumeric.mo @dirrm lib/gnumeric/%%VERSION%%/plugins/python-loader @dirrm lib/gnumeric/%%VERSION%%/plugins/py-func @dirrm lib/gnumeric/%%VERSION%%/plugins/plot_xy +@dirrm lib/gnumeric/%%VERSION%%/plugins/plot_surface @dirrm lib/gnumeric/%%VERSION%%/plugins/plot_radar @dirrm lib/gnumeric/%%VERSION%%/plugins/plot_pie @dirrm lib/gnumeric/%%VERSION%%/plugins/plot_barcol |