mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +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
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# Created by: Shigeyuki Fukushima <shige@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= psgml
|
|
PORTVERSION= 1.4.0
|
|
PORTREVISION= 10
|
|
CATEGORIES= editors elisp
|
|
MASTER_SITES= SF/${PORTNAME}/ALPHA%20${PORTNAME}/1.3.2
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
DISTNAME= ${PORTNAME}-1.3.2
|
|
|
|
PATCH_SITES= LOCAL/hrs
|
|
PATCHFILES= psgml-symbol-conflict-050503.diff.gz
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Major mode for editing SGML and XML documents for Emacs
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= emacs
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS= --lispdir=${PSGML_LISPDIR}
|
|
CONFIGURE_ENV= EMACS=${EMACS_CMD}
|
|
SUB_FILES= ${PSGML_STARTUPEL}
|
|
SUB_LIST= PSGML_LISPDIR=${PSGML_LISPDIR}
|
|
PLIST_SUB= PSGML_STARTUPEL=${PSGML_STARTUPEL}
|
|
|
|
INFO= psgml psgml-api
|
|
|
|
PSGML_STARTUPEL= psgml-startup.el
|
|
PSGML_LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/psgml
|
|
|
|
post-install:
|
|
cd ${WRKSRC} && ${SETENV} DESTDIR="${STAGEDIR}" ${MAKE} install-info
|
|
${GZIP_CMD} ${STAGEDIR}${PSGML_LISPDIR}/*.el
|
|
${INSTALL_DATA} ${WRKDIR}/${PSGML_STARTUPEL} \
|
|
${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
|
|
.include <bsd.port.mk>
|