1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00

Convert Mk/bsd.cran.mk to the Uses framework.

PR:		ports/184699
Reviewed by:	bapt
Approved by:	portmgr (bdrewery), wen (maintainer, timeout > 2 weeks)
This commit is contained in:
David Naylor 2013-12-28 10:28:40 +00:00
parent e946a1d6d1
commit e288e58754
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=337846
121 changed files with 309 additions and 331 deletions

190
Mk/Uses/cran.mk Normal file
View File

@ -0,0 +1,190 @@
# $FreeBSD$
#
# Use the Comprehensive R Archive Network
#
# MAINTAINER= wen@FreeBSD.org
#
# Feature: cran
# Usage: USES=cran or USES=cran:ARGS
# Valid ARGS: auto-plist
#
# auto-plist The pkg-plist can be automatically compiled
.if !defined(_INCLUDE_USES_CRAN_MK)
_INCLUDE_USES_CRAN_MK= yes
VALID_ARGS= auto-plist
MASTER_SITE_CRAN+= http://ftp.ctex.org/mirrors/CRAN/src/contrib/ \
http://cran.rakanu.com/src/contrib/ \
http://cran.ms.unimelb.edu.au/src/contrib/ \
http://mirror.its.dal.ca/cran/src/contrib/ \
http://mirrors.dotsrc.org/cran/src/contrib/ \
http://cran.univ-lyon1.fr/src/contrib/ \
http://ftp5.gwdg.de/pub/misc/cran/src/contrib/ \
http://cran.stat.unipd.it/src/contrib/ \
http://cran.md.tsukuba.ac.jp/src/contrib/ \
http://mirrors.ibiblio.org/pub/mirrors/CRAN/src/contrib/ \
http://cran.cnr.berkeley.edu/src/contrib/
MASTER_SITE_CRAN_ARCHIVE+= ${MASTER_SITE_CRAN:S,$,Archive/${PORTNAME}/,}
MASTER_SITES?= ${MASTER_SITE_CRAN} ${MASTER_SITE_CRAN_ARCHIVE}
USE_FORTRAN= yes
BUILD_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
RUN_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
PKGNAMEPREFIX?= R-cran-
R_LIB_DIR= lib/R/library
R_MOD_DIR?= ${R_LIB_DIR}/${PORTNAME}
PLIST_SUB+= R_MOD_DIR=${R_MOD_DIR}
WRKSRC?= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
R_COMMAND= ${LOCALBASE}/bin/R
.if !target(regression-test)
R_POSTCMD_CHECK_OPTIONS?= --timings
.if !exists(${LOCALBASE}/bin/pdflatex)
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 \
${R_POSTCMD_CHECK_OPTIONS} ${PORTNAME}
.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
R_POSTCMD_INSTALL_OPTIONS+= --install-tests
.endif
.if defined(NOPORTDOCS)
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}
.endif
.if ${cran_ARGS:Mauto-plist}
.if !target(post-install-script)
post-install-script:
@${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
.endif #_INCLUDE_USES_CRAN_MK
# $FreeBSD$
#
# Use the Comprehensive R Archive Network
#
# MAINTAINER= wen@FreeBSD.org
#
# Feature: cran
# Usage: USES=cran or USES=cran:ARGS
# Valid ARGS: auto-plist
#
# auto-plist The pkg-plist can be automatically compiled
.if !defined(_INCLUDE_USES_CRAN_MK)
_INCLUDE_USES_CRAN_MK= yes
VALID_ARGS= auto-plist
MASTER_SITE_CRAN+= http://ftp.ctex.org/mirrors/CRAN/src/contrib/ \
http://cran.rakanu.com/src/contrib/ \
http://cran.ms.unimelb.edu.au/src/contrib/ \
http://mirror.its.dal.ca/cran/src/contrib/ \
http://mirrors.dotsrc.org/cran/src/contrib/ \
http://cran.univ-lyon1.fr/src/contrib/ \
http://ftp5.gwdg.de/pub/misc/cran/src/contrib/ \
http://cran.stat.unipd.it/src/contrib/ \
http://cran.md.tsukuba.ac.jp/src/contrib/ \
http://mirrors.ibiblio.org/pub/mirrors/CRAN/src/contrib/ \
http://cran.cnr.berkeley.edu/src/contrib/
MASTER_SITE_CRAN_ARCHIVE+= ${MASTER_SITE_CRAN:S,$,Archive/${PORTNAME}/,}
MASTER_SITES?= ${MASTER_SITE_CRAN} ${MASTER_SITE_CRAN_ARCHIVE}
USE_FORTRAN= yes
BUILD_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
RUN_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
PKGNAMEPREFIX?= R-cran-
R_LIB_DIR= lib/R/library
R_MOD_DIR?= ${R_LIB_DIR}/${PORTNAME}
PLIST_SUB+= R_MOD_DIR=${R_MOD_DIR}
WRKSRC?= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
R_COMMAND= ${LOCALBASE}/bin/R
.if !target(regression-test)
R_POSTCMD_CHECK_OPTIONS?= --timings
.if !exists(${LOCALBASE}/bin/pdflatex)
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 \
${R_POSTCMD_CHECK_OPTIONS} ${PORTNAME}
.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
R_POSTCMD_INSTALL_OPTIONS+= --install-tests
.endif
.if defined(NOPORTDOCS)
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}
.endif
.if ${cran_ARGS:Mauto-plist}
.if !target(post-install-script)
post-install-script:
@${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
.endif #_INCLUDE_USES_CRAN_MK

View File

@ -1,85 +0,0 @@
# Date created: 2009-01-25
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
CRAN_Include_MAINTAINER= wen@FreeBSD.org
MASTER_SITE_CRAN+= http://ftp.ctex.org/mirrors/CRAN/src/contrib/ \
http://cran.rakanu.com/src/contrib/ \
http://cran.ms.unimelb.edu.au/src/contrib/ \
http://mirror.its.dal.ca/cran/src/contrib/ \
http://mirrors.dotsrc.org/cran/src/contrib/ \
http://cran.univ-lyon1.fr/src/contrib/ \
http://ftp5.gwdg.de/pub/misc/cran/src/contrib/ \
http://cran.stat.unipd.it/src/contrib/ \
http://cran.md.tsukuba.ac.jp/src/contrib/ \
http://mirrors.ibiblio.org/pub/mirrors/CRAN/src/contrib/ \
http://cran.cnr.berkeley.edu/src/contrib/
MASTER_SITE_CRAN_ARCHIVE+= ${MASTER_SITE_CRAN:S,$,Archive/${PORTNAME}/,}
MASTER_SITES?= ${MASTER_SITE_CRAN} ${MASTER_SITE_CRAN_ARCHIVE}
USE_FORTRAN= yes
BUILD_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
RUN_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
PKGNAMEPREFIX?= R-cran-
R_LIB_DIR= lib/R/library
R_MOD_DIR?= ${R_LIB_DIR}/${PORTNAME}
PLIST_SUB+= R_MOD_DIR=${R_MOD_DIR}
WRKSRC?= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
R_COMMAND= ${LOCALBASE}/bin/R
.if !target(regression-test)
R_POSTCMD_CHECK_OPTIONS?= --timings
.if !exists(${LOCALBASE}/bin/pdflatex)
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 \
${R_POSTCMD_CHECK_OPTIONS} ${PORTNAME}
.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
R_POSTCMD_INSTALL_OPTIONS+= --install-tests
.endif
.if defined(NOPORTDOCS)
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}
.endif
.if defined(R_MOD_AUTOPLIST)
.if !target(post-install-script)
post-install-script:
@${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

View File

@ -414,8 +414,6 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org
# Implies inclusion of bsd.python.mk. (Also see
# that file for more information on USE_PYTHON_*
# and USE_PYDISTUTILS).
# USE_R_MOD - If set, this port uses the Comprehensive R Archive Network.
# See bsd.cran.mk for more details.
# USE_RUBY - If set, this port relies on the Ruby language.
# Implies inclusion of bsd.ruby.mk. (Also see
# that file for more information on USE_RUBY_*).
@ -1428,10 +1426,6 @@ PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg
.include "${PORTSDIR}/Mk/bsd.java.mk"
.endif
.if defined(USE_R_MOD)
.include "${PORTSDIR}/Mk/bsd.cran.mk"
.endif
.if defined(USE_RUBY) || defined(USE_LIBRUBY)
.include "${PORTSDIR}/Mk/bsd.ruby.mk"
.endif

View File

@ -15,7 +15,6 @@ LICENSE_COMB= dual
RUN_DEPENDS= R-cran-sp>=1.0.11:${PORTSDIR}/math/R-cran-sp
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Serialize R objects to JSON, JavaScript Object Notation
LICENSE= BSD
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= JSON for R
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= R Database Interface
LICENSE= LGPL20 LGPL21 LGPL3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE= GPLv2
RUN_DEPENDS= R-cran-DBI>=0.2.2:${PORTSDIR}/databases/R-cran-DBI
USE_MYSQL= yes
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE= AL2
BUILD_DEPENDS= R-cran-RSQLite>=0.11.1:${PORTSDIR}/databases/R-cran-RSQLite
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE= LGPL20
BUILD_DEPENDS= R-cran-DBI>=0.2.5:${PORTSDIR}/databases/R-cran-DBI
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -20,7 +20,6 @@ BUILD_DEPENDS= R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto \
R-cran-RSQLite.extfuns>=0.0.1:${PORTSDIR}/databases/R-cran-RSQLite.extfuns
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Create Global Function Defaults
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -11,7 +11,6 @@ COMMENT= Harrell Miscellaneous functions useful for data analysis
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= R functions implementing a Unit Testing framework
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Seamless R and C++ Integration
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Functions for Bitwise operations
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ LICENSE= GPLv3
RUN_DEPENDS= R-cran-bitops>0:${PORTSDIR}/devel/R-cran-bitops
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -16,7 +16,6 @@ RUN_DEPENDS= R-cran-reshape2>0:${PORTSDIR}/devel/R-cran-reshape2 \
R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr \
R-cran-foreach>0:${PORTSDIR}/devel/R-cran-foreach
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= R package for creating objects which can handle dates and times
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,7 +14,6 @@ LICENSE= AL2
RUN_DEPENDS= R-cran-iterators>=1.0.0:${PORTSDIR}/devel/R-cran-iterators
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -11,7 +11,6 @@ COMMENT= Extensions to AdaBoost algorithm
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,9 +14,7 @@ LICENSE= GPLv2
RUN_DEPENDS= R-cran-gtools>0:${PORTSDIR}/devel/R-cran-gtools
USES= perl5
USES= cran:auto-plist perl5
USE_PERL5= run
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -11,7 +11,6 @@ COMMENT= Lasso and elastic-net regularized generalized linear models
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,7 +14,6 @@ LICENSE= GPLv2
RUN_DEPENDS= R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -11,7 +11,6 @@ COMMENT= Various R programming tools
LICENSE= LGPL21
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Iterator construct for R
LICENSE= AL2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Iterator Tools for R
RUN_DEPENDS= R-cran-iterators>=1.0.0:${PORTSDIR}/devel/R-cran-iterators
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Memoise functions for R
RUN_DEPENDS= R-cran-digest>=0:${PORTSDIR}/security/R-cran-digest
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Tools for splitting, applying, and combining data
RUN_DEPENDS= R-cran-itertools>0:${PORTSDIR}/devel/R-cran-itertools \
R-cran-iterators>0:${PORTSDIR}/devel/R-cran-iterators
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Prototype object-based programming
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -11,7 +11,6 @@ COMMENT= Classification based on a forest of trees using random inputs
RUN_DEPENDS= R-cran-RColorBrewer>=1.0.5_6:${PORTSDIR}/graphics/R-cran-RColorBrewer
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,7 +14,6 @@ LICENSE= MIT
RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE= MIT
RUN_DEPENDS= R-cran-plyr>=1.5:${PORTSDIR}/devel/R-cran-plyr \
R-cran-stringr>0:${PORTSDIR}/textproc/R-cran-stringr
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE= GPLv1
RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \
R-cran-xts>=0.8.9:${PORTSDIR}/math/R-cran-xts
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE= BSD
RUN_DEPENDS= R-cran-XML>0:${PORTSDIR}/textproc/R-cran-XML \
R-cran-xts>0:${PORTSDIR}/math/R-cran-xts
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,7 +14,6 @@ LICENSE= GPLv2
RUN_DEPENDS= R-cran-xts>=0.9.3:${PORTSDIR}/math/R-cran-xts
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Conditional Correlation GARCH models
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-timeDate>0:${PORTSDIR}/finance/R-cran-timeDate \
R-cran-stabledist>0:${PORTSDIR}/math/R-cran-stabledist \
R-cran-gss>0:${PORTSDIR}/math/R-cran-gss
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -17,7 +17,6 @@ RUN_DEPENDS= R-cran-timeDate>0:${PORTSDIR}/finance/R-cran-timeDate \
R-cran-timeSeries>0:${PORTSDIR}/finance/R-cran-timeSeries \
R-cran-fBasics>=2100.78:${PORTSDIR}/finance/R-cran-fBasics
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE_COMB= dual
RUN_DEPENDS= R-cran-sandwich>0:${PORTSDIR}/math/R-cran-sandwich
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -16,7 +16,6 @@ RUN_DEPENDS= R-cran-zoo>=0:${PORTSDIR}/math/R-cran-zoo \
R-cran-strucchange>0:${PORTSDIR}/finance/R-cran-strucchange \
R-cran-sandwich>=2.2.4:${PORTSDIR}/math/R-cran-sandwich
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-bdsmatrix>0:${PORTSDIR}/math/R-cran-bdsmatrix \
R-cran-sandwich>0:${PORTSDIR}/math/R-cran-sandwich \
R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -17,7 +17,6 @@ RUN_DEPENDS= R-cran-Defaults>0:${PORTSDIR}/devel/R-cran-Defaults \
R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \
R-cran-TTR>=0.2:${PORTSDIR}/finance/R-cran-TTR
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,7 +14,6 @@ LICENSE= GPLv2
RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \
R-cran-sandwich>0:${PORTSDIR}/math/R-cran-sandwich
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Chronological and Calendar Objects
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE_COMB= dual
RUN_DEPENDS= R-cran-timeDate>=2150.95:${PORTSDIR}/finance/R-cran-timeDate
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -18,7 +18,6 @@ BUILD_DEPENDS= R-cran-quadprog>0:${PORTSDIR}/math/R-cran-quadprog \
RUN_DEPENDS= R-cran-quadprog>0:${PORTSDIR}/math/R-cran-quadprog \
R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Unit root and cointegration tests for time series data
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-strucchange>0:${PORTSDIR}/finance/R-cran-strucchange \
R-cran-lmtest>=0.9.26:${PORTSDIR}/finance/R-cran-lmtest \
R-cran-sandwich>=2.2.4:${PORTSDIR}/math/R-cran-sandwich
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -16,7 +16,6 @@ BUILD_DEPENDS= curl-config:${PORTSDIR}/ftp/curl
RUN_DEPENDS= R-cran-bitops>0:${PORTSDIR}/devel/R-cran-bitops
LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -17,7 +17,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS}
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= ColorBrewer palettes
LICENSE= AL2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Color Space Manipulation
LICENSE= BSD
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE_COMB= dual
RUN_DEPENDS= R-cran-shape>0:${PORTSDIR}/graphics/R-cran-shape
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Color schemes for dichromats
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-plyr>=1.7.1:${PORTSDIR}/devel/R-cran-plyr \
R-cran-scales>=0.2.3:${PORTSDIR}/graphics/R-cran-scales \
R-cran-proto>=0:${PORTSDIR}/devel/R-cran-proto
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -18,7 +18,6 @@ LICENSE_PERMS_CW= auto-accept
RUN_DEPENDS= R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Bitmap Images ("Pixel Maps")
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE_COMB= dual
LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -16,8 +16,7 @@ LIB_DEPENDS= gdal:${PORTSDIR}/graphics/gdal \
proj:${PORTSDIR}/graphics/proj
RUN_DEPENDS= R-cran-sp>=1.0.9:${PORTSDIR}/math/R-cran-sp
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
R_POSTCMD_INSTALL_OPTIONS+= --configure-args="--with-proj-lib=${LOCALBASE}/lib"

View File

@ -15,7 +15,6 @@ RUN_DEPENDS= R-cran-pixmap>0:${PORTSDIR}/graphics/R-cran-pixmap
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-RColorBrewer>=0:${PORTSDIR}/graphics/R-cran-RColorBrewer \
R-cran-plyr>=1.2:${PORTSDIR}/devel/R-cran-plyr \
R-cran-labeling>=0:${PORTSDIR}/math/R-cran-labeling
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Functions for plotting graphical shapes, colors
LICENSE= GPLv3
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE= BSD
RUN_DEPENDS= R-cran-TTR>0:${PORTSDIR}/finance/R-cran-TTR \
R-cran-forecast>0:${PORTSDIR}/math/R-cran-forecast
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Extended Model Formulas
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Kalman filter and smoothers for exponential family state space models
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Functions for Learning Bayesian Inference
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -16,7 +16,6 @@ RUN_DEPENDS= R-cran-coda>0.11.3:${PORTSDIR}/math/R-cran-coda
# Actually required 4.0 or later, but at least 4.2 in the FreeBSD ports tree
USE_GCC= 4.2+
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Hidden Markov Models simulations and estimations
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= A R SVG graphics device
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,7 +14,6 @@ LICENSE_COMB= dual
RUN_DEPENDS= R-cran-Rcpp>=0.10.5:${PORTSDIR}/devel/R-cran-Rcpp
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -17,8 +17,7 @@ COMMENT= Supplementary distributions and RNG for R
LICENSE= GPLv2
BENCHMARK_SCRIPT= R-benchmark-25.R
R_MOD_AUTOPLIST= yes
USE_R_MOD= yes
USES= cran:auto-plist
WRKSRC = ${WRKDIR}/${PORTNAME}
.if defined(MAINTAINER_MODE)

View File

@ -13,7 +13,6 @@ COMMENT= Everyone's Statistical Software
BUILD_DEPENDS= R-cran-sandwich>=0:${PORTSDIR}/math/R-cran-sandwich
RUN_DEPENDS= R-cran-sandwich>=0:${PORTSDIR}/math/R-cran-sandwich
USE_R_MOD= yes
R_MOD_AUTOPLIST=yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Routines for Block Diagonal Symmetric matrices
LICENSE= LGPL20
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Companion to Applied Regression for R
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= wen@FreeBSD.org
COMMENT= Output analysis and diagnostics for MCMC
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Delaunay Triangulation and Dirichlet (Voronoi) Tessellation
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Generalized Dynamic Linear Modeler
LICENSE= GPLv2 GPLv3 BSD
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -20,7 +20,6 @@ RUN_DEPENDS= R-cran-tseries>0:${PORTSDIR}/finance/R-cran-tseries \
R-cran-RcppArmadillo>=0.2.35:${PORTSDIR}/math/R-cran-RcppArmadillo \
R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Fractionally differenced ARIMA aka ARFIMA(p,d,q) models
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= wen@FreeBSD.org
COMMENT= General Polygon Clipping Library for R
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= General Smoothing Splines
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -11,7 +11,6 @@ COMMENT= Arrange grobs in tables
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,8 +12,7 @@ COMMENT= R extension package for igraph
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.pre.mk>

View File

@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= wen@FreeBSD.org
COMMENT= Inline C, C++, Fortran function calls from R
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Provides a range of axis labeling algorithms
LICENSE= MIT
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= Provides an infrastructure for the management of survey data
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION:C/\./-/g:C/-/\./1}
MAINTAINER= wen@FreeBSD.org
COMMENT= Multivariate Normal and t Distributions
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= R implementation of an algorithm for non-negative least squares
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Collection of some tests commonly used for identifying outliers
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= drue@therub.org
COMMENT= Psych package for the R project
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Functions to solve Quadratic Programming Problems
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -14,7 +14,6 @@ LICENSE= GPLv2
RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= wen@FreeBSD.org
COMMENT= Smoothing methods for nonparametric regression and density estimation
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= R Classes and Methods for Spatial Data
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -17,7 +17,6 @@ RUN_DEPENDS= R-cran-sp>=0.9:${PORTSDIR}/math/R-cran-sp \
R-cran-coda>0:${PORTSDIR}/math/R-cran-coda \
R-cran-LearnBayes>0:${PORTSDIR}/math/R-cran-LearnBayes
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,8 +13,7 @@ COMMENT= A glm-like formula to define dynamic generalized linear models
RUN_DEPENDS= R-cran-mvtnorm>=0.9.96_11:${PORTSDIR}/math/R-cran-mvtnorm \
R-cran-KFAS>=0.9.11_3:${PORTSDIR}/math/R-cran-KFAS
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -13,7 +13,6 @@ COMMENT= Stable Distribution Functions
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -15,7 +15,6 @@ LICENSE_COMB= dual
RUN_DEPENDS= R-cran-zoo>=1.7.10:${PORTSDIR}/math/R-cran-zoo
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -12,7 +12,6 @@ COMMENT= S3 Infrastructure for Regular and Irregular Time Series
LICENSE= GPLv2
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
USES= cran:auto-plist
.include <bsd.port.mk>

Some files were not shown because too many files have changed in this diff Show More