fafc727081
NEW FEATURES o new target for R installation testing : make strict-tests. o symnum(x) now nicely codes logical x. o convolve() has a new type = c("circular", "open", "filter") argument allowing more than the only circular convolution. o par(xpd) now has three settings: FALSE (clip to plot region), TRUE (clip to figure region), or NA (clip to device region). o zapsmall(x) works for complex x. o new global variable R.version.string (for plots & reports). Deprecated version & Version for new R.version & R.Version. o R CMD Rd2dvi has builtin "Usage" help and works for multiple files. Useful for automatic reference manual of a package. (doc/manual/lib2tex is more efficient for installed packages, however). BUG FIXES o power() is now fully implemented and documented. o A couple of problems with group generic operations. o A bug which meant that it was not possible to add elements to zero length lists in the obvious way has been fixed. x <- list(); x[[1]] <- 10 x <- list(); x[["a"]] <- 11 both now work. o save.image() ignored dot-names. (esp. .First()) o lab= argument to plot() misinterpreted by axis() via ... passing o NULL labels in text() caused segfault o matrix(f,...) with f a factor now coerces to character o documentation errors for substitute and is.vector, minor fixups for trig and nlm o Background colours are set properly on X11 devices with colortype="pseudo": sometimes they were not allocated separately. o C() works (again?) for a single argument. o is.na() didn't work properly for "list" arguments. o symnum() sometimes failed with arrays of rank >= 3. o in some cases one could get nonblack color instead of black on 2nd x11() window. o influence.measures(.) $ is.influential was wrong on the cooks.distance. o printing of complex NaN/Inf was wrong as well. o printing of complex named vectors had a wrong initial space. o allow trailing space in character->numeric coercion o library() gave wrong "masked" warnings in some cases. o par(xpd) semantics were not compatible with S. o rect() output was not clipped in PostScript. o par(pin=c(width, height)) was behaving as par(pin=c(width, width)). o Non-blank separated data files didn't have their 1st field handled properly. o "aux" directory moved to "tools" to avoid difficulties on Windows. o structure() clobbered factors with missing levels. o pmatch() misbehaved on duplicate matches. o R CMD Rd2dvi <file.Rd> works again. o logical binops tried to set time series parameters before dimensions. o upped the BUFSIZE in model.c (NOT proper long-term solution). o dput(), dump() and deparse() now always use DBL_DIG (=15) digits for numeric formatting. o chull() now works for vertical borders, such as in chull(c(1,1,2),3:1).
60 lines
1.6 KiB
Makefile
60 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.9 1999/08/26 23:52:21 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= R-0.64.2
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://lib.stat.cmu.edu/R/CRAN/src/base/ \
|
|
ftp://ftp.biostat.washington.edu/mirrors/R/CRAN/src/base/ \
|
|
http://cran.stat.wisc.edu/src/base/ \
|
|
http://SunSITE.auc.dk/R/src/base/ \
|
|
http://www.stat.unipg.it/pub/stat/statlib/R/CRAN/src/base/ \
|
|
ftp://ftp.u-aizu.ac.jp/pub/lang/R/CRAN/src/base/ \
|
|
ftp://dola.snu.ac.kr/pub/R/CRAN/src/base/ \
|
|
http://stat.ethz.ch/CRAN/src/base/ \
|
|
http://www.stats.bris.ac.uk/R/src/base/ \
|
|
ftp://ftp.ci.tuwien.ac.at/pub/R/src/base/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
HOMEPAGE= http://lib.stat.cmu.edu/R/CRAN/
|
|
|
|
.if !exists(/usr/bin/f77)
|
|
DEPENDS+= f2c-19980913:../../lang/f2c
|
|
.endif
|
|
DEPENDS+= readline-4.0:../../devel/readline
|
|
|
|
USE_X11= yes
|
|
USE_PERL5= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--enable-readline --with-x
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# R_PAPERSIZE can be: A4, Letter, Legal, Executive
|
|
#
|
|
.if defined(PAPERSIZE)
|
|
R_PAPERSIZE?= ${PAPERSIZE}
|
|
.else
|
|
R_PAPERSIZE?= A4
|
|
.endif
|
|
.if (${R_PAPERSIZE} == "Letterdj")
|
|
R_PAPERSIZE= Letter
|
|
.endif
|
|
|
|
.if (${OPSYS} == "SunOS")
|
|
BSD_INSTALL?= /usr/ucb/install
|
|
.else
|
|
BSD_INSTALL?= /usr/bin/install
|
|
.endif
|
|
INSTALL_OWN_SCRIPT= ${BSD_INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
|
INSTALL_SCRIPT= ${BSD_INSTALL} ${COPY} -m ${BINMODE}
|
|
INSTALL_DATA= ${BSD_INSTALL} ${COPY} -m 644
|
|
LDFLAGS+= -L${LOCALBASE}/lib # for -lreadline
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
R_PAPERSIZE="${R_PAPERSIZE}"
|
|
MAKE_ENV+= INSTALL_OWN_SCRIPT="${INSTALL_OWN_SCRIPT}"
|
|
|
|
post-install:
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/R
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|