diff options
author | dbn <dbn@FreeBSD.org> | 2013-11-28 02:56:43 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2013-11-28 02:56:43 +0800 |
commit | 2a38a4b34a96fce90b1b730ac00b621e0e81f40f (patch) | |
tree | 75749e5a75551a5b29335357c10f4c95a9dc23da | |
parent | 19c623e8bad27bd88eefae617903f5411f12fa88 (diff) | |
download | freebsd-ports-gnome-2a38a4b34a96fce90b1b730ac00b621e0e81f40f.tar.gz freebsd-ports-gnome-2a38a4b34a96fce90b1b730ac00b621e0e81f40f.tar.zst freebsd-ports-gnome-2a38a4b34a96fce90b1b730ac00b621e0e81f40f.zip |
Add stage support to Mk/bsd.cran.mk and all USE_R_MOD ports (aka R-cran-*).
Since this patch converts all affected ports, bsd.cran.mk no longer supports
NO_STAGE and errors out if NO_STAGE is set.
Exp-run: ports/184216
Reviewed by: bdrewery
Approved by: portsmgr, wen
119 files changed, 14 insertions, 123 deletions
diff --git a/Mk/bsd.cran.mk b/Mk/bsd.cran.mk index 5b82c1f0588c..5353449ec1a6 100644 --- a/Mk/bsd.cran.mk +++ b/Mk/bsd.cran.mk @@ -27,7 +27,8 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R PKGNAMEPREFIX?= R-cran- -R_MOD_DIR?= lib/R/library/${PORTNAME} +R_LIB_DIR= lib/R/library +R_MOD_DIR?= ${R_LIB_DIR}/${PORTNAME} PLIST_SUB+= R_MOD_DIR=${R_MOD_DIR} WRKSRC?= ${WRKDIR}/${PORTNAME} @@ -41,6 +42,12 @@ R_POSTCMD_CHECK_OPTIONS?= --timings R_POSTCMD_CHECK_OPTIONS+= --no-manual --no-rebuild-vignettes .endif +.if defined(NO_STAGE) +check-makevars:: + @${ECHO_MSG} "Makefile error: USE_R_MOD cannot be used with NO_STAGE" + @${FALSE} +.endif + regression-test: build @cd ${WRKDIR} ; ${SETENV} ${MAKE_ENV} _R_CHECK_FORCE_SUGGESTS_=FALSE \ ${R_COMMAND} ${R_PRECMD_CHECK_OPTIONS} CMD check \ @@ -48,6 +55,7 @@ regression-test: build .endif .if !target(do-install) +R_POSTCMD_INSTALL_OPTIONS+= -l ${STAGEDIR}${PREFIX}/${R_LIB_DIR} .if defined(NOPORTDATA) R_POSTCMD_INSTALL_OPTIONS+= --no-data --no-demo .else @@ -59,6 +67,7 @@ R_POSTCMD_INSTALL_OPTIONS+= --no-docs --no-html .endif do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${R_LIB_DIR} @cd ${WRKDIR} ; ${SETENV} ${MAKE_ENV} ${R_COMMAND} \ ${R_PRECMD_INSTALL_OPTIONS} CMD INSTALL \ ${R_POSTCMD_INSTALL_OPTIONS} ${PORTNAME} @@ -67,10 +76,10 @@ do-install: .if defined(R_MOD_AUTOPLIST) .if !target(post-install-script) post-install-script: - @${FIND} -ds ${PREFIX}/${R_MOD_DIR} \( -type f -or -type l \) -print | \ - ${SED} -E -e 's,^${PREFIX}/?,,' >> ${TMPPLIST} - @${FIND} -ds ${PREFIX}/${R_MOD_DIR} -type d -print | ${SED} -E -e \ - 's,^${PREFIX}/?,@dirrm ,' >> ${TMPPLIST} + @${FIND} -ds ${STAGEDIR}${PREFIX}/${R_MOD_DIR} \( -type f -or -type l \) -print | \ + ${SED} -E -e 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} + @${FIND} -ds ${STAGEDIR}${PREFIX}/${R_MOD_DIR} -type d -print | ${SED} -E -e \ + 's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST} .endif .endif diff --git a/astro/R-cran-maptools/Makefile b/astro/R-cran-maptools/Makefile index 5fa4d9bbd452..86565cf9f031 100644 --- a/astro/R-cran-maptools/Makefile +++ b/astro/R-cran-maptools/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-sp>=1.0.11:${PORTSDIR}/math/R-cran-sp -NO_STAGE= yes USE_R_MOD= yes R_MOD_AUTOPLIST= yes diff --git a/converters/R-cran-RJSONIO/Makefile b/converters/R-cran-RJSONIO/Makefile index ec715c15078d..bf24bf009fc3 100644 --- a/converters/R-cran-RJSONIO/Makefile +++ b/converters/R-cran-RJSONIO/Makefile @@ -15,5 +15,4 @@ LICENSE= BSD USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/converters/R-cran-rjson/Makefile b/converters/R-cran-rjson/Makefile index 6b38630b0352..4203d52b75a3 100644 --- a/converters/R-cran-rjson/Makefile +++ b/converters/R-cran-rjson/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/databases/R-cran-DBI/Makefile b/databases/R-cran-DBI/Makefile index 2e21bd495a45..e9441776db96 100644 --- a/databases/R-cran-DBI/Makefile +++ b/databases/R-cran-DBI/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/databases/R-cran-RMySQL/Makefile b/databases/R-cran-RMySQL/Makefile index 9434745e8335..6677d6835d89 100644 --- a/databases/R-cran-RMySQL/Makefile +++ b/databases/R-cran-RMySQL/Makefile @@ -18,5 +18,4 @@ USE_MYSQL= yes USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/databases/R-cran-RSQLite.extfuns/Makefile b/databases/R-cran-RSQLite.extfuns/Makefile index ddfed70c7bf0..833a9157268c 100644 --- a/databases/R-cran-RSQLite.extfuns/Makefile +++ b/databases/R-cran-RSQLite.extfuns/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/databases/R-cran-RSQLite/Makefile b/databases/R-cran-RSQLite/Makefile index fdd777156a0f..a675cee037f7 100644 --- a/databases/R-cran-RSQLite/Makefile +++ b/databases/R-cran-RSQLite/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/databases/R-cran-sqldf/Makefile b/databases/R-cran-sqldf/Makefile index 1ebe784971b0..2b275b967f7a 100644 --- a/databases/R-cran-sqldf/Makefile +++ b/databases/R-cran-sqldf/Makefile @@ -23,5 +23,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-Defaults/Makefile b/devel/R-cran-Defaults/Makefile index bac3b32309ab..201de79bb340 100644 --- a/devel/R-cran-Defaults/Makefile +++ b/devel/R-cran-Defaults/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-Hmisc/Makefile b/devel/R-cran-Hmisc/Makefile index 7108b60f0d2c..c4b34d7c131e 100644 --- a/devel/R-cran-Hmisc/Makefile +++ b/devel/R-cran-Hmisc/Makefile @@ -14,5 +14,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-RUnit/Makefile b/devel/R-cran-RUnit/Makefile index 7a2a0c64c2cf..3ec69b22574c 100644 --- a/devel/R-cran-RUnit/Makefile +++ b/devel/R-cran-RUnit/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-Rcpp/Makefile b/devel/R-cran-Rcpp/Makefile index adbf3f7b38b7..2573fbc0495c 100644 --- a/devel/R-cran-Rcpp/Makefile +++ b/devel/R-cran-Rcpp/Makefile @@ -15,5 +15,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-bitops/Makefile b/devel/R-cran-bitops/Makefile index 451d7750306d..1c667e2f4a84 100644 --- a/devel/R-cran-bitops/Makefile +++ b/devel/R-cran-bitops/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-caTools/Makefile b/devel/R-cran-caTools/Makefile index 016c818c8ffa..8f71689fa6f1 100644 --- a/devel/R-cran-caTools/Makefile +++ b/devel/R-cran-caTools/Makefile @@ -16,5 +16,4 @@ RUN_DEPENDS= R-cran-bitops>0:${PORTSDIR}/devel/R-cran-bitops USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-caret/Makefile b/devel/R-cran-caret/Makefile index c014c17aa709..395007ce1e1d 100644 --- a/devel/R-cran-caret/Makefile +++ b/devel/R-cran-caret/Makefile @@ -19,5 +19,4 @@ RUN_DEPENDS= R-cran-reshape2>0:${PORTSDIR}/devel/R-cran-reshape2 \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-chron/Makefile b/devel/R-cran-chron/Makefile index 1c9714c20f58..bbc4d0875018 100644 --- a/devel/R-cran-chron/Makefile +++ b/devel/R-cran-chron/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-foreach/Makefile b/devel/R-cran-foreach/Makefile index 21c76b8fcccb..343f81bdc7e7 100644 --- a/devel/R-cran-foreach/Makefile +++ b/devel/R-cran-foreach/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-iterators>=1.0.0:${PORTSDIR}/devel/R-cran-iterators USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-gbm/Makefile b/devel/R-cran-gbm/Makefile index b7b9b4d88657..2c975bfd4be5 100644 --- a/devel/R-cran-gbm/Makefile +++ b/devel/R-cran-gbm/Makefile @@ -14,5 +14,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-gdata/Makefile b/devel/R-cran-gdata/Makefile index adadfffc3c5f..073eba3c975f 100644 --- a/devel/R-cran-gdata/Makefile +++ b/devel/R-cran-gdata/Makefile @@ -19,5 +19,4 @@ USE_PERL5= run USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-glmnet/Makefile b/devel/R-cran-glmnet/Makefile index ab2d5b0a1f15..7d4ebd28b2d1 100644 --- a/devel/R-cran-glmnet/Makefile +++ b/devel/R-cran-glmnet/Makefile @@ -14,5 +14,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-gsubfn/Makefile b/devel/R-cran-gsubfn/Makefile index f3412440140e..404305d89fd8 100644 --- a/devel/R-cran-gsubfn/Makefile +++ b/devel/R-cran-gsubfn/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-gtools/Makefile b/devel/R-cran-gtools/Makefile index 25cc334d3a36..81632e60aa0d 100644 --- a/devel/R-cran-gtools/Makefile +++ b/devel/R-cran-gtools/Makefile @@ -14,5 +14,4 @@ LICENSE= LGPL21 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-iterators/Makefile b/devel/R-cran-iterators/Makefile index abd4f68193b8..516764aacc11 100644 --- a/devel/R-cran-iterators/Makefile +++ b/devel/R-cran-iterators/Makefile @@ -15,5 +15,4 @@ LICENSE= AL2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-itertools/Makefile b/devel/R-cran-itertools/Makefile index 62748f452801..592a624f6bc8 100644 --- a/devel/R-cran-itertools/Makefile +++ b/devel/R-cran-itertools/Makefile @@ -15,5 +15,4 @@ RUN_DEPENDS= R-cran-iterators>=1.0.0:${PORTSDIR}/devel/R-cran-iterators USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-memoise/Makefile b/devel/R-cran-memoise/Makefile index 91455b852ddc..1fbdae596b2b 100644 --- a/devel/R-cran-memoise/Makefile +++ b/devel/R-cran-memoise/Makefile @@ -15,5 +15,4 @@ RUN_DEPENDS= R-cran-digest>=0:${PORTSDIR}/security/R-cran-digest USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-plyr/Makefile b/devel/R-cran-plyr/Makefile index e1dabd32b25e..8682b47a8912 100644 --- a/devel/R-cran-plyr/Makefile +++ b/devel/R-cran-plyr/Makefile @@ -16,5 +16,4 @@ RUN_DEPENDS= R-cran-itertools>0:${PORTSDIR}/devel/R-cran-itertools \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-proto/Makefile b/devel/R-cran-proto/Makefile index 4b07ec9ec17c..d213015b24ef 100644 --- a/devel/R-cran-proto/Makefile +++ b/devel/R-cran-proto/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-randomForest/Makefile b/devel/R-cran-randomForest/Makefile index 9a47c3251ba5..dc73bf0d5317 100644 --- a/devel/R-cran-randomForest/Makefile +++ b/devel/R-cran-randomForest/Makefile @@ -14,5 +14,4 @@ RUN_DEPENDS= R-cran-RColorBrewer>=1.0.5_6:${PORTSDIR}/graphics/R-cran-RColorBrew USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-reshape/Makefile b/devel/R-cran-reshape/Makefile index 459373394676..419cc5475b30 100644 --- a/devel/R-cran-reshape/Makefile +++ b/devel/R-cran-reshape/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/devel/R-cran-reshape2/Makefile b/devel/R-cran-reshape2/Makefile index faf6a936eb0d..d9da7658b6b5 100644 --- a/devel/R-cran-reshape2/Makefile +++ b/devel/R-cran-reshape2/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-plyr>=1.5:${PORTSDIR}/devel/R-cran-plyr \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-PerformanceAnalytics/Makefile b/finance/R-cran-PerformanceAnalytics/Makefile index f13998d0a489..ac8ea48b3bce 100644 --- a/finance/R-cran-PerformanceAnalytics/Makefile +++ b/finance/R-cran-PerformanceAnalytics/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-RFinanceYJ/Makefile b/finance/R-cran-RFinanceYJ/Makefile index 2073167624ac..9f6044b1dfc1 100644 --- a/finance/R-cran-RFinanceYJ/Makefile +++ b/finance/R-cran-RFinanceYJ/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-XML>0:${PORTSDIR}/textproc/R-cran-XML \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-TTR/Makefile b/finance/R-cran-TTR/Makefile index a1b74673d81e..f485e9acbcb8 100644 --- a/finance/R-cran-TTR/Makefile +++ b/finance/R-cran-TTR/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-xts>=0.9.3:${PORTSDIR}/math/R-cran-xts USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-ccgarch/Makefile b/finance/R-cran-ccgarch/Makefile index 8937caf622f9..bfd63a65fca8 100644 --- a/finance/R-cran-ccgarch/Makefile +++ b/finance/R-cran-ccgarch/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-fBasics/Makefile b/finance/R-cran-fBasics/Makefile index 038f1de2e7c5..c0c0a434fcb3 100644 --- a/finance/R-cran-fBasics/Makefile +++ b/finance/R-cran-fBasics/Makefile @@ -21,5 +21,4 @@ RUN_DEPENDS= R-cran-timeDate>0:${PORTSDIR}/finance/R-cran-timeDate \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-fGarch/Makefile b/finance/R-cran-fGarch/Makefile index 5650f4e7ea83..aa2575d14626 100644 --- a/finance/R-cran-fGarch/Makefile +++ b/finance/R-cran-fGarch/Makefile @@ -20,5 +20,4 @@ RUN_DEPENDS= R-cran-timeDate>0:${PORTSDIR}/finance/R-cran-timeDate \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-gmm/Makefile b/finance/R-cran-gmm/Makefile index 36f60558273a..1b6e5ca74f0a 100644 --- a/finance/R-cran-gmm/Makefile +++ b/finance/R-cran-gmm/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-sandwich>0:${PORTSDIR}/math/R-cran-sandwich USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-lmtest/Makefile b/finance/R-cran-lmtest/Makefile index 83f1940778ac..46e248a56f1c 100644 --- a/finance/R-cran-lmtest/Makefile +++ b/finance/R-cran-lmtest/Makefile @@ -19,5 +19,4 @@ RUN_DEPENDS= R-cran-zoo>=0:${PORTSDIR}/math/R-cran-zoo \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-plm/Makefile b/finance/R-cran-plm/Makefile index f6de7f52f21e..de23ece2ad61 100644 --- a/finance/R-cran-plm/Makefile +++ b/finance/R-cran-plm/Makefile @@ -21,5 +21,4 @@ RUN_DEPENDS= R-cran-bdsmatrix>0:${PORTSDIR}/math/R-cran-bdsmatrix \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-quantmod/Makefile b/finance/R-cran-quantmod/Makefile index ed884db537b1..a5ce01af0505 100644 --- a/finance/R-cran-quantmod/Makefile +++ b/finance/R-cran-quantmod/Makefile @@ -20,5 +20,4 @@ RUN_DEPENDS= R-cran-Defaults>0:${PORTSDIR}/devel/R-cran-Defaults \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-strucchange/Makefile b/finance/R-cran-strucchange/Makefile index 45a75d427813..0e5df1ef4c25 100644 --- a/finance/R-cran-strucchange/Makefile +++ b/finance/R-cran-strucchange/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-timeDate/Makefile b/finance/R-cran-timeDate/Makefile index 3e6a0f17e570..fc7de2562144 100644 --- a/finance/R-cran-timeDate/Makefile +++ b/finance/R-cran-timeDate/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-timeSeries/Makefile b/finance/R-cran-timeSeries/Makefile index 45b2ff926d33..4ac3b238e57b 100644 --- a/finance/R-cran-timeSeries/Makefile +++ b/finance/R-cran-timeSeries/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-timeDate>=2150.95:${PORTSDIR}/finance/R-cran-timeDate USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-tseries/Makefile b/finance/R-cran-tseries/Makefile index 4ac31d9a437f..7f51fb37573a 100644 --- a/finance/R-cran-tseries/Makefile +++ b/finance/R-cran-tseries/Makefile @@ -21,5 +21,4 @@ RUN_DEPENDS= R-cran-quadprog>0:${PORTSDIR}/math/R-cran-quadprog \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-urca/Makefile b/finance/R-cran-urca/Makefile index 510a5f0dd29e..4059a9abf60b 100644 --- a/finance/R-cran-urca/Makefile +++ b/finance/R-cran-urca/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/finance/R-cran-vars/Makefile b/finance/R-cran-vars/Makefile index 545125d68486..53e64af456b7 100644 --- a/finance/R-cran-vars/Makefile +++ b/finance/R-cran-vars/Makefile @@ -21,5 +21,4 @@ RUN_DEPENDS= R-cran-strucchange>0:${PORTSDIR}/finance/R-cran-strucchange \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/ftp/R-cran-RCurl/Makefile b/ftp/R-cran-RCurl/Makefile index 115cc3bc94f1..9fbaa41e32d5 100644 --- a/ftp/R-cran-RCurl/Makefile +++ b/ftp/R-cran-RCurl/Makefile @@ -19,5 +19,4 @@ LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-GDD/Makefile b/graphics/R-cran-GDD/Makefile index bbb41784e1f5..e7ce8fca3921 100644 --- a/graphics/R-cran-GDD/Makefile +++ b/graphics/R-cran-GDD/Makefile @@ -20,5 +20,4 @@ WRKSRC= ${WRKDIR}/${PORTNAME} USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-RColorBrewer/Makefile b/graphics/R-cran-RColorBrewer/Makefile index 2972f7c4ea61..71ed9c03af7a 100644 --- a/graphics/R-cran-RColorBrewer/Makefile +++ b/graphics/R-cran-RColorBrewer/Makefile @@ -15,5 +15,4 @@ LICENSE= AL2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-colorspace/Makefile b/graphics/R-cran-colorspace/Makefile index 677113d588e5..400b1eea5461 100644 --- a/graphics/R-cran-colorspace/Makefile +++ b/graphics/R-cran-colorspace/Makefile @@ -15,5 +15,4 @@ LICENSE= BSD USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-diagram/Makefile b/graphics/R-cran-diagram/Makefile index 9f0ea1b01e56..67344d3798cd 100644 --- a/graphics/R-cran-diagram/Makefile +++ b/graphics/R-cran-diagram/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-shape>0:${PORTSDIR}/graphics/R-cran-shape USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-dichromat/Makefile b/graphics/R-cran-dichromat/Makefile index a48545df9647..d8536a86c9de 100644 --- a/graphics/R-cran-dichromat/Makefile +++ b/graphics/R-cran-dichromat/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-ggplot2/Makefile b/graphics/R-cran-ggplot2/Makefile index b41ff6c00d79..5bebcf971e7f 100644 --- a/graphics/R-cran-ggplot2/Makefile +++ b/graphics/R-cran-ggplot2/Makefile @@ -21,5 +21,4 @@ RUN_DEPENDS= R-cran-plyr>=1.7.1:${PORTSDIR}/devel/R-cran-plyr \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-munsell/Makefile b/graphics/R-cran-munsell/Makefile index 43d174e79e7a..49e08dad9d77 100644 --- a/graphics/R-cran-munsell/Makefile +++ b/graphics/R-cran-munsell/Makefile @@ -21,5 +21,4 @@ RUN_DEPENDS= R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-pixmap/Makefile b/graphics/R-cran-pixmap/Makefile index 434f1c1cfd02..69f993e990b7 100644 --- a/graphics/R-cran-pixmap/Makefile +++ b/graphics/R-cran-pixmap/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-png/Makefile b/graphics/R-cran-png/Makefile index 72dae1f5f18d..3b95c5ceab84 100644 --- a/graphics/R-cran-png/Makefile +++ b/graphics/R-cran-png/Makefile @@ -18,5 +18,4 @@ LIB_DEPENDS= png15:${PORTSDIR}/graphics/png USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-rgdal/Makefile b/graphics/R-cran-rgdal/Makefile index 8172c4b7919b..339e4f6fbb99 100644 --- a/graphics/R-cran-rgdal/Makefile +++ b/graphics/R-cran-rgdal/Makefile @@ -22,5 +22,4 @@ R_MOD_AUTOPLIST= yes R_POSTCMD_INSTALL_OPTIONS+= --configure-args="--with-proj-lib=${LOCALBASE}/lib" -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-rtiff/Makefile b/graphics/R-cran-rtiff/Makefile index 2d99c9a78bb0..fd6f280a08ab 100644 --- a/graphics/R-cran-rtiff/Makefile +++ b/graphics/R-cran-rtiff/Makefile @@ -18,5 +18,4 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-scales/Makefile b/graphics/R-cran-scales/Makefile index d23d2b7db001..b98c942d7af2 100644 --- a/graphics/R-cran-scales/Makefile +++ b/graphics/R-cran-scales/Makefile @@ -21,5 +21,4 @@ RUN_DEPENDS= R-cran-RColorBrewer>=0:${PORTSDIR}/graphics/R-cran-RColorBrewer \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/graphics/R-cran-shape/Makefile b/graphics/R-cran-shape/Makefile index cb8db6470634..5d11f1b5d605 100644 --- a/graphics/R-cran-shape/Makefile +++ b/graphics/R-cran-shape/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv3 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-ChangeAnomalyDetection/Makefile b/math/R-cran-ChangeAnomalyDetection/Makefile index 4d4fe77f392f..c7f35642edad 100644 --- a/math/R-cran-ChangeAnomalyDetection/Makefile +++ b/math/R-cran-ChangeAnomalyDetection/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-TTR>0:${PORTSDIR}/finance/R-cran-TTR \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-Formula/Makefile b/math/R-cran-Formula/Makefile index 6928a1a65e1c..e144fbde28fb 100644 --- a/math/R-cran-Formula/Makefile +++ b/math/R-cran-Formula/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-KFAS/Makefile b/math/R-cran-KFAS/Makefile index 603044e6ebce..79c2680f43bf 100644 --- a/math/R-cran-KFAS/Makefile +++ b/math/R-cran-KFAS/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-LearnBayes/Makefile b/math/R-cran-LearnBayes/Makefile index 3ae6d60acee3..89698034362e 100644 --- a/math/R-cran-LearnBayes/Makefile +++ b/math/R-cran-LearnBayes/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-MCMCpack/Makefile b/math/R-cran-MCMCpack/Makefile index c7554d887c96..9cb31045c15a 100644 --- a/math/R-cran-MCMCpack/Makefile +++ b/math/R-cran-MCMCpack/Makefile @@ -19,5 +19,4 @@ USE_GCC= 4.2+ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-RHmm/Makefile b/math/R-cran-RHmm/Makefile index ee9390afc141..20cd9af59bfb 100644 --- a/math/R-cran-RHmm/Makefile +++ b/math/R-cran-RHmm/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-RSvgDevice/Makefile b/math/R-cran-RSvgDevice/Makefile index 99f5fd6eaf58..1fc4e90dad19 100644 --- a/math/R-cran-RSvgDevice/Makefile +++ b/math/R-cran-RSvgDevice/Makefile @@ -13,5 +13,4 @@ COMMENT= A R SVG graphics device USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-RcppArmadillo/Makefile b/math/R-cran-RcppArmadillo/Makefile index c097cd04635f..467f85d9a748 100644 --- a/math/R-cran-RcppArmadillo/Makefile +++ b/math/R-cran-RcppArmadillo/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-Rcpp>=0.10.5:${PORTSDIR}/devel/R-cran-Rcpp USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-SuppDists/Makefile b/math/R-cran-SuppDists/Makefile index 4b9d2f361ec7..7b182ecca426 100644 --- a/math/R-cran-SuppDists/Makefile +++ b/math/R-cran-SuppDists/Makefile @@ -20,7 +20,6 @@ BENCHMARK_SCRIPT= R-benchmark-25.R R_MOD_AUTOPLIST= yes USE_R_MOD= yes WRKSRC = ${WRKDIR}/${PORTNAME} -NO_STAGE= yes .if defined(MAINTAINER_MODE) USE_DOS2UNIX= ../${BENCHMARK_SCRIPT} diff --git a/math/R-cran-Zelig/Makefile b/math/R-cran-Zelig/Makefile index b4407faddbe4..c318119f02f2 100644 --- a/math/R-cran-Zelig/Makefile +++ b/math/R-cran-Zelig/Makefile @@ -16,5 +16,4 @@ RUN_DEPENDS= R-cran-sandwich>=0:${PORTSDIR}/math/R-cran-sandwich USE_R_MOD= yes R_MOD_AUTOPLIST=yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-bdsmatrix/Makefile b/math/R-cran-bdsmatrix/Makefile index 18db08a41c63..23972b108e44 100644 --- a/math/R-cran-bdsmatrix/Makefile +++ b/math/R-cran-bdsmatrix/Makefile @@ -15,5 +15,4 @@ LICENSE= LGPL20 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-car/Makefile b/math/R-cran-car/Makefile index b19f95e120c3..410f25fa8b55 100644 --- a/math/R-cran-car/Makefile +++ b/math/R-cran-car/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-coda/Makefile b/math/R-cran-coda/Makefile index 57a60df47361..7ba985e87e83 100644 --- a/math/R-cran-coda/Makefile +++ b/math/R-cran-coda/Makefile @@ -13,5 +13,4 @@ COMMENT= Output analysis and diagnostics for MCMC USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-deldir/Makefile b/math/R-cran-deldir/Makefile index 21be7099dfc8..28ac1db7c527 100644 --- a/math/R-cran-deldir/Makefile +++ b/math/R-cran-deldir/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-dlmodeler/Makefile b/math/R-cran-dlmodeler/Makefile index 002f1d4170d0..1976515f95c9 100644 --- a/math/R-cran-dlmodeler/Makefile +++ b/math/R-cran-dlmodeler/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-forecast/Makefile b/math/R-cran-forecast/Makefile index bb5f9eb85b72..d4291d7a953b 100644 --- a/math/R-cran-forecast/Makefile +++ b/math/R-cran-forecast/Makefile @@ -23,5 +23,4 @@ RUN_DEPENDS= R-cran-tseries>0:${PORTSDIR}/finance/R-cran-tseries \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-fracdiff/Makefile b/math/R-cran-fracdiff/Makefile index 0ee1934b14ff..4c4fd08a11e7 100644 --- a/math/R-cran-fracdiff/Makefile +++ b/math/R-cran-fracdiff/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-gpclib/Makefile b/math/R-cran-gpclib/Makefile index fe1575d90d6f..cac005127b50 100644 --- a/math/R-cran-gpclib/Makefile +++ b/math/R-cran-gpclib/Makefile @@ -13,5 +13,4 @@ COMMENT= General Polygon Clipping Library for R USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-gss/Makefile b/math/R-cran-gss/Makefile index d44359c91c8d..3e58feb3e0b5 100644 --- a/math/R-cran-gss/Makefile +++ b/math/R-cran-gss/Makefile @@ -15,5 +15,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-gtable/Makefile b/math/R-cran-gtable/Makefile index 7f846782e197..c8c5146c4f7e 100644 --- a/math/R-cran-gtable/Makefile +++ b/math/R-cran-gtable/Makefile @@ -14,5 +14,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-igraph/Makefile b/math/R-cran-igraph/Makefile index 7901e9367870..0cea4173b518 100644 --- a/math/R-cran-igraph/Makefile +++ b/math/R-cran-igraph/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${ARCH} == "sparc64" diff --git a/math/R-cran-inline/Makefile b/math/R-cran-inline/Makefile index 581a3454ec4c..f440e6c17595 100644 --- a/math/R-cran-inline/Makefile +++ b/math/R-cran-inline/Makefile @@ -13,5 +13,4 @@ COMMENT= Inline C, C++, Fortran function calls from R USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-labeling/Makefile b/math/R-cran-labeling/Makefile index 7503dffd07dd..c8fd02f62553 100644 --- a/math/R-cran-labeling/Makefile +++ b/math/R-cran-labeling/Makefile @@ -15,5 +15,4 @@ LICENSE= MIT USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-memisc/Makefile b/math/R-cran-memisc/Makefile index d5a63d7a1d3e..05d840b5ce55 100644 --- a/math/R-cran-memisc/Makefile +++ b/math/R-cran-memisc/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-mvtnorm/Makefile b/math/R-cran-mvtnorm/Makefile index f69f52e9bb01..2255af680303 100644 --- a/math/R-cran-mvtnorm/Makefile +++ b/math/R-cran-mvtnorm/Makefile @@ -13,5 +13,4 @@ COMMENT= Multivariate Normal and t Distributions USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-nnls/Makefile b/math/R-cran-nnls/Makefile index 77013c312b21..10585c176b93 100644 --- a/math/R-cran-nnls/Makefile +++ b/math/R-cran-nnls/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-outliers/Makefile b/math/R-cran-outliers/Makefile index 1a9a40486b38..d2974356fa11 100644 --- a/math/R-cran-outliers/Makefile +++ b/math/R-cran-outliers/Makefile @@ -13,5 +13,4 @@ COMMENT= Collection of some tests commonly used for identifying outliers USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-psych/Makefile b/math/R-cran-psych/Makefile index 59061a139fae..55e6ec64a578 100644 --- a/math/R-cran-psych/Makefile +++ b/math/R-cran-psych/Makefile @@ -13,5 +13,4 @@ COMMENT= Psych package for the R project USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-quadprog/Makefile b/math/R-cran-quadprog/Makefile index ee04068e5669..310e236afcf7 100644 --- a/math/R-cran-quadprog/Makefile +++ b/math/R-cran-quadprog/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-sandwich/Makefile b/math/R-cran-sandwich/Makefile index caa6b444db26..a475b49d972c 100644 --- a/math/R-cran-sandwich/Makefile +++ b/math/R-cran-sandwich/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-sm/Makefile b/math/R-cran-sm/Makefile index e91255f432d0..ad104f1310b4 100644 --- a/math/R-cran-sm/Makefile +++ b/math/R-cran-sm/Makefile @@ -13,5 +13,4 @@ COMMENT= Smoothing methods for nonparametric regression and density estimation USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-sp/Makefile b/math/R-cran-sp/Makefile index 2782131a7def..1dea766f39c2 100644 --- a/math/R-cran-sp/Makefile +++ b/math/R-cran-sp/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-spdep/Makefile b/math/R-cran-spdep/Makefile index 54d528fd020b..f0f82037b192 100644 --- a/math/R-cran-spdep/Makefile +++ b/math/R-cran-spdep/Makefile @@ -20,5 +20,4 @@ RUN_DEPENDS= R-cran-sp>=0.9:${PORTSDIR}/math/R-cran-sp \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-sspir/Makefile b/math/R-cran-sspir/Makefile index b43eb8670529..05d252e150d7 100644 --- a/math/R-cran-sspir/Makefile +++ b/math/R-cran-sspir/Makefile @@ -16,6 +16,5 @@ RUN_DEPENDS= R-cran-mvtnorm>=0.9.96_11:${PORTSDIR}/math/R-cran-mvtnorm \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-stabledist/Makefile b/math/R-cran-stabledist/Makefile index 13e0079cdd7e..0a42f011a77b 100644 --- a/math/R-cran-stabledist/Makefile +++ b/math/R-cran-stabledist/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-xts/Makefile b/math/R-cran-xts/Makefile index 65251559ae62..91ff87730fa7 100644 --- a/math/R-cran-xts/Makefile +++ b/math/R-cran-xts/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-zoo>=1.7.10:${PORTSDIR}/math/R-cran-zoo USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/math/R-cran-zoo/Makefile b/math/R-cran-zoo/Makefile index 2ae1c66c4a11..0ca119239693 100644 --- a/math/R-cran-zoo/Makefile +++ b/math/R-cran-zoo/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/net/R-cran-twitteR/Makefile b/net/R-cran-twitteR/Makefile index 79fc54d01163..d0e4f4e22bad 100644 --- a/net/R-cran-twitteR/Makefile +++ b/net/R-cran-twitteR/Makefile @@ -19,5 +19,4 @@ RUN_DEPENDS= R-cran-RCurl>0:${PORTSDIR}/ftp/R-cran-RCurl \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-AMORE/Makefile b/science/R-cran-AMORE/Makefile index f92256ea854c..c659fe102312 100644 --- a/science/R-cran-AMORE/Makefile +++ b/science/R-cran-AMORE/Makefile @@ -13,5 +13,4 @@ COMMENT= A MORE flexible neural network package USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-DCluster/Makefile b/science/R-cran-DCluster/Makefile index 8dfff6125fb9..864d8f97ead5 100644 --- a/science/R-cran-DCluster/Makefile +++ b/science/R-cran-DCluster/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-spdep>0:${PORTSDIR}/math/R-cran-spdep USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-Epi/Makefile b/science/R-cran-Epi/Makefile index 348b8238ba20..9cba92d1f900 100644 --- a/science/R-cran-Epi/Makefile +++ b/science/R-cran-Epi/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-bayesm/Makefile b/science/R-cran-bayesm/Makefile index a2a99157b398..c97b11cfea82 100644 --- a/science/R-cran-bayesm/Makefile +++ b/science/R-cran-bayesm/Makefile @@ -13,5 +13,4 @@ COMMENT= Bayesian Inference for Marketing/Micro-econometrics USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-e1071/Makefile b/science/R-cran-e1071/Makefile index a45ba515625d..ce539f9f82fc 100644 --- a/science/R-cran-e1071/Makefile +++ b/science/R-cran-e1071/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-eco/Makefile b/science/R-cran-eco/Makefile index f9a7a881c089..8ff0f31d7aaa 100644 --- a/science/R-cran-eco/Makefile +++ b/science/R-cran-eco/Makefile @@ -13,5 +13,4 @@ COMMENT= R Package for Ecological Inference in 2x2 Tables USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-epicalc/Makefile b/science/R-cran-epicalc/Makefile index 1346cbca6f9f..514972958b61 100644 --- a/science/R-cran-epicalc/Makefile +++ b/science/R-cran-epicalc/Makefile @@ -13,5 +13,4 @@ COMMENT= Epidemiological calculator USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-snow/Makefile b/science/R-cran-snow/Makefile index 598b6d7356a8..bf6769fbec58 100644 --- a/science/R-cran-snow/Makefile +++ b/science/R-cran-snow/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/science/R-cran-som/Makefile b/science/R-cran-som/Makefile index 7b5d781ff18d..8bbc2b9636db 100644 --- a/science/R-cran-som/Makefile +++ b/science/R-cran-som/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv3 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/security/R-cran-ROAuth/Makefile b/security/R-cran-ROAuth/Makefile index 3fcde094b376..c5e195f88d0e 100644 --- a/security/R-cran-ROAuth/Makefile +++ b/security/R-cran-ROAuth/Makefile @@ -18,5 +18,4 @@ RUN_DEPENDS= R-cran-RCurl>=1.6.4:${PORTSDIR}/ftp/R-cran-RCurl \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/security/R-cran-digest/Makefile b/security/R-cran-digest/Makefile index b8b8d1e08c50..b22401bdcb8c 100644 --- a/security/R-cran-digest/Makefile +++ b/security/R-cran-digest/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/textproc/R-cran-R2HTML/Makefile b/textproc/R-cran-R2HTML/Makefile index f6b37f4f608c..94f8ea5c9a35 100644 --- a/textproc/R-cran-R2HTML/Makefile +++ b/textproc/R-cran-R2HTML/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/textproc/R-cran-XML/Makefile b/textproc/R-cran-XML/Makefile index 1276c58edacc..3b7892829110 100644 --- a/textproc/R-cran-XML/Makefile +++ b/textproc/R-cran-XML/Makefile @@ -16,5 +16,4 @@ USE_R_MOD= yes R_MOD_AUTOPLIST= yes USE_GNOME= libxml2 -NO_STAGE= yes .include <bsd.port.mk> diff --git a/textproc/R-cran-stringr/Makefile b/textproc/R-cran-stringr/Makefile index 3142029be809..a2afaf17afbc 100644 --- a/textproc/R-cran-stringr/Makefile +++ b/textproc/R-cran-stringr/Makefile @@ -17,5 +17,4 @@ RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/textproc/R-cran-xtable/Makefile b/textproc/R-cran-xtable/Makefile index 6ee7985c3d8a..2815c2e8000e 100644 --- a/textproc/R-cran-xtable/Makefile +++ b/textproc/R-cran-xtable/Makefile @@ -16,5 +16,4 @@ LICENSE_COMB= dual USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/www/R-cran-RgoogleMaps/Makefile b/www/R-cran-RgoogleMaps/Makefile index 6f6cecd5cdbf..eaafa768f912 100644 --- a/www/R-cran-RgoogleMaps/Makefile +++ b/www/R-cran-RgoogleMaps/Makefile @@ -19,5 +19,4 @@ RUN_DEPENDS= R-cran-png>0:${PORTSDIR}/graphics/R-cran-png \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/www/R-cran-Rpad/Makefile b/www/R-cran-Rpad/Makefile index b9e3d89f9b7d..d2e9dd3d40fc 100644 --- a/www/R-cran-Rpad/Makefile +++ b/www/R-cran-Rpad/Makefile @@ -15,5 +15,4 @@ LICENSE= GPLv2 USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/www/R-cran-httpuv/Makefile b/www/R-cran-httpuv/Makefile index ea8a31801e53..b96ac974b8bb 100644 --- a/www/R-cran-httpuv/Makefile +++ b/www/R-cran-httpuv/Makefile @@ -23,5 +23,4 @@ R_MOD_AUTOPLIST= yes MAKE_ENV= MAKE=${GMAKE} -NO_STAGE= yes .include <bsd.port.mk> diff --git a/www/R-cran-scrapeR/Makefile b/www/R-cran-scrapeR/Makefile index 7b36b38341a8..2d260424c1de 100644 --- a/www/R-cran-scrapeR/Makefile +++ b/www/R-cran-scrapeR/Makefile @@ -16,5 +16,4 @@ RUN_DEPENDS= R-cran-XML>0:${PORTSDIR}/textproc/R-cran-XML \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> diff --git a/www/R-cran-shiny/Makefile b/www/R-cran-shiny/Makefile index e7dec965864b..3d9ede25ffc9 100644 --- a/www/R-cran-shiny/Makefile +++ b/www/R-cran-shiny/Makefile @@ -20,5 +20,4 @@ RUN_DEPENDS= R-cran-httpuv>=1.2.0:${PORTSDIR}/www/R-cran-httpuv \ USE_R_MOD= yes R_MOD_AUTOPLIST= yes -NO_STAGE= yes .include <bsd.port.mk> |