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
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= boiled-mozc
|
|
PORTVERSION= 0.7
|
|
DISTVERSIONPREFIX=v
|
|
PORTREVISION= 7
|
|
CATEGORIES= japanese editors elisp
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= ume@FreeBSD.org
|
|
COMMENT= Wrapper to mozc.el that offers modeless ("boil"ed) input style
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
BUILD_DEPENDS= ja-mozc-el${EMACS_PKGNAMESUFFIX}>0:japanese/mozc-el@${EMACS_FLAVOR}
|
|
RUN_DEPENDS= ja-mozc-el${EMACS_PKGNAMESUFFIX}>0:japanese/mozc-el@${EMACS_FLAVOR}
|
|
|
|
USES= emacs
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tadanagao
|
|
|
|
PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}.el \
|
|
${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}.elc
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC} && ${EMACS_CMD} -batch -q -no-site-file -no-init-file \
|
|
-f batch-byte-compile ${PORTNAME}.el)
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.el \
|
|
${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.elc \
|
|
${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
|
|
.include <bsd.port.mk>
|