Update to 2.1.0

PR:		ports/82174
Submitted by:	maintainer
This commit is contained in:
Patrick Li 2005-06-13 04:16:36 +00:00
parent 8858d9b57e
commit 31612f2a31
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=137381
4 changed files with 514 additions and 111 deletions

View File

@ -7,7 +7,7 @@
#
PORTNAME= R
PORTVERSION= 2.0.1
PORTVERSION= 2.1.0
CATEGORIES= math lang
MASTER_SITES= http://cran.r-project.org/src/base/R-2/ \
ftp://cran.r-project.org/pub/R/src/base/R-2/ \

View File

@ -1,2 +1,2 @@
MD5 (R-2.0.1.tar.gz) = fb47b1fdef4323031e24d541a2f36b2b
SIZE (R-2.0.1.tar.gz) = 10645703
MD5 (R-2.1.0.tar.gz) = 270f7a7382e8cb10a353148598f91096
SIZE (R-2.1.0.tar.gz) = 12173182

55
math/R/files/patch-alloca Normal file
View File

@ -0,0 +1,55 @@
--- src/library/grDevices/src/devPS.c.orig 2005-04-18 23:30:30.000000000 +0200
+++ src/library/grDevices/src/devPS.c 2005-06-08 15:35:30.000000000 +0200
@@ -47,7 +47,7 @@
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
-#else
+#elif !defined (__FreeBSD__)
extern char *alloca(size_t);
#endif
--- src/main/errors.c.orig 2005-04-18 23:30:00.000000000 +0200
+++ src/main/errors.c 2005-06-08 15:35:30.000000000 +0200
@@ -39,7 +39,7 @@
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
-#if !HAVE_DECL_ALLOCA
+#if !HAVE_DECL_ALLOCA && !defined(__FreeBSD__)
extern char *alloca(size_t);
#endif
--- src/main/pcre.c.orig 2005-04-18 23:30:01.000000000 +0200
+++ src/main/pcre.c 2005-06-08 15:35:31.000000000 +0200
@@ -37,7 +37,7 @@
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
-#if !HAVE_DECL_ALLOCA
+#if !HAVE_DECL_ALLOCA && !defined(__FreeBSD__)
extern char *alloca(size_t);
#endif
--- src/main/util.c.orig 2005-04-18 23:30:00.000000000 +0200
+++ src/main/util.c 2005-06-08 15:35:30.000000000 +0200
@@ -41,7 +41,7 @@
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
-#if !HAVE_DECL_ALLOCA
+#if !HAVE_DECL_ALLOCA && !defined(__FreeBSD__)
extern char *alloca(size_t);
#endif
--- src/main/vfonts.c.orig 2005-04-18 23:30:01.000000000 +0200
+++ src/main/vfonts.c 2005-06-08 15:35:30.000000000 +0200
@@ -32,7 +32,7 @@
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
-#if !HAVE_DECL_ALLOCA
+#if !HAVE_DECL_ALLOCA && !defined(__FreeBSD__)
extern char *alloca(size_t);
#endif

File diff suppressed because it is too large Load Diff