diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2019-09-07 06:44:10 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2019-09-07 06:44:10 +0000 |
commit | 4394483e93004e9500c8fd4a939ce1136939b1ed (patch) | |
tree | b7e549cc493458817bd4a8bbf50424608f117185 /math/ess/Makefile | |
parent | 9665576959a38ebb213164e53a2e9c287ccf006d (diff) |
Notes
Diffstat (limited to 'math/ess/Makefile')
-rw-r--r-- | math/ess/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/math/ess/Makefile b/math/ess/Makefile index bfed6febca99..9ecc961ff68d 100644 --- a/math/ess/Makefile +++ b/math/ess/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ess -DISTVERSION= 17.11 -PORTREVISION= 6 +DISTVERSION= 18.10.2 CATEGORIES= math MASTER_SITES= http://ess.r-project.org/downloads/ess/ \ http://stat.ethz.ch/ESS/downloads/ess/ @@ -17,11 +16,11 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= R:math/R -NO_ARCH= yes - USES= emacs gmake makeinfo perl5 tar:tgz USE_PERL5= build +NO_ARCH= yes + INFO= ess OPTIONS_DEFINE= DOCS @@ -30,9 +29,12 @@ post-patch: @${REINPLACE_CMD} -e \ 's|^DESTDIR|#DESTDIR| ; \ s|^PREFIX|#PREFIX| ; \ - s|=$$(PREFIX)|=$$(DESTDIR)$$(PREFIX)|' \ - ${WRKSRC}/Makeconf + s|=$$(PREFIX)|=$$(DESTDIR)$$(PREFIX)| ; \ + s|share/info|${INFO_PATH}|' ${WRKSRC}/Makeconf @${REINPLACE_CMD} -e \ '/^PDFs/s|=.*|=|' ${WRKSRC}/doc/Makefile +post-install: + @${CP} ${WRKSRC}/lisp/*.el ${STAGEDIR}${PREFIX}/share/emacs/site-lisp/ess/ + .include <bsd.port.mk> |