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
33 lines
764 B
Makefile
33 lines
764 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dash.el
|
|
PORTVERSION= 2.17.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel elisp
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= yasu@utahime.org
|
|
COMMENT= Modern list library for Emacs
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= emacs
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= magnars
|
|
|
|
NO_ARCH= yes
|
|
PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/dash.el \
|
|
${EMACS_VERSION_SITE_LISPDIR}/dash.elc \
|
|
${EMACS_VERSION_SITE_LISPDIR}/dash-functional.el \
|
|
${EMACS_VERSION_SITE_LISPDIR}/dash-functional.elc
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} \
|
|
&& ${EMACS_CMD} -Q -batch -L . -f batch-byte-compile *.el)
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} *.el* \
|
|
${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR})
|
|
|
|
.include <bsd.port.mk>
|