ports/184216: [exp-run] add stage support to Mk/bsd.cran.mk and USE_R_MOD ports
David Naylor
dbn at FreeBSD.org
Sun Nov 24 16:00:03 UTC 2013
>Number: 184216
>Category: ports
>Synopsis: [exp-run] add stage support to Mk/bsd.cran.mk and USE_R_MOD ports
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: change-request
>Submitter-Id: current-users
>Arrival-Date: Sun Nov 24 16:00:03 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: David Naylor
>Release:
>Organization:
>Environment:
>Description:
Add stage support to bsd.cran.mk and convert all ports defining USE_R_MOD to support staging. Since this patch converts all affected ports make the use of NO_STAGE produce an error.
This patch has been tested on my system by building all affected ports - without issue - however I would like a more thorough test of this patch.
>How-To-Repeat:
>Fix:
Patch attached with submission follows:
diff --git a/Mk/bsd.cran.mk b/Mk/bsd.cran.mk
index 5b82c1f..5353449 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}/?, at 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}/?, at dirrm ,' >> ${TMPPLIST}
.endif
.endif
diff --git a/astro/R-cran-maptools/Makefile b/astro/R-cran-maptools/Makefile
index 5fa4d9b..86565cf 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 ec715c1..bf24bf0 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 6b38630..4203d52 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 2e21bd4..e944177 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 9434745..6677d68 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 ddfed70..833a915 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 fdd7771..a675cee 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 1ebe784..2b275b9 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 bac3b32..201de79 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 7108b60..c4b34d7 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 7a2a0c6..3ec69b2 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 adbf3f7..2573fbc 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 451d775..1c667e2 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 016c818..8f71689 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 c014c17..395007c 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 1c9714c..bbc4d08 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 21c76b8..343f81b 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 b7b9b4d..2c975bf 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 adadfff..073eba3 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 ab2d5b0..7d4ebd2 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 f341244..404305d 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 25cc334..81632e60 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 abd4f68..516764a 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 62748f4..592a624 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 91455b8..1fbdae5 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 e1dabd3..8682b47 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 4b07ec9..d213015 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 9a47c32..dc73bf0 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 4593733..419cc54 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 faf6a93..d9da765 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 f13998d..ac8ea48 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 2073167..9f6044b 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 a1b7467..f485e9a 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 8937caf..bfd63a6 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 038f1de..c0c0a43 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 5650f4e..aa2575d 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 36f6055..1b6e5ca 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 83f1940..46e248a 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 f6de7f5..de23ece 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 ed884db..a5ce01a 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 45a75d4..0e5df1e 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 3e6a0f1..fc7de25 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 45b2ff9..4ac3b23 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 4ac31d9..7f51fb3 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 510a5f0..4059a9a 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 545125d..53e64af 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 115cc3b..9fbaa41 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 bbb4178..e7ce8fc 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 2972f7c..71ed9c0 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 677113d..400b1ee 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 9f0ea1b..67344d3 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 a48545d..d8536a8 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 b41ff6c..5bebcf9 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 43d174e..49e08da 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 434f1c1..69f993e 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 72dae1f..3b95c5c 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 3414776..5040203 100644
--- a/graphics/R-cran-rgdal/Makefile
+++ b/graphics/R-cran-rgdal/Makefile
@@ -21,5 +21,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 2d99c9a..fd6f280 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 d23d2b7..b98c942 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 cb8db64..5d11f1b 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 4d4fe77..c7f3564 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 6928a1a..e144fbd 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 603044e..79c2680 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 3ae6d60..8969803 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 c7554d8..9cb3104 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 ee9390a..20cd9af 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 99f5fd6..1fc4e90 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 c097cd04..467f85d 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 4b9d2f3..7b182ec 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 b4407fa..c318119 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 18db08a..23972b1 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 b19f95e..410f25f 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 57a60df..7ba985e 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 21be709..28ac1db 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 002f1d4..1976515 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 bb5f9eb..d4291d7 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 0ee1934..4c4fd08 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 fe1575d..cac0051 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 d44359c..3e58feb 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 7f84678..c8c5146 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 7901e93..0cea417 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 581a345..f440e6c 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 7503dff..c8fd02f 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 d5a63d7..05d840b 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 f69f52e..2255af6 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 77013c3..10585c1 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 1a9a404..d297435 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 59061a1..55e6ec6 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 ee04068..310e236 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 caa6b44..a475b49 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 e91255f..ad104f1 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 2782131..1dea766 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 54d528f..f0f8203 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 b43eb86..05d252e 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 13e0079..0a42f01 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 6525155..91ff877 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 2ae1c66..0ca1192 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 79fc54d..d0e4f4e 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 f92256e..c659fe1 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 8dfff61..864d8f9 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 348b823..9cba92d 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 a2a9915..c97b11c 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 a45ba51..ce539f9 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 f9a7a88..8ff0f31 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 1346cbc..5149729 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 598b6d7..bf6769f 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 7b5d781..8bbc2b9 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 3fcde09..c5e195f 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 b8b8d1e..b22401b 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 f6b37f4..94f8ea5 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 1276c58..3b78928 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 3142029..a2afaf1 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 6ee7985..2815c2e 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 6f6cecd..eaafa76 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 b9e3d89..d2e9dd3 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 ea8a318..b96ac97 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 7b36b38..2d26042 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 e7dec96..3d9ede2 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>
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list