- switch to the bundled Rblas and Rlapack by default (this
can be changed by setting BLAS and LAPACK) which favors
correctness in some corner cases over a slight performance
penalty; this will be revisited after the blas and lapack
updates
- replace the STATIC_LIBR option with a LIBR option (on
by default): if on, libR.a and libR.so are installed,
and R is linked to libR.so. Otherwise, R is static, and
no libRs are installed.
- remove the superfluous copy of libR.so in ${LOCALBASE}/lib [1]
- enable the cairo and pango elements in the X11() graphics
device by default, controlled by new PANGOCAIRO option
- add a few small patches to dependent ports, bumping
PORTREVISION where necessary
PR: 153309 [1]
Approved by: thierry (rkward*), wen (rpy*, R-cran-*)
12 lines
543 B
CMake
12 lines
543 B
CMake
--- rkward/rbackend/FindR.cmake.orig 2011-02-23 06:43:20.000000000 -0500
|
|
+++ rkward/rbackend/FindR.cmake 2011-05-03 01:42:49.000000000 -0400
|
|
@@ -99,7 +99,7 @@
|
|
# needed when linking to Rlapack on linux for some unknown reason.
|
|
# apparently not needed on windows (let's see, when it comes back to bite us, though)
|
|
# and compiling on windows is hard enough even without requiring libgfortran, too.
|
|
- SET(R_USED_LIBS ${R_USED_LIBS} gfortran)
|
|
+ #SET(R_USED_LIBS ${R_USED_LIBS} gfortran)
|
|
ENDIF(WIN32 OR APPLE)
|
|
ENDIF(NOT LIBR_LAPACK)
|
|
|