blob: 4dc1788f98826e78028d1083447de0cefb776d2d (
plain)
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
|
# $NetBSD: Makefile,v 1.13 2000/08/11 23:02:37 jlam Exp $
#
DISTNAME= R-1.1.0
CATEGORIES= math
MASTER_SITES= http://cran.r-project.org/src/base/ \
ftp://cran.r-project.org/pub/R/src/base/ \
http://lib.stat.cmu.edu/R/CRAN/src/base/ \
http://cran.stat.wisc.edu/src/base/ \
http://SunSITE.auc.dk/R/src/base/ \
ftp://ftp.u-aizu.ac.jp/pub/lang/R/CRAN/src/base/ \
ftp://dola.snu.ac.kr/pub/R/CRAN/src/base/ \
http://stat.ethz.ch/CRAN/src/base/ \
http://www.stats.bris.ac.uk/R/src/base/ \
http://cran.at.r-project.org/src/base/ \
ftp://cran.at.r-project.org/pub/R/src/base/
EXTRACT_SUFX= .tgz
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://cran.r-project.org/
BUILD_DEPENDS+= autoreconf:../../devel/autoconf
DEPENDS+= readline>=4.0:../../devel/readline
DEPENDS+= jpeg-*:../../graphics/jpeg
DEPENDS+= png-*:../../graphics/png
USE_FORTRAN= # defined
USE_X11= # defined
USE_PERL5= # defined
USE_GMAKE= # defined
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --with-x
CONFIGURE_ARGS+= --with-readline
CONFIGURE_ARGS+= --without-gnome # not yet stable
CONFIGURE_ARGS+= --without-tcltk # not yet stable
CONFIGURE_ARGS+= --without-atlas
CONFIGURE_ARGS+= --without-blas
CONFIGURE_ARGS+= --without-blas_risc
CONFIGURE_ARGS+= --without-dxml
CONFIGURE_ARGS+= --without-libmoto
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
CONFIGURE_ENV+= LIBS="${LIBS}"
CONFIGURE_ENV+= MAKE="${MAKE_PROGRAM}"
CPPFLAGS+= -I${LOCALBASE}/include # readline/readline.h
LIBS+= -ltermcap # -lreadline -ltermcap
.include "../../mk/bsd.prefs.mk"
# R_PAPERSIZE can be: A4, Letter, Legal, Executive
#
.if defined(PAPERSIZE)
R_PAPERSIZE?= ${PAPERSIZE}
.else
R_PAPERSIZE?= A4
.endif
.if (${R_PAPERSIZE} == "Letterdj")
R_PAPERSIZE= Letter
.endif
CONFIGURE_ENV+= R_PAPERSIZE="${R_PAPERSIZE}"
# These macros are used during the build, so strip off the -o,-g flags.
#
INSTALL_DATA= ${INSTALL} ${COPY} -m ${SHAREMODE}
INSTALL_SCRIPT= ${INSTALL} ${COPY} -m ${BINMODE}
pre-configure:
cd ${WRKSRC} && autoreconf
post-install:
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/R
.include "../../mk/bsd.pkg.mk"
|