2014-02-17 18:11:07 +01:00
|
|
|
# $NetBSD: Makefile,v 1.145 2014/02/17 17:11:07 jperkin Exp $
|
1998-12-04 12:36:03 +01:00
|
|
|
|
Update to R 3.0.2
* The NEWS files have been re-organized.
This file contains news for R >= 3.0.0: news for the 0.x.y, 1.x.y
and 2.x.y releases is in files NEWS.0, NEWS.1 and NEWS.2. The
latter files are now installed when R is installed. An HTML
version of news from 2.10.0 to 2.15.3 is available as
doc/html/NEWS.2.html.
* sum() for integer arguments now uses an integer accumulator of at
least 64 bits and so will be more accurate in the very rare case
that a cumulative sum exceeds 2^53 (necessarily summing more than
4 million elements).
* The example() and tools::Rd2ex() functions now have parameters to
allow them to ignore \dontrun markup in examples. (Suggested by
Peter Solymos.)
* str(x) is considerably faster for very large lists, or factors
with 100,000 levels, the latter as in PR#15337.
* col2rgb() now converts factors to character strings not integer
codes (suggested by Bryan Hanson).
* tail(warnings()) now works, via the new `[` method.
* There is now support for the LaTeX style file zi4.sty which has
in some distributions replaced inconsolata.sty.
* unlist(x) now typically returns all non-list xs unchanged, not
just the "vector" ones. Consequently, format(lst) now also works
when the list lst has non-vector elements.
* The tools::getVignetteInfo() function has been added to give
information about installed vignettes.
* New assertCondition(), etc. utilities in tools, useful for
testing.
* Profiling now records non-inlined calls from byte-compiled code
to BUILTIN functions.
* Various functions in stats and elsewhere that use non-standard
evaluation are now more careful to follow the namespace scoping
rules. E.g. stats::lm() can now find stats::model.frame() even
if stats is not on the search path or if some package defines a
function of that name.
* If an invalid/corrupt .Random.seed object is encountered in the
workspace it is ignored with a warning rather than giving an
error. (This allows R itself to rely on a working RNG, e.g. to
choose a random port.)
* seq() and seq.int() give more explicit error messages if called
with invalid (e.g. NaN) inputs.
* When parse() finds a syntax error, it now makes partial parse
information available up to the location of the error. (Request
of Reijo Sund.)
* Methods invoked by NextMethod() had a different dynamic parent to
the generic. This was causing trouble where S3 methods invoked
via lazy evaluation could lose track of their generic.
(PR#15267)
* Code for the negative binomial distribution now treats the case
size == 0 as a one-point distribution at zero.
* abbreviate() handles without warning non-ASCII input strings
which require no abbreviation.
* read.dcf() no longer has a limit of 8191 bytes per line. (Wish of
PR#15250.)
* formatC(x) no longer copies the class of x to the result, to
avoid misuse creating invalid objects as in PR#15303. A warning
is given if a class is discarded.
* Dataset npk has been copied from MASS to allow more tests to be
run without recommended packages being installed.
* The initialization of the regression coefficients for
non-degenerate differenced models in arima() has been changed and
in some examples avoids a local maximum. (PR#15396)
* termplot() now has an argument transform.x to control the display
of individual terms in the plot. (PR#15329)
* format() now supports digits = 0, to display nsmall decimal
places.
* There is a new read-only par() parameter called "page", which
returns a logical value indicating whether the next plot.new()
call will start a new page.
* Processing Sweave and Rd documents to PDF now renders backticks
* utils::modifyList() gets a new argument keep.null allowing NULL
components in the replacement to be retained, instead of causing
corresponding components to be deleted.
* tools::pkgVignettes() gains argument check; if set to TRUE, it
will warn when it appears a vignette requests a non-existent
vignette engine.
2014-02-06 11:57:21 +01:00
|
|
|
DISTNAME= R-3.0.2
|
2000-04-19 17:30:05 +02:00
|
|
|
CATEGORIES= math
|
2013-08-13 21:53:30 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_R_CRAN:=base/R-3/}
|
2000-04-19 17:30:05 +02:00
|
|
|
|
2003-07-17 23:41:05 +02:00
|
|
|
MAINTAINER= markd@NetBSD.org
|
2000-11-03 02:14:51 +01:00
|
|
|
HOMEPAGE= http://www.R-project.org/
|
2001-08-13 12:25:03 +02:00
|
|
|
COMMENT= Statistical language for data analysis and graphics
|
2011-11-20 05:57:02 +01:00
|
|
|
LICENSE= gnu-gpl-v2
|
2000-04-19 17:30:05 +02:00
|
|
|
|
2002-06-16 04:56:50 +02:00
|
|
|
#needs FPC code not found in older versions of NetBSD
|
|
|
|
NOT_FOR_PLATFORM= NetBSD-1.[0-4]*-alpha NetBSD-1.5-alpha \
|
|
|
|
NetBSD-1.5.*-alpha NetBSD-1.5[A-U]-alpha
|
|
|
|
|
2004-05-18 13:27:29 +02:00
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
|
2013-04-06 05:16:50 +02:00
|
|
|
BUILD_TARGET= all info
|
|
|
|
INSTALL_TARGET= install install-info
|
2003-12-03 13:05:18 +01:00
|
|
|
TEST_TARGET= check
|
2007-09-08 15:44:48 +02:00
|
|
|
USE_TOOLS+= gmake gzip:run makeinfo perl:run sed unzip:run xmkmf
|
2011-12-07 11:18:23 +01:00
|
|
|
USE_TOOLS+= pkg-config
|
2007-11-03 21:14:39 +01:00
|
|
|
USE_GNU_ICONV= yes # latin1 support, iconvlist
|
2011-12-04 19:42:02 +01:00
|
|
|
USE_LANGUAGES= c c++ fortran
|
2005-12-02 00:11:26 +01:00
|
|
|
USE_LIBTOOL= yes
|
2007-03-28 13:06:29 +02:00
|
|
|
TEXINFO_REQD= 4.7
|
2013-04-06 05:16:50 +02:00
|
|
|
INFO_FILES= yes
|
2000-04-19 17:30:05 +02:00
|
|
|
|
2011-03-29 20:07:50 +02:00
|
|
|
PTHREAD_AUTO_VARS= yes
|
|
|
|
|
2005-09-28 22:52:18 +02:00
|
|
|
GNU_CONFIGURE= yes
|
Update R to version 1.6.1.
Pkgsrc changes:
Now builds the libR.so and provides a buildlink2.mk for packages that want
to use it. From suggestions from Kent Polk.
Recommended library set is now included in the base package.
Changes:
CHANGES IN R VERSION 1.6.1
NEW FEATURES
o Added a few "trivial and obviously missing" functions to tcltk:
tkchooseDirectory, tkpopup, tkdialog, tkread
o barplot() has a new argument `axis.lty', which if set to 1
allows the pre-1.6.0 behaviour of plotting the axis and tick
marks for the categorical axis. (This was apparently not
intentional, but axis() used to ignore lty=0.)
The argument `border' is no longer ".NotYetUsed".
CHANGES IN R VERSION 1.6.0
USER-VISIBLE CHANGES
o The default colour palette now has "grey" instead of "white"
in location 8. See palette().
o grid(nx) behaves differently (but the same as in R versions <= 0.64).
NEW FEATURES
o Preparations for name space support:
o The objects created in the methods package to represent
classes, generic functions, method definitions, and
inheritance relations now themselves belong to true classes. In
particular, the "classRepresentation" objects follow the description
in "Programming with Data" (section 7.6).
o Other additions and changes to the methods package:
o New methods ([[, print, str) and extended plot() method
(incl. logical `horiz') for "dendrogram" class.
o sprintf() now checks the agreement between formats and object
types, and handles special values (NA, Inf, ...) correctly.
o chol() now uses a tolerance for non-positive-definiteness and
so should give more consistent results across platforms.
o New function agrep() for approximate (fuzzy) string matching.
o help.search() can now use both approximate (fuzzy) and regular
expression matching. By default, if the pattern to be matched
consists of only alphanumeric characters, whitespace or a dash,
approximate matching is used.
o axis() has three new optional arguments `col', `lty', and `lwd'
all for drawing the axis line and tick marks.
o Function vcov() (formerly in MASS), a generic function to
return the variance-covariance matrix of the parameter
estimates of a fitted model.
o duplicated() and unique() have methods for matrices and arrays
(based on ideas from Jens Oehlschl<E4>gel).
o Internally memory sizes and counts of cons cells are now stored
in unsigned longs. This allows memory limits to be set and
objects created in the range 2-4Gb on 32-bit platforms, and
allows 64-bit platforms to use much larger amounts of memory.
o Command-line flags to set memory can now use the suffix `G'
for gigabytes. The setting of maximum vsize is now only
limited by the platform's address space.
o All warning and error messages are truncated to a length set
by options(warning.length=), defaulting to 1000. (Previously
most (but not quite all) were truncated at 8192 characters.)
o [dpqr]gamma() check for shape parameter > 0.
o as.POSIX[cl]t can now convert logical NAs.
o All installed packages (even those shipped with R) are
given a `Built' field in the DESCRIPTION file.
o as.data.frame() now coerces logical matrices into logical
columns (rather than factors).
o [[<-.data.frame no longer coerces character replacement values
to factor. This is consistent with using $ to replace and
with S4.
o library() attempts to detect improperly installed packages, so
as from this version an installed package must have a
DESCRIPTION file and that file must have been stamped with a
`Built:' line (which was introduced in 1.2.0). Under
Unix-alikes, the platform is checked against that used for
installation.
o print.factor() has new arguments `max.levels' (with a smart default)
and `width'. print.ordered() is no longer needed.
o RNGkind() has an additional option for normal random generators:
"Inversion".
o data.frame() recycles factors and "AsIs" objects as well as
atomic vectors.
o rect() accepts additional graphics parameters through a ...
argument (in the same way as polygon).
o strwidth/strheight() now coerce their first argument in exactly
the same way text() does, so a wider range of inputs is allowed.
o prompt()'s default and data.frame methods have a new 3rd argument
`name' allowing them to used more easily in scripts and loops.
o rgb() has a new `maxColorValue' argument, allowing r,g,b in [0,M],
particularly in {0:255}, efficiently and non-error-prone.
o summaryRprof() provides the functionality of R CMD Rprof in R
code, though more slowly.
o pdf() now uses PDF not R code for clipping, which ensures that
partially visible text strings are (partially) shown.
o Each R session uses a per-session temporary directory which
is removed at normal termination. The directory name is given
by the tempdir() function, and filenames returned by
tempfile() will be within that directory.
o help.start() on Unix now uses a .R subdirectory of the
per-session temporary directory and not ~/.R. A side effect
is that ~/.R is now never deleted by R.
o cbind/rbind() used to ignore all zero-length vectors, an
undocumented quirk for S-compatibility. This caused problems
when combining zero-extent matrices and zero-length vectors, and
now zero-length vectors are ignored unless the result would
have zero rows/columns.
o plot.spec(x) now also works for other x than AR and Pgram results.
o New functions La.chol() and La.chol2inv() for Cholesky
decomposition and inverse of positive definite matrices using
Lapack.
o Changes to the tcltk package
o New function axTicks() returning tick mark locations like axis().
o grid() has a more sensible default behavior. Tick axis alignment
only happens when no numbers of grid cells are specified. New
arguments lwd and equilogs; nx/ny = NA for not drawing, see ?grid.
o installed.packages() has a new argument `priority'.
o termplot() uses factor levels rather than 1,2,3... for x-axis.
o The trace() function has been robustified and a new function
tracingState() added to turn tracing temporarily on and off.
o New cophenetic() in "mva" as utility for hierarchical clustering.
o p.adjust() has two new methods, 'Hommel' and 'FDR', contributed
by Gordon Smyth <smyth@wehi.edu.au>.
o stars() now has add and plot arguments.
and lots of bug fixes.
2002-12-10 12:58:10 +01:00
|
|
|
CONFIGURE_ARGS+= --enable-R-shlib
|
2000-08-12 01:02:37 +02:00
|
|
|
CONFIGURE_ARGS+= --with-x
|
|
|
|
CONFIGURE_ARGS+= --with-readline
|
2001-07-23 15:14:44 +02:00
|
|
|
CONFIGURE_ARGS+= --with-tcltk
|
2002-09-09 02:59:00 +02:00
|
|
|
CONFIGURE_ARGS+= --with-tcl-config=${BUILDLINK_PREFIX.tcl}/lib/tclConfig.sh
|
|
|
|
CONFIGURE_ARGS+= --with-tk-config=${BUILDLINK_PREFIX.tk}/lib/tkConfig.sh
|
2001-07-23 15:14:44 +02:00
|
|
|
CONFIGURE_ARGS+= --without-gnome # not yet stable
|
2005-12-11 15:37:12 +01:00
|
|
|
CONFIGURE_ARGS+= --with-system-zlib
|
|
|
|
CONFIGURE_ARGS+= --with-system-bzlib
|
|
|
|
CONFIGURE_ARGS+= --with-system-pcre
|
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...
2009-12-11 19:53:40 +01:00
|
|
|
CONFIGURE_ARGS+= --with-system-xz
|
2001-07-23 15:14:44 +02:00
|
|
|
|
2008-07-21 01:18:28 +02:00
|
|
|
# Disable Mac OS specific support used by R.app
|
|
|
|
CONFIGURE_ARGS+= --disable-R-framework
|
|
|
|
CONFIGURE_ARGS+= --without-aqua
|
|
|
|
|
2001-07-23 15:14:44 +02:00
|
|
|
# Use BLAS (math/blas)
|
2000-08-12 01:02:37 +02:00
|
|
|
CONFIGURE_ARGS+= --without-atlas
|
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...
2009-12-11 19:53:40 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-BLAS-shlib
|
2003-12-04 14:42:37 +01:00
|
|
|
CONFIGURE_ARGS+= --with-blas
|
2000-08-12 01:02:37 +02:00
|
|
|
CONFIGURE_ARGS+= --without-blas_risc
|
2000-04-19 17:30:05 +02:00
|
|
|
CONFIGURE_ARGS+= --without-dxml
|
2000-08-12 01:02:37 +02:00
|
|
|
CONFIGURE_ARGS+= --without-libmoto
|
|
|
|
|
2001-07-23 15:14:44 +02:00
|
|
|
# Work around missing MAIN__() definition used in -lF77 by AC_CHECK_LIB.
|
2008-08-31 14:37:27 +02:00
|
|
|
# and other failures due to not linking to support libs during testing
|
2001-07-23 15:14:44 +02:00
|
|
|
CONFIGURE_ENV+= ac_cv_lib_blas_dgemm=yes
|
|
|
|
CONFIGURE_ENV+= ac_cv_lib_blas_dgemm_=yes
|
2008-08-31 14:37:27 +02:00
|
|
|
CONFIGURE_ENV+= r_cv_complete_blas=yes
|
2000-08-12 01:02:37 +02:00
|
|
|
|
2008-04-26 04:39:27 +02:00
|
|
|
# Broken test for bzlib >= 1.0.5 in R 2.7.0
|
|
|
|
CONFIGURE_ENV+= r_cv_have_bzlib=yes
|
|
|
|
|
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...
2009-12-11 19:53:40 +01:00
|
|
|
CONFIGURE_ENV+= GETWD=${TOOLS_PWD_CMD}
|
2005-06-11 04:37:00 +02:00
|
|
|
CONFIGURE_ENV+= lt_cv_path_LD=${LD:Q}
|
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...
2009-12-11 19:53:40 +01:00
|
|
|
CONFIGURE_ENV+= lt_cv_path_SED=${TOOLS_SED}
|
|
|
|
CONFIGURE_ENV+= ac_cv_path_R_GZIPCMD=${TOOLS_GZIP_CMD}
|
2007-09-08 15:44:48 +02:00
|
|
|
CONFIGURE_ENV+= ac_cv_path_R_UNZIPCMD=${TOOLS_PATH.unzip}
|
2010-05-06 09:33:40 +02:00
|
|
|
CONFIGURE_ENV+= r_cv_prog_f77_flag_mieee=no
|
Update to R 3.0.2
* The NEWS files have been re-organized.
This file contains news for R >= 3.0.0: news for the 0.x.y, 1.x.y
and 2.x.y releases is in files NEWS.0, NEWS.1 and NEWS.2. The
latter files are now installed when R is installed. An HTML
version of news from 2.10.0 to 2.15.3 is available as
doc/html/NEWS.2.html.
* sum() for integer arguments now uses an integer accumulator of at
least 64 bits and so will be more accurate in the very rare case
that a cumulative sum exceeds 2^53 (necessarily summing more than
4 million elements).
* The example() and tools::Rd2ex() functions now have parameters to
allow them to ignore \dontrun markup in examples. (Suggested by
Peter Solymos.)
* str(x) is considerably faster for very large lists, or factors
with 100,000 levels, the latter as in PR#15337.
* col2rgb() now converts factors to character strings not integer
codes (suggested by Bryan Hanson).
* tail(warnings()) now works, via the new `[` method.
* There is now support for the LaTeX style file zi4.sty which has
in some distributions replaced inconsolata.sty.
* unlist(x) now typically returns all non-list xs unchanged, not
just the "vector" ones. Consequently, format(lst) now also works
when the list lst has non-vector elements.
* The tools::getVignetteInfo() function has been added to give
information about installed vignettes.
* New assertCondition(), etc. utilities in tools, useful for
testing.
* Profiling now records non-inlined calls from byte-compiled code
to BUILTIN functions.
* Various functions in stats and elsewhere that use non-standard
evaluation are now more careful to follow the namespace scoping
rules. E.g. stats::lm() can now find stats::model.frame() even
if stats is not on the search path or if some package defines a
function of that name.
* If an invalid/corrupt .Random.seed object is encountered in the
workspace it is ignored with a warning rather than giving an
error. (This allows R itself to rely on a working RNG, e.g. to
choose a random port.)
* seq() and seq.int() give more explicit error messages if called
with invalid (e.g. NaN) inputs.
* When parse() finds a syntax error, it now makes partial parse
information available up to the location of the error. (Request
of Reijo Sund.)
* Methods invoked by NextMethod() had a different dynamic parent to
the generic. This was causing trouble where S3 methods invoked
via lazy evaluation could lose track of their generic.
(PR#15267)
* Code for the negative binomial distribution now treats the case
size == 0 as a one-point distribution at zero.
* abbreviate() handles without warning non-ASCII input strings
which require no abbreviation.
* read.dcf() no longer has a limit of 8191 bytes per line. (Wish of
PR#15250.)
* formatC(x) no longer copies the class of x to the result, to
avoid misuse creating invalid objects as in PR#15303. A warning
is given if a class is discarded.
* Dataset npk has been copied from MASS to allow more tests to be
run without recommended packages being installed.
* The initialization of the regression coefficients for
non-degenerate differenced models in arima() has been changed and
in some examples avoids a local maximum. (PR#15396)
* termplot() now has an argument transform.x to control the display
of individual terms in the plot. (PR#15329)
* format() now supports digits = 0, to display nsmall decimal
places.
* There is a new read-only par() parameter called "page", which
returns a logical value indicating whether the next plot.new()
call will start a new page.
* Processing Sweave and Rd documents to PDF now renders backticks
* utils::modifyList() gets a new argument keep.null allowing NULL
components in the replacement to be retained, instead of causing
corresponding components to be deleted.
* tools::pkgVignettes() gains argument check; if set to TRUE, it
will warn when it appears a vignette requests a non-existent
vignette engine.
2014-02-06 11:57:21 +01:00
|
|
|
CONFIGURE_ENV+= ac_cv_path_PDFLATEX=""
|
2005-06-11 04:37:00 +02:00
|
|
|
|
2011-05-06 21:42:48 +02:00
|
|
|
# We don't want "lib64"
|
|
|
|
CONFIGURE_ENV+= LIBnn=lib
|
|
|
|
|
2004-05-08 00:47:26 +02:00
|
|
|
# Package assumes it can append to files (specifically DESCRIPTION) that have
|
|
|
|
# been installed SHAREMODE
|
|
|
|
SHAREMODE= 644
|
|
|
|
|
1998-12-04 12:36:03 +01:00
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
2014-02-17 18:11:07 +01:00
|
|
|
.if ${OPSYS} == "Darwin"
|
|
|
|
CONFIGURE_ARGS+= --disable-openmp
|
|
|
|
.endif
|
|
|
|
|
1998-12-04 12:36:03 +01:00
|
|
|
# R_PAPERSIZE can be: A4, Letter, Legal, Executive
|
|
|
|
.if defined(PAPERSIZE)
|
2000-04-19 17:30:05 +02:00
|
|
|
R_PAPERSIZE?= ${PAPERSIZE}
|
1999-06-09 02:45:08 +02:00
|
|
|
.else
|
2000-04-19 17:30:05 +02:00
|
|
|
R_PAPERSIZE?= A4
|
1999-05-26 01:45:05 +02:00
|
|
|
.endif
|
1998-12-04 12:36:03 +01:00
|
|
|
.if (${R_PAPERSIZE} == "Letterdj")
|
2000-04-19 17:30:05 +02:00
|
|
|
R_PAPERSIZE= Letter
|
1998-12-04 12:36:03 +01:00
|
|
|
.endif
|
2005-12-05 21:49:47 +01:00
|
|
|
CONFIGURE_ENV+= R_PAPERSIZE=${R_PAPERSIZE:Q}
|
1998-12-04 12:36:03 +01:00
|
|
|
|
2000-08-12 01:02:37 +02:00
|
|
|
# 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}
|
2000-04-19 17:30:05 +02:00
|
|
|
|
Update to R 3.0.2
* The NEWS files have been re-organized.
This file contains news for R >= 3.0.0: news for the 0.x.y, 1.x.y
and 2.x.y releases is in files NEWS.0, NEWS.1 and NEWS.2. The
latter files are now installed when R is installed. An HTML
version of news from 2.10.0 to 2.15.3 is available as
doc/html/NEWS.2.html.
* sum() for integer arguments now uses an integer accumulator of at
least 64 bits and so will be more accurate in the very rare case
that a cumulative sum exceeds 2^53 (necessarily summing more than
4 million elements).
* The example() and tools::Rd2ex() functions now have parameters to
allow them to ignore \dontrun markup in examples. (Suggested by
Peter Solymos.)
* str(x) is considerably faster for very large lists, or factors
with 100,000 levels, the latter as in PR#15337.
* col2rgb() now converts factors to character strings not integer
codes (suggested by Bryan Hanson).
* tail(warnings()) now works, via the new `[` method.
* There is now support for the LaTeX style file zi4.sty which has
in some distributions replaced inconsolata.sty.
* unlist(x) now typically returns all non-list xs unchanged, not
just the "vector" ones. Consequently, format(lst) now also works
when the list lst has non-vector elements.
* The tools::getVignetteInfo() function has been added to give
information about installed vignettes.
* New assertCondition(), etc. utilities in tools, useful for
testing.
* Profiling now records non-inlined calls from byte-compiled code
to BUILTIN functions.
* Various functions in stats and elsewhere that use non-standard
evaluation are now more careful to follow the namespace scoping
rules. E.g. stats::lm() can now find stats::model.frame() even
if stats is not on the search path or if some package defines a
function of that name.
* If an invalid/corrupt .Random.seed object is encountered in the
workspace it is ignored with a warning rather than giving an
error. (This allows R itself to rely on a working RNG, e.g. to
choose a random port.)
* seq() and seq.int() give more explicit error messages if called
with invalid (e.g. NaN) inputs.
* When parse() finds a syntax error, it now makes partial parse
information available up to the location of the error. (Request
of Reijo Sund.)
* Methods invoked by NextMethod() had a different dynamic parent to
the generic. This was causing trouble where S3 methods invoked
via lazy evaluation could lose track of their generic.
(PR#15267)
* Code for the negative binomial distribution now treats the case
size == 0 as a one-point distribution at zero.
* abbreviate() handles without warning non-ASCII input strings
which require no abbreviation.
* read.dcf() no longer has a limit of 8191 bytes per line. (Wish of
PR#15250.)
* formatC(x) no longer copies the class of x to the result, to
avoid misuse creating invalid objects as in PR#15303. A warning
is given if a class is discarded.
* Dataset npk has been copied from MASS to allow more tests to be
run without recommended packages being installed.
* The initialization of the regression coefficients for
non-degenerate differenced models in arima() has been changed and
in some examples avoids a local maximum. (PR#15396)
* termplot() now has an argument transform.x to control the display
of individual terms in the plot. (PR#15329)
* format() now supports digits = 0, to display nsmall decimal
places.
* There is a new read-only par() parameter called "page", which
returns a logical value indicating whether the next plot.new()
call will start a new page.
* Processing Sweave and Rd documents to PDF now renders backticks
* utils::modifyList() gets a new argument keep.null allowing NULL
components in the replacement to be retained, instead of causing
corresponding components to be deleted.
* tools::pkgVignettes() gains argument check; if set to TRUE, it
will warn when it appears a vignette requests a non-existent
vignette engine.
2014-02-06 11:57:21 +01:00
|
|
|
## to build NEWS.pdf
|
|
|
|
#BUILD_DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin
|
|
|
|
#BUILD_DEPENDS+= tex-metafont-[0-9]*:../../fonts/tex-metafont
|
|
|
|
#BUILD_DEPENDS+= tex-ae-[0-9]*:../../fonts/tex-ae
|
|
|
|
#BUILD_DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec
|
|
|
|
#BUILD_DEPENDS+= tex-tools-[0-9]*:../../print/tex-tools
|
|
|
|
#BUILD_DEPENDS+= tex-url-[0-9]*:../../print/tex-url
|
|
|
|
#BUILD_DEPENDS+= tex-oberdiek-[0-9]*:../../print/tex-oberdiek
|
|
|
|
#BUILD_DEPENDS+= tex-amsfonts-[0-9]*:../../fonts/tex-amsfonts
|
|
|
|
#BUILD_DEPENDS+= tex-cm-[0-9]*:../../fonts/tex-cm
|
|
|
|
#BUILD_DEPENDS+= tex-cm-super-[0-9]*:../../fonts/tex-cm-super
|
|
|
|
#BUILD_DEPENDS+= tex-fontname-[0-9]*:../../fonts/tex-fontname
|
|
|
|
#BUILD_DEPENDS+= tex-graphics-[0-9]*:../../print/tex-graphics
|
|
|
|
#BUILD_DEPENDS+= tex-hyperref-[0-9]*:../../print/tex-hyperref
|
|
|
|
#BUILD_DEPENDS+= tex-ifluatex-[0-9]*:../../print/tex-ifluatex
|
|
|
|
#BUILD_DEPENDS+= tex-ifxetex-[0-9]*:../../print/tex-ifxetex
|
|
|
|
#BUILD_DEPENDS+= tex-latex-[0-9]*:../../print/tex-latex
|
|
|
|
#BUILD_DEPENDS+= tex-latexconfig-[0-9]*:../../print/tex-latexconfig
|
|
|
|
#BUILD_DEPENDS+= tex-mptopdf-[0-9]*:../../graphics/tex-mptopdf
|
|
|
|
#BUILD_DEPENDS+= tex-pdftex-def-[0-9]*:../../print/tex-pdftex
|
2011-12-12 07:49:26 +01:00
|
|
|
|
2011-12-11 19:41:47 +01:00
|
|
|
|
2008-04-26 04:39:27 +02:00
|
|
|
BUILDLINK_API_DEPENDS.zlib+= zlib>=1.2.3
|
|
|
|
BUILDLINK_API_DEPENDS.bzip2+= bzip2>=1.0.5
|
2005-01-12 23:50:20 +01:00
|
|
|
|
2005-05-19 15:12:52 +02:00
|
|
|
.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M1.[0-6]*)
|
|
|
|
CONFIGURE_ARGS+= --enable-mbcs=no
|
|
|
|
.endif
|
|
|
|
|
2005-01-12 23:50:20 +01:00
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
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...
2009-12-11 19:53:40 +01:00
|
|
|
.include "../../archivers/xz/buildlink3.mk"
|
2005-09-20 14:47:14 +02:00
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
2005-12-02 00:11:26 +01:00
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
2005-01-12 23:50:20 +01:00
|
|
|
.include "../../devel/pcre/buildlink3.mk"
|
2013-07-15 04:02:17 +02:00
|
|
|
# uses callback interface
|
2005-01-12 23:50:20 +01:00
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
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...
2009-12-11 19:53:40 +01:00
|
|
|
.include "../../graphics/cairo/buildlink3.mk"
|
2010-12-23 12:44:24 +01:00
|
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
2005-01-12 23:50:20 +01:00
|
|
|
.include "../../graphics/png/buildlink3.mk"
|
2008-04-26 04:39:27 +02:00
|
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
2005-01-12 23:50:20 +01:00
|
|
|
.include "../../math/blas/buildlink3.mk"
|
2007-01-08 16:00:36 +01:00
|
|
|
.include "../../x11/libXt/buildlink3.mk"
|
2005-01-12 23:50:20 +01:00
|
|
|
.include "../../x11/tk/buildlink3.mk"
|
|
|
|
|
2007-03-14 12:50:17 +01:00
|
|
|
INSTALL_TEMPLATES+= ../../math/R/files/pkg-index.tmpl
|
|
|
|
DEINSTALL_TEMPLATES+= ../../math/R/files/pkg-index.tmpl
|
|
|
|
PRINT_PLIST_AWK+= /^lib\/R\/doc\/html\/packages.html$$/ { next; }
|
|
|
|
|
2008-04-26 04:39:27 +02:00
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
1998-12-04 12:36:03 +01:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|