1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/editors/psgml-emacs/Makefile
Jun Kuriyama c5ae065ec2 o Use sgml-mode for *.html files instead of html-mode.
o Turn on syntax highlighting by default.
    If you want to disable this, please add (setq sgml-set-face nil) after
    (require 'psgml-startup) line.
2001-11-12 01:46:22 +00:00

65 lines
1.4 KiB
Makefile

# New ports collection makefile for: psgml for emacs
# Date created: 23 January 1999
# Whom: shige
#
# $FreeBSD$
#
PORTNAME= psgml
PORTVERSION= ${PSGML_VER}
PORTREVISION= 1
CATEGORIES= editors elisp
MASTER_SITES= ftp://ftp.lysator.liu.se/pub/sgml/
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
MAINTAINER?= shige@FreeBSD.org
# distfile version
PSGML_VER= 1.2.2
PSGML_STARTUPEL= psgml-startup.el
SCRIPTS_ENV= TARGETS="${PSGML_STARTUPEL}"
PLIST_SUB= PSGML_STARTUPEL=${PSGML_STARTUPEL}
# This is a master port.
PORTCLASS?= master
.if (${PORTCLASS} == "master")
EMACS_PORT_NAME= emacs
.endif
.include <bsd.port.pre.mk>
#
# emacs ports setup
#
.if defined(EMACS_PORT_NAME)
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --lispdir=${LOCALBASE}/${EMACS_LIBDIR}/site-lisp/psgml \
--infodir=${LOCALBASE}/info
CONFIGURE_ENV= EMACS=${EMACS_CMD}
.else
.BEGIN:
@${ECHO} "Error: Bad port."
@${ECHO} "You must define EMACS_PORT_NAME."
@${FALSE}
.endif
pre-configure:
(cd ${WRKSRC} ; \
for i in psgml.el psgml.texi ; do \
${RM} -f $${i}.in; \
${MV} $${i} $${i}.in; \
${CAT} $${i}.in | ${SED} -e "s;@prefix@;${LOCALBASE};g" > $${i}; \
done)
${CP} ${FILESDIR}/${PSGML_STARTUPEL}.in ${WRKDIR}
post-install:
@(cd ${WRKSRC} ; \
${MAKE} install-info ; \
)
@${INSTALL_DATA} ${WRKDIR}/${PSGML_STARTUPEL} \
${LOCALBASE}/${EMACS_LIBDIR}/site-lisp
.include <bsd.port.post.mk>