mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +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
43 lines
897 B
Makefile
43 lines
897 B
Makefile
# Created by: Yoichi NAKAYAMA <yoichi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= elscreen
|
|
PORTVERSION= 1.4.6.20180320
|
|
PORTREVISION= 3
|
|
CATEGORIES= misc elisp
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Emacs utility similar to GNU Screen
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= apel${EMACS_PKGNAMESUFFIX}>0:editors/apel@${EMACS_FLAVOR}
|
|
|
|
USES= emacs
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= TakaakiFuruse
|
|
GH_PROJECT= ${PORTNAME}
|
|
GH_TAGNAME= 329b438
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= YES
|
|
|
|
PORTDOCS= GF-QuickStart GF-README Readme.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME}
|
|
(cd ${WRKSRC}; ${INSTALL_DATA} ${WRKSRC}/*.el \
|
|
${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME})
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-install-DOCS-on:
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|