openbsd-ports/math/R/Makefile
espie 86902fac99 Misc. minor fixes:
COMMENTS don't end with .
HOMEPAGE is there for a reason.
Only bsd.port.mk uses tabspaces set to 4.
pre-package does not run as root, post-install does.
copying files is not good enough to make them executable.
2001-04-05 13:00:21 +00:00

40 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.2 2001/04/05 13:00:21 espie 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.2.2
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
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}
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>