diff options
author | bf <bf@FreeBSD.org> | 2012-10-15 02:04:32 +0800 |
---|---|---|
committer | bf <bf@FreeBSD.org> | 2012-10-15 02:04:32 +0800 |
commit | f17aac22e7be2146c72251129146d73e0faa6d07 (patch) | |
tree | 7f42a2e6eea2b4ac039b2998f1517566343352e9 | |
parent | 08b1883e95f0a8567936322d59911b6797787f4d (diff) | |
download | freebsd-ports-gnome-f17aac22e7be2146c72251129146d73e0faa6d07.tar.gz freebsd-ports-gnome-f17aac22e7be2146c72251129146d73e0faa6d07.tar.zst freebsd-ports-gnome-f17aac22e7be2146c72251129146d73e0faa6d07.zip |
fix compiler runtime library path after recent changes to bsd.gcc.mk
Prodded by: gerald
Feature safe: yes
-rw-r--r-- | math/R/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 008f9d2fd89e..593c777241aa 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -8,6 +8,7 @@ PORTNAME?= R PORTVERSION= 2.15.1 +PORTREVISION= 1 CATEGORIES= math lang MASTER_SITES= http://cran.r-project.org/src/base/R-2/ \ ftp://cran.r-project.org/pub/R/src/base/R-2/ \ @@ -79,7 +80,7 @@ OPTIONS_DEFAULT+= GHOSTSCRIPT INFO_MANUALS JPEG LIBR PANGOCAIRO PNG TCLTK \ PLIST_SUB= R_SOVERSION="${R_SOVERSION}" \ RBLAS_SOVERSION="${RBLAS_SOVERSION}" \ RLAPACK_SOVERSION="${RLAPACK_SOVERSION}" -R_LD_LIBRARY_PATH= ${LOCALBASE}/lib/${_GCC_BUILD_DEPENDS}:${LOCALBASE}/lib +R_LD_LIBRARY_PATH= ${_GCC_RUNTIME}:${LOCALBASE}/lib USE_ICONV= yes .if !defined(LIBR_SLAVEPORT) MAN1= R.1 Rscript.1 |