1 | # $Id: Portfile,v 1.2 2004/01/16 04:36:15 toby Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name R |
---|
5 | version 1.8.1 |
---|
6 | revision 1 |
---|
7 | categories math science |
---|
8 | maintainers kjell.konis@worcester.oxford.ac.uk |
---|
9 | description R is GNU S - an interpreted language for statistical computing |
---|
10 | long_description \ |
---|
11 | R is a language and environment for statistical computing and graphics. \ |
---|
12 | R provides a wide variety of statistical (linear and nonlinear modelling, \ |
---|
13 | classical statistical tests, time-series analysis, classification, \ |
---|
14 | clustering, ...) and graphical techniques, and is highly extensible. |
---|
15 | homepage http://www.r-project.org/ |
---|
16 | extract.suffix .tgz |
---|
17 | master_sites http://cran.us.r-project.org/src/base/ \ |
---|
18 | http://cran.au.r-project.org/src/base/ \ |
---|
19 | http://cran.at.r-project.org/src/base/ \ |
---|
20 | http://cran.hu.r-project.org/src/base/ \ |
---|
21 | http://cran.za.r-project.org/src/base/ |
---|
22 | checksums md5 cd81fdeaf22f93dfc28979e8132722ec |
---|
23 | depends_lib lib:libdl:dlcompat lib:libreadline:readline |
---|
24 | depends_build bin:g77:g77 bin:latex:teTeX |
---|
25 | configure.env CPPFLAGS="-I${prefix}/include" \ |
---|
26 | LDFLAGS="-L${prefix}/lib" |
---|
27 | configure.args --enable-R-shlib --with-blas="-framework vecLib" --with-lapack |
---|
28 | destroot.destdir prefix=${destroot}${prefix} |
---|
29 | |
---|
30 | post-destroot { |
---|
31 | reinplace "s|R_HOME_DIR=${destroot}|R_HOME_DIR=|" \ |
---|
32 | "${destroot}${prefix}/bin/R" |
---|
33 | reinplace "s|R_HOME_DIR=${destroot}|R_HOME_DIR=|" \ |
---|
34 | "${destroot}${prefix}/lib/R/bin/R" |
---|
35 | } |
---|