mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
aa89760550
- update math/R to 2.15.0, and adjust dependent ports - minor changes to bsd.cran.mk [2]: rename MASTER_CRAN_SITES to MASTER_SITE_CRAN, as in bsd.sites.mk; make the install target more flexible and allow CRAN ports to override it; add a regression-test target; set USE_FORTRAN to match math/R; remove some of the redundant checks of USE_R_MOD; honor NOPORTDATA and NOPORTDOCS Reviewed by: thierry, tota, wen Approved by: D. Rue (maintainer) [1], wen [2]
36 lines
787 B
Makefile
36 lines
787 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: rpy
|
|
# Date created: Jan 14, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rpy2
|
|
PORTVERSION= 2.2.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= math
|
|
MASTER_SITES= CHEESESHOP \
|
|
SF
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= Python interface to the R Programming Language
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy \
|
|
R:${PORTSDIR}/math/R
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy \
|
|
R:${PORTSDIR}/math/R
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/setup.py
|
|
|
|
pre-configure:
|
|
@(if [ ! -e ${LOCALBASE}/lib/R/lib/libR.so ] ; then \
|
|
${ECHO_MSG} "==> ${PKGNAME} requires math/R to be built WITH_LIBR" ; \
|
|
exit 1; fi)
|
|
|
|
.include <bsd.port.mk>
|