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
41 lines
836 B
Makefile
41 lines
836 B
Makefile
# Created by: KIMURA Yasuhiro <yasu@utahime.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= git-modes
|
|
DISTVERSION= 1.2.8
|
|
PORTREVISION= 4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel elisp
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= yasu@utahime.org
|
|
COMMENT= GNU Emacs modes for Git-related files
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= git:devel/git
|
|
|
|
USES= emacs gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= magit
|
|
NO_ARCH= yes
|
|
ALL_TARGET= lisp
|
|
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
ELISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
|
|
PLIST_SUB= ELISPDIR=${ELISPDIR}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${ELISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc \
|
|
${STAGEDIR}${PREFIX}/${ELISPDIR}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|