blob: a478bfca4b1058c57823c8405dbbe66d84f615cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# 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_SITES?= ${MASTER_SITE_CRAN}
USE_FORTRAN= yes
BUILD_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
RUN_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
PKGNAMEPREFIX?= R-cran-
R_MOD_DIR?= lib/R/library/${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
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)
.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:
@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 ${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}
.endif
.endif
|