openbsd-ports/math/R/pkg
feinerer 25da47f547 Update to R 3.2.3
Feedback by Rafael Sadowski, ok dcoppa@
2015-12-14 16:49:02 +00:00
..
DESCR
PLIST Now that texlive_texmf-buildset contains the inconsolata LaTeX 2015-09-28 07:32:19 +00:00
README Update to R 3.2.3 2015-12-14 16:49:02 +00:00

$OpenBSD: README,v 1.4 2015/12/14 16:49:02 feinerer Exp $

+-----------------------------------------------------------------------
| Running ${FULLPKGNAME} on OpenBSD
+-----------------------------------------------------------------------

Configuring Java support
========================
To enable Java support, R needs to know where the JVM and the Java
libraries are located.

Running:

# export JAVA_HOME=${LOCALBASE}/jdk-1.8.0
# ${TRUEPREFIX}/bin/R CMD javareconf

as root, will update both ${TRUEPREFIX}/lib/R/etc/Makeconf and
${TRUEPREFIX}/lib/R/etc/ldpaths with the right settings.

Customizing package compilation
===============================
Make variables to be used by R packages compiling code at installation time
can be customized via ~/.R/Makevars
(https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Customizing-package-compilation).
E.g., for using recent compilers (packages g++, g95, and gcc) add

CC=egcc -std=gnu99
CXX=eg++
F77=egfortran