1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

Upgrade to version 1.2.1

PR: 24967
Submitted by: MAINTAINER
This commit is contained in:
Kevin Lo 2001-02-11 06:45:39 +00:00
parent d4e5a3f370
commit 8baff31082
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=38198
12 changed files with 1473 additions and 846 deletions

View File

@ -1,22 +1,25 @@
# New ports collection makefile for: R (letter)
# Date created: Fri Aug 11 16:17:34 EST 2000
# Date created: Fri Feb 9 10:50:25 EST 2001
# Whom: Maurice Castro <maurice@serc.rmit.edu.au>
#
# $FreeBSD$
#
PORTNAME= R
PORTVERSION= 1.1.0
PORTVERSION= 1.2.1
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/ \
ftp://ftp.ci.tuwien.ac.at/R/src/base/ \
http://SunSITE.auc.dk/R/src/base/ \
http://www.stat.unipg.it/pub/stat/statlib/R/CRAN/src/base/ \
MASTER_SITES= http://cran.r-project.org/src/base/ \
ftp://cran.r-project.org/pub/R/src/base/ \
http://cran.at.r-project.org/src/base/ \
http://cran.ch.r-project.or/src/base/ \
http://cran.dk.r-project.org/src/base/ \
http://cran.hu.r-project.org/src/base/ \
http://cran.uk.r-project.org/src/base/ \
http://cran.us.r-project.org/src/base/ \
http://mirror.aarnet.edu.au/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://www.stat.math.ethz.ch/R-CRAN/src/base/
http://lib.stat.cmu.edu/R/CRAN/src/base/
PKGNAMESUFFIX= -${PAPERSIZE}
DISTNAME= R-${PORTVERSION}
EXTRACT_SUFX= .tgz

View File

@ -1 +1 @@
MD5 (R-1.1.0.tgz) = 85fdcf912dcf53d39ba128344081481d
MD5 (R-1.2.1.tgz) = 4906d9dafb62e7e02abad34c5a0b042f

View File

@ -1,52 +0,0 @@
#!/bin/sh
# Shell wrapper for R executable.
RHOME=PREFIX/share/R
export RHOME
ARG=$1
case ${ARG} in
RHOME)
echo ${RHOME}; exit 0 ;;
CMD)
shift; PATH=$PATH:$RHOME/cmd:$RHOME/etc exec $* ;;
SHLIB|COMPILE|INSTALL|REMOVE)
shift; exec sh ${RHOME}/etc/${ARG} $* ;;
-d|--debugger)
exec $2 ${RHOME}/bin/R.binary ;;
-h|--help|-\?)
echo "Usage: R [OPTIONS] [< INFILE] [> OUTFILE]"
echo ""
echo "Options:"
echo " --save Do save data sets at the end of the session."
echo " --no-save Don't save them."
echo " --restore Do restore previously saved data sets at startup."
echo " --no-restore Don't restore them."
echo " --no-readline Don't use readline for command-line editing."
echo " --no-site-file Don't read the site-wide Rprofile."
echo " --no-init-file Don't read the .Rprofile or ~/.Rprofile files."
echo " -v N Set the vector heap size to N megabytes."
echo " -n N Set the number of cons cells to N."
echo " -h, --help, -? Print short help message and exit."
echo " -q, --quiet Make R run as quietly as possible."
echo " -V, --version Print version info and exit."
echo " -d NAME, --debugger NAME Run R through debugger NAME."
exit 0 ;;
esac
# Default Printer Paper Size
# Choose one of the following
# R_PAPERSIZE="a4"
# R_PAPERSIZE="letter"
# R_PAPERSIZE="none"
R_PAPERSIZE=DEFAULTPAPER
export R_PAPERSIZE
# Default Print Command
# Choose one of the following
# R_PRINTCMD="lpr"
# R_PRINTCMD="lp"
R_PRINTCMD=lpr
export R_PRINTCMD
exec ${RHOME}/bin/R.binary $*

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +1,25 @@
# New ports collection makefile for: R (letter)
# Date created: Fri Aug 11 16:17:34 EST 2000
# Date created: Fri Feb 9 10:50:25 EST 2001
# Whom: Maurice Castro <maurice@serc.rmit.edu.au>
#
# $FreeBSD$
#
PORTNAME= R
PORTVERSION= 1.1.0
PORTVERSION= 1.2.1
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/ \
ftp://ftp.ci.tuwien.ac.at/R/src/base/ \
http://SunSITE.auc.dk/R/src/base/ \
http://www.stat.unipg.it/pub/stat/statlib/R/CRAN/src/base/ \
MASTER_SITES= http://cran.r-project.org/src/base/ \
ftp://cran.r-project.org/pub/R/src/base/ \
http://cran.at.r-project.org/src/base/ \
http://cran.ch.r-project.or/src/base/ \
http://cran.dk.r-project.org/src/base/ \
http://cran.hu.r-project.org/src/base/ \
http://cran.uk.r-project.org/src/base/ \
http://cran.us.r-project.org/src/base/ \
http://mirror.aarnet.edu.au/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://www.stat.math.ethz.ch/R-CRAN/src/base/
http://lib.stat.cmu.edu/R/CRAN/src/base/
PKGNAMESUFFIX= -${PAPERSIZE}
DISTNAME= R-${PORTVERSION}
EXTRACT_SUFX= .tgz

View File

@ -1 +1 @@
MD5 (R-1.1.0.tgz) = 85fdcf912dcf53d39ba128344081481d
MD5 (R-1.2.1.tgz) = 4906d9dafb62e7e02abad34c5a0b042f

View File

@ -1,52 +0,0 @@
#!/bin/sh
# Shell wrapper for R executable.
RHOME=PREFIX/share/R
export RHOME
ARG=$1
case ${ARG} in
RHOME)
echo ${RHOME}; exit 0 ;;
CMD)
shift; PATH=$PATH:$RHOME/cmd:$RHOME/etc exec $* ;;
SHLIB|COMPILE|INSTALL|REMOVE)
shift; exec sh ${RHOME}/etc/${ARG} $* ;;
-d|--debugger)
exec $2 ${RHOME}/bin/R.binary ;;
-h|--help|-\?)
echo "Usage: R [OPTIONS] [< INFILE] [> OUTFILE]"
echo ""
echo "Options:"
echo " --save Do save data sets at the end of the session."
echo " --no-save Don't save them."
echo " --restore Do restore previously saved data sets at startup."
echo " --no-restore Don't restore them."
echo " --no-readline Don't use readline for command-line editing."
echo " --no-site-file Don't read the site-wide Rprofile."
echo " --no-init-file Don't read the .Rprofile or ~/.Rprofile files."
echo " -v N Set the vector heap size to N megabytes."
echo " -n N Set the number of cons cells to N."
echo " -h, --help, -? Print short help message and exit."
echo " -q, --quiet Make R run as quietly as possible."
echo " -V, --version Print version info and exit."
echo " -d NAME, --debugger NAME Run R through debugger NAME."
exit 0 ;;
esac
# Default Printer Paper Size
# Choose one of the following
# R_PAPERSIZE="a4"
# R_PAPERSIZE="letter"
# R_PAPERSIZE="none"
R_PAPERSIZE=DEFAULTPAPER
export R_PAPERSIZE
# Default Print Command
# Choose one of the following
# R_PRINTCMD="lpr"
# R_PRINTCMD="lp"
R_PRINTCMD=lpr
export R_PRINTCMD
exec ${RHOME}/bin/R.binary $*

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +1,25 @@
# New ports collection makefile for: R (letter)
# Date created: Fri Aug 11 16:17:34 EST 2000
# Date created: Fri Feb 9 10:50:25 EST 2001
# Whom: Maurice Castro <maurice@serc.rmit.edu.au>
#
# $FreeBSD$
#
PORTNAME= R
PORTVERSION= 1.1.0
PORTVERSION= 1.2.1
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/ \
ftp://ftp.ci.tuwien.ac.at/R/src/base/ \
http://SunSITE.auc.dk/R/src/base/ \
http://www.stat.unipg.it/pub/stat/statlib/R/CRAN/src/base/ \
MASTER_SITES= http://cran.r-project.org/src/base/ \
ftp://cran.r-project.org/pub/R/src/base/ \
http://cran.at.r-project.org/src/base/ \
http://cran.ch.r-project.or/src/base/ \
http://cran.dk.r-project.org/src/base/ \
http://cran.hu.r-project.org/src/base/ \
http://cran.uk.r-project.org/src/base/ \
http://cran.us.r-project.org/src/base/ \
http://mirror.aarnet.edu.au/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://www.stat.math.ethz.ch/R-CRAN/src/base/
http://lib.stat.cmu.edu/R/CRAN/src/base/
PKGNAMESUFFIX= -${PAPERSIZE}
DISTNAME= R-${PORTVERSION}
EXTRACT_SUFX= .tgz

View File

@ -1 +1 @@
MD5 (R-1.1.0.tgz) = 85fdcf912dcf53d39ba128344081481d
MD5 (R-1.2.1.tgz) = 4906d9dafb62e7e02abad34c5a0b042f

View File

@ -1,52 +0,0 @@
#!/bin/sh
# Shell wrapper for R executable.
RHOME=PREFIX/share/R
export RHOME
ARG=$1
case ${ARG} in
RHOME)
echo ${RHOME}; exit 0 ;;
CMD)
shift; PATH=$PATH:$RHOME/cmd:$RHOME/etc exec $* ;;
SHLIB|COMPILE|INSTALL|REMOVE)
shift; exec sh ${RHOME}/etc/${ARG} $* ;;
-d|--debugger)
exec $2 ${RHOME}/bin/R.binary ;;
-h|--help|-\?)
echo "Usage: R [OPTIONS] [< INFILE] [> OUTFILE]"
echo ""
echo "Options:"
echo " --save Do save data sets at the end of the session."
echo " --no-save Don't save them."
echo " --restore Do restore previously saved data sets at startup."
echo " --no-restore Don't restore them."
echo " --no-readline Don't use readline for command-line editing."
echo " --no-site-file Don't read the site-wide Rprofile."
echo " --no-init-file Don't read the .Rprofile or ~/.Rprofile files."
echo " -v N Set the vector heap size to N megabytes."
echo " -n N Set the number of cons cells to N."
echo " -h, --help, -? Print short help message and exit."
echo " -q, --quiet Make R run as quietly as possible."
echo " -V, --version Print version info and exit."
echo " -d NAME, --debugger NAME Run R through debugger NAME."
exit 0 ;;
esac
# Default Printer Paper Size
# Choose one of the following
# R_PAPERSIZE="a4"
# R_PAPERSIZE="letter"
# R_PAPERSIZE="none"
R_PAPERSIZE=DEFAULTPAPER
export R_PAPERSIZE
# Default Print Command
# Choose one of the following
# R_PRINTCMD="lpr"
# R_PRINTCMD="lp"
R_PRINTCMD=lpr
export R_PRINTCMD
exec ${RHOME}/bin/R.binary $*

File diff suppressed because it is too large Load Diff