diff options
author | adam <adam@pkgsrc.org> | 2009-12-11 18:53:40 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2009-12-11 18:53:40 +0000 |
commit | 9e33e67ae5c932428c6662d8e1f3b3083e288d04 (patch) | |
tree | 5cf47fed592eff87f3fe244d83fab4f7b32c7068 /math/R/Makefile | |
parent | 4b5004330ae602d5786609390da956c8fb6644da (diff) | |
download | pkgsrc-9e33e67ae5c932428c6662d8e1f3b3083e288d04.tar.gz |
Changes 2.10.0:
* Package help is now converted from Rd by the R-based converters
that were first introduced in 2.9.0.
* HTML help is now generated dynamically using an HTTP server
running in the R process and listening on the loopback interface.
* polygon(), pdf() and postscript() now have a parameter
'fillOddEven' (default FALSE), which controls the mode used for
polygon fills of self-intersecting shapes.
* New debugonce() function; further,
getOption("deparse.max.lines") is now observed when debugging.
* plot() methods for "stepfun" and hence "ecdf" no longer plot
points by default for n >= 1000.
* [g]sub(*, perl=TRUE) now also supports '\E' in order to *end*
\U and \L case changes, thanks to a patch from Bill Dunlap.
* factor(), `levels<-`(), etc, now ensure that the resulting factor
levels are unique (as was always the implied intention). Factors
with duplicated levels are still constructible by low-level means,
but are now declared illegal.
* New print() (S3) method for class "function", also used for
auto-printing. Further, .Primitive functions now print and
auto-print identically.
* The print() and toLatex() methods for class "sessionInfo" now
show the locale in a nicer format and have arguments to
suppress locale information.
* In addition to previously only round(), there are other 'Math'
group (S3) methods for 'difftime', such as floor(), signif(), abs(), etc.
* For completeness, old.packages() and available.packages() allow
'type' to be specified (you could always specify 'available'
or 'contriburl').
* More...
Diffstat (limited to 'math/R/Makefile')
-rw-r--r-- | math/R/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index b6bfb716fa4..9b96388856a 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.103 2009/12/03 13:06:53 asau Exp $ +# $NetBSD: Makefile,v 1.104 2009/12/11 18:53:40 adam Exp $ -DISTNAME= R-2.7.2 -PKGREVISION= 3 +DISTNAME= R-2.10.0 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_R_CRAN:=base/R-2/} @@ -20,7 +19,7 @@ TEST_TARGET= check USE_TOOLS+= gmake gzip:run makeinfo perl:run sed unzip:run xmkmf USE_GNU_READLINE= yes # uses callback interface USE_GNU_ICONV= yes # latin1 support, iconvlist -USE_LANGUAGES= c fortran +USE_LANGUAGES= c c++ fortran USE_LIBTOOL= yes TEXINFO_REQD= 4.7 @@ -35,14 +34,15 @@ CONFIGURE_ARGS+= --without-gnome # not yet stable CONFIGURE_ARGS+= --with-system-zlib CONFIGURE_ARGS+= --with-system-bzlib CONFIGURE_ARGS+= --with-system-pcre +CONFIGURE_ARGS+= --with-system-xz # Disable Mac OS specific support used by R.app CONFIGURE_ARGS+= --disable-R-framework CONFIGURE_ARGS+= --without-aqua # Use BLAS (math/blas) -# CONFIGURE_ARGS+= --without-atlas +CONFIGURE_ARGS+= --disable-BLAS-shlib CONFIGURE_ARGS+= --with-blas CONFIGURE_ARGS+= --without-blas_risc CONFIGURE_ARGS+= --without-dxml @@ -57,10 +57,10 @@ CONFIGURE_ENV+= r_cv_complete_blas=yes # Broken test for bzlib >= 1.0.5 in R 2.7.0 CONFIGURE_ENV+= r_cv_have_bzlib=yes -CONFIGURE_ENV+= GETWD=${TOOLS_PWD_CMD:Q} +CONFIGURE_ENV+= GETWD=${TOOLS_PWD_CMD} CONFIGURE_ENV+= lt_cv_path_LD=${LD:Q} -CONFIGURE_ENV+= lt_cv_path_SED=${TOOLS_SED:Q} -CONFIGURE_ENV+= ac_cv_path_R_GZIPCMD=${TOOLS_GZIP_CMD:Q} +CONFIGURE_ENV+= lt_cv_path_SED=${TOOLS_SED} +CONFIGURE_ENV+= ac_cv_path_R_GZIPCMD=${TOOLS_GZIP_CMD} CONFIGURE_ENV+= ac_cv_path_R_UNZIPCMD=${TOOLS_PATH.unzip} # Package assumes it can append to files (specifically DESCRIPTION) that have @@ -70,7 +70,6 @@ SHAREMODE= 644 .include "../../mk/bsd.prefs.mk" # R_PAPERSIZE can be: A4, Letter, Legal, Executive -# .if defined(PAPERSIZE) R_PAPERSIZE?= ${PAPERSIZE} .else @@ -82,7 +81,6 @@ R_PAPERSIZE= Letter CONFIGURE_ENV+= R_PAPERSIZE=${R_PAPERSIZE:Q} # These macros are used during the build, so strip off the -o,-g flags. -# INSTALL_DATA= ${INSTALL} ${COPY} -m ${SHAREMODE} INSTALL_SCRIPT= ${INSTALL} ${COPY} -m ${BINMODE} @@ -94,11 +92,13 @@ CONFIGURE_ARGS+= --enable-mbcs=no .endif .include "../../archivers/bzip2/buildlink3.mk" +.include "../../archivers/xz/buildlink3.mk" .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/pcre/buildlink3.mk" .include "../../devel/readline/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" +.include "../../graphics/cairo/buildlink3.mk" .include "../../graphics/jpeg/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" .include "../../graphics/tiff/buildlink3.mk" |