openbsd-ports/math/R/Makefile
ian ae9fe2140b Update R to 1.4.1, removing patches that are now incorporated into R
and a few which are not really needed due to autoconfig.
2002-02-06 13:44:37 +00:00

43 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.5 2002/02/06 13:44:37 ian Exp $
# R, a clone of the S-Plus (based on AT&T S) statistical package
COMMENT= "clone of S, a powerful math/statistics/graphics language"
DISTNAME= R-1.4.1
CATEGORIES= math
NEED_VERSION= 1.359
HOMEPAGE= http://www.r-project.org/
MAINTAINER= Ian Darwin <ian@openbsd.org>
# Licensing: GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://cran.r-project.org/src/base/ \
http://cran.uk.r-project.org/src/base/ \
http://cran.us.r-project.org/src/base/ \
http://cran.dk.r-project.org/src/base/
EXTRACT_SUFX= .tgz
LIB_DEPENDS= jpeg.62::graphics/jpeg png.2::graphics/png
FAKE_FLAGS=PREFIX=${PREFIX} DESTDIR=${WRKINST}
MAKE_ENV+= SUDO=${SUDO}
USE_X11= Yes
CONFIGURE_STYLE= gnu dest
CONFIGURE_ARGS+= --with-readline
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC} ${WRKSRC}/tools
post-install:
cd ${PREFIX}/bin && \
sed -e "s@^R_HOME_DIR=.*@R_HOME_DIR=${TRUEPREFIX}/lib/R@" R > R.new && \
rm -f R && ${INSTALL_PROGRAM} R.new R
.include <bsd.port.mk>