View | Details | Raw Unified | Return to bug 210343
Collapse All | Expand All

(-)b/Mk/Uses/cran.mk (-2 / +7 lines)
Lines 4-12 Link Here
4
#
4
#
5
# Feature:	cran
5
# Feature:	cran
6
# Usage:	USES=cran or USES=cran:ARGS
6
# Usage:	USES=cran or USES=cran:ARGS
7
# Valid ARGS:	auto-plist
7
# Valid ARGS:	auto-plist, compiles
8
#
8
#
9
# auto-plist	The pkg-plist can be automatically compiled
9
# auto-plist	The pkg-plist is to be automatically generated
10
# compiles	The port has code that needs to be compiled
10
#
11
#
11
# MAINTAINER=	wen@FreeBSD.org
12
# MAINTAINER=	wen@FreeBSD.org
12
13
Lines 76-79 cran-auto-plist: Link Here
76
		${SED} -E -e 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
77
		${SED} -E -e 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
77
.endif
78
.endif
78
79
80
.if ${cran_ARGS:Mcompiles}
81
USE_GCC?=	yes
82
.endif
83
79
.endif #_INCLUDE_USES_CRAN_MK
84
.endif #_INCLUDE_USES_CRAN_MK
(-)b/math/R-cran-MCMCpack/Makefile (-3 / +1 lines)
Lines 14-21 LICENSE= GPLv3 Link Here
14
14
15
RUN_DEPENDS=	R-cran-coda>0.11.3:math/R-cran-coda
15
RUN_DEPENDS=	R-cran-coda>0.11.3:math/R-cran-coda
16
16
17
# Actually required 4.0 or later.
17
USES=		cran:auto-plist,compiles
18
USE_GCC=	any
19
USES=	cran:auto-plist
20
18
21
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)b/math/R-cran-RcppArmadillo/Makefile (-2 / +1 lines)
Lines 13-19 LICENSE= GPLv2+ Link Here
13
13
14
RUN_DEPENDS=	R-cran-Rcpp>=0.11.0:devel/R-cran-Rcpp
14
RUN_DEPENDS=	R-cran-Rcpp>=0.11.0:devel/R-cran-Rcpp
15
15
16
USES=	cran:auto-plist
16
USES=		cran:auto-plist,compiles
17
USE_GCC=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)b/math/R/Makefile (-1 / +1 lines)
Lines 107-113 RBLAS_SOVERSION= 2 Link Here
107
RLAPACK_SOVERSION=	4
107
RLAPACK_SOVERSION=	4
108
RMATH_SOVERSION=	0
108
RMATH_SOVERSION=	0
109
USES+=			fortran
109
USES+=			fortran
110
USE_GCC=		yes
110
USE_GCC=		yes	# Also update ${PORTSDIR}/Mk/Uses/cran.mk
111
111
112
.include <bsd.port.options.mk>
112
.include <bsd.port.options.mk>
113
113

Return to bug 210343