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
38 lines
875 B
Makefile
38 lines
875 B
Makefile
# Created by: Kimura Fuyuki <fuyuki@mj.0038.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xml-lite.el
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 13
|
|
PORTEPOCH= 1
|
|
CATEGORIES= textproc elisp
|
|
MASTER_SITES= http://dogbiscuit.org/mdub/software/
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= # empty
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple XML-editing for GNU Emacs
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USES= emacs
|
|
|
|
NO_WRKSUBDIR= yes
|
|
EXTRACT_CMD= ${CP}
|
|
EXTRACT_BEFORE_ARGS=
|
|
EXTRACT_AFTER_ARGS=${WRKSRC}/${PORTNAME}
|
|
|
|
PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME} \
|
|
${EMACS_SITE_LISPDIR}/${PORTNAME}c
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile ${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}c \
|
|
${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
|
|
.include <bsd.port.mk>
|