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
39 lines
986 B
Makefile
39 lines
986 B
Makefile
# Created by: Hajimu UMEMOTO <ume@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= x-face-e21
|
|
PORTVERSION= 20070306
|
|
PORTREVISION= 19
|
|
CATEGORIES= mail elisp
|
|
MASTER_SITES= http://www.jpl.org/elips/
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
DISTNAME= ${PORTNAME}.el
|
|
EXTRACT_SUFX= .gz
|
|
|
|
MAINTAINER= ume@FreeBSD.org
|
|
COMMENT= X-Face utilities for Emacs
|
|
|
|
RUN_DEPENDS= uncompface:mail/faces
|
|
|
|
USES= emacs
|
|
|
|
NO_WRKSUBDIR= yes
|
|
EXTRACT_CMD= ${GZCAT}
|
|
EXTRACT_BEFORE_ARGS=
|
|
EXTRACT_AFTER_ARGS= > ${DISTNAME}
|
|
|
|
PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME} \
|
|
${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME}c
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC} && ${EMACS_CMD} -batch -q -no-site-file -no-init-file \
|
|
-f batch-byte-compile ${DISTNAME})
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${DISTNAME} \
|
|
${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${DISTNAME}c \
|
|
${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
|
|
.include <bsd.port.mk>
|