diff options
author | marcus <marcus@FreeBSD.org> | 2003-04-11 13:13:48 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-04-11 13:13:48 +0800 |
commit | 1117eb84b96dc86fc5eb2eb3bb892e43bdfcc224 (patch) | |
tree | 0c5f78e9582962544feda882d05ba9a33242f295 /math | |
parent | f8ef22e43093f2e85a9814041f8631f7b05f1e32 (diff) | |
download | freebsd-ports-gnome-1117eb84b96dc86fc5eb2eb3bb892e43bdfcc224.tar.gz freebsd-ports-gnome-1117eb84b96dc86fc5eb2eb3bb892e43bdfcc224.tar.zst freebsd-ports-gnome-1117eb84b96dc86fc5eb2eb3bb892e43bdfcc224.zip |
Update to 1.0.13.
Diffstat (limited to 'math')
-rw-r--r-- | math/gnumeric/Makefile | 5 | ||||
-rw-r--r-- | math/gnumeric/distinfo | 2 | ||||
-rw-r--r-- | math/gnumeric/files/patch-src_xml-io.c | 36 |
3 files changed, 2 insertions, 41 deletions
diff --git a/math/gnumeric/Makefile b/math/gnumeric/Makefile index 45736ee8e7e2..0129f898bd3a 100644 --- a/math/gnumeric/Makefile +++ b/math/gnumeric/Makefile @@ -6,8 +6,7 @@ # PORTNAME= gnumeric -PORTVERSION= 1.0.12 -PORTREVISION= 2 +PORTVERSION= 1.0.13 CATEGORIES?= math gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.0 @@ -26,7 +25,6 @@ USE_BZIP2= yes USE_X_PREFIX= yes USE_PERL5= yes USE_GMAKE= yes -USE_GNOMENG= yes USE_GNOME= gnomeprefix gnomehack gnomelibs bonobo libglade gal USE_PYTHON= yes USE_REINPLACE= yes @@ -35,7 +33,6 @@ INSTALLS_SHLIB= yes CONFIGURE_ARGS= --with-evolution --without-guile CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LIBS="-L${LOCALBASE}/lib -lintl -liconv ${PTHREAD_LIBS}" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} PLIST_SUB= VERSION=${PORTVERSION}-bonobo diff --git a/math/gnumeric/distinfo b/math/gnumeric/distinfo index 5aaf377a5452..f81e9b3dedc7 100644 --- a/math/gnumeric/distinfo +++ b/math/gnumeric/distinfo @@ -1 +1 @@ -MD5 (gnome/gnumeric-1.0.12.tar.bz2) = 54bd9e116859303cf92a945efb364664 +MD5 (gnome/gnumeric-1.0.13.tar.bz2) = 7f0e7b88538719cba9d9f5509ccbb491 diff --git a/math/gnumeric/files/patch-src_xml-io.c b/math/gnumeric/files/patch-src_xml-io.c deleted file mode 100644 index 23d57e643117..000000000000 --- a/math/gnumeric/files/patch-src_xml-io.c +++ /dev/null @@ -1,36 +0,0 @@ ---- src/xml-io.c.orig Thu Jan 9 13:44:58 2003 -+++ src/xml-io.c Thu Jan 9 13:46:41 2003 -@@ -67,7 +67,7 @@ - - /* FIXME - tune the values below */ - /* libxml1 parser bug breaks multibyte characters on buffer margins */ --#define XML_INPUT_BUFFER_SIZE 1024*1024 -+#define XML_INPUT_BUFFER_SIZE (10*1024*1024) - #define N_ELEMENTS_BETWEEN_UPDATES 20 - - /* ------------------------------------------------------------------------- */ -@@ -3350,7 +3350,7 @@ - struct stat sbuf; - gint file_size; - ErrorInfo *open_error; -- gchar buffer[XML_INPUT_BUFFER_SIZE]; -+ gchar *buffer; - gint bytes; - xmlParserCtxtPtr pctxt; - xmlDocPtr res; -@@ -3387,6 +3387,7 @@ - io_progress_message (context, _("Reading file...")); - io_progress_range_push (context, 0.0, 0.5); - value_io_progress_set (context, file_size, 0); -+ buffer = g_new (char, XML_INPUT_BUFFER_SIZE); - bytes = gzread (f, buffer, 4); - pctxt = xmlCreatePushParserCtxt (NULL, NULL, buffer, bytes, filename); - -@@ -3395,6 +3396,7 @@ - value_io_progress_update (context, lseek (fd, 0, SEEK_CUR)); - } - xmlParseChunk (pctxt, buffer, 0, 1); -+ g_free (buffer); - - res = pctxt->myDoc; - xmlFreeParserCtxt (pctxt); |