diff options
author | steve <steve@FreeBSD.org> | 1998-06-28 23:37:44 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-06-28 23:37:44 +0000 |
commit | 0598e985ff62e83465b3d0343395fe87feee0c19 (patch) | |
tree | 6f5fa15846b050e4a703d71e66d654adc29128b4 /math/R-letter/Makefile | |
parent | a0ff6cc5b201e681923884d2954097050d9b853c (diff) | |
download | FreeBSD-ports-0598e985ff62e83465b3d0343395fe87feee0c19.zip FreeBSD-ports-0598e985ff62e83465b3d0343395fe87feee0c19.tar.gz |
Update to version 0.62.1.
PR: 7025
Submitted by: maintainer
Diffstat (limited to 'math/R-letter/Makefile')
-rw-r--r-- | math/R-letter/Makefile | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/math/R-letter/Makefile b/math/R-letter/Makefile index 186721d..a08d9b8 100644 --- a/math/R-letter/Makefile +++ b/math/R-letter/Makefile @@ -1,17 +1,22 @@ # New ports collection makefile for: R -# Version required: R-0.61.2 -# Date created: Mon May 4 10:03:02 EST 1998 +# Version required: R-0.62.1 +# Date created: Tue Jun 23 07:36:55 EST 1998 # Whom: Maurice Castro <maurice@serc.rmit.edu.au> # -# $Id: Makefile,v 1.1.1.1 1998/05/04 17:53:34 mph Exp $ +# $Id: Makefile,v 1.2 1998/05/07 06:08:24 mph Exp $ # -DISTNAME= R-0.61.2 -PKGNAME= R-${PAPERSIZE:S/A4/a4/:S/LETTER/letter/:S/Letter/letter/}-0.61.2 +DISTNAME= R-0.62.1 +PKGNAME= R-${PAPERSIZE:S/A4/a4/:S/LETTER/letter/:S/Letter/letter/}-0.62.1 CATEGORIES= math -MASTER_SITES= http://lib.stat.cmu.edu/R/CRAN/src/base/ \ - ftp://ftp.stat.math.ethz.ch/R/ \ - ftp://ftp.u-aizu.ac.jp/pub/lang/R/ +MASTER_SITES= ftp://ftp.ci.tuwien.ac.at/pub/R/src/base/ \ + ftp://SunSITE.auc.dk/pub/languages/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://ftp.stat.math.ethz.ch/R-CRAN/src/base/ \ + http://lib.stat.cmu.edu/R/CRAN/src/base/ \ + ftp://ftp.biostat.washington.edu/mirrors/R/CRAN/src/base/ \ + ftp://franz.stat.wisc.edu/pub/R/src/base/ EXTRACT_SUFX= .tgz MAINTAINER= maurice@serc.rmit.edu.au @@ -32,6 +37,8 @@ PAPERSIZE=a4 PAPERSIZE_INVALID=yes .endif +ALL_TARGET=all help html + pre-fetch: .if defined(PAPERSIZE_INVALID) @${ECHO} "Invalid value for PAPERSIZE: \"${PAPERSIZE}\"" @@ -39,10 +46,11 @@ pre-fetch: @${FALSE} .endif -post-configure: - cd ${WRKSRC}/etc; && ${PREFIX}/bin/perl -pi -e "s#/usr/bin/perl#${PREFIX}/bin/perl#" `grep -l /usr/bin/perl *` - do-install: + -gzip ${WRKSRC}/R.1 + -gzip ${WRKSRC}/Rdconv.1 + ${INSTALL_DATA} ${WRKSRC}/R.1.gz ${PREFIX}/man/man1 + ${INSTALL_DATA} ${WRKSRC}/Rdconv.1.gz ${PREFIX}/man/man1 ${SED} 's:PREFIX:${PREFIX}:;s:DEFAULTPAPER:${PAPERSIZE}:' ${FILESDIR}/R > ${PREFIX}/bin/R (cd ${WRKSRC}; find . -type d -exec chmod a+rx \{\} \; ) (cd ${WRKSRC}; find . -type f -exec chmod a+r \{\} \; ) @@ -52,7 +60,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/R.binary ${PREFIX}/share/R/bin (cd ${WRKSRC}; tar cpf - afm ) | (cd ${PREFIX}/share/R; tar xpf - ) (cd ${WRKSRC}; tar cpf - etc ) | (cd ${PREFIX}/share/R; tar xpf - ) - (cd ${WRKSRC}; tar cpf - html ) | (cd ${PREFIX}/share/R; tar xpf - ) + (cd ${WRKSRC}; tar cpf - doc ) | (cd ${PREFIX}/share/R; tar xpf - ) (cd ${WRKSRC}; tar cpf - include ) | (cd ${PREFIX}/share/R; tar xpf - ) (cd ${WRKSRC}; tar cpf - library ) | (cd ${PREFIX}/share/R; tar xpf - ) (cd ${WRKSRC}; tar cpf - demos ) | (cd ${PREFIX}/share/R; tar xpf - ) |