mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
bea2b0b802
Please refer to the 20200811 UPDATING entry when upgrading dependent (*-emacs26-*) ports. Port changes: - depend on math/gmp - match upstream by turning CAIRO, HARFBUZZ, and JSON options and on and turning MAGICK off by default - remove OPENMP check for graphics/ImageMagick as the openmp is now included in base - update EMACS_VER in Mk/Uses/emacs.mk - bump USES=emacs ports or remove BROKEN for net-im/jabber.el and deskutils/howm, which now build Submitted by: HIROSE Yuuji <yuuji@gentei.org> (canna patch) Reviewed by: ashish Differential Revision: https://reviews.freebsd.org/D23966
42 lines
858 B
Makefile
42 lines
858 B
Makefile
# Created by: Christopher J. Ruwe
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ess
|
|
DISTVERSION= 18.10.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://ess.r-project.org/downloads/ess/ \
|
|
http://stat.ethz.ch/ESS/downloads/ess/
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= rhurlin@gwdg.de
|
|
COMMENT= R support for Emacsen
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= R:math/R
|
|
|
|
USES= emacs gmake makeinfo perl5 tar:tgz
|
|
USE_PERL5= build
|
|
|
|
NO_ARCH= yes
|
|
|
|
INFO= ess
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|^DESTDIR|#DESTDIR| ; \
|
|
s|^PREFIX|#PREFIX| ; \
|
|
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>
|