c21f5cae29
Basically, this package contains: - Functions to automatically adjust and cycle the section underline decorations; - A mode that displays the table of contents and allows you to jump anywhere from it; - Functions to insert and automatically update a TOC in your source document; - A mode which supports font-lock highlighting of reStructuredText structures; - Some other convenience functions. This package is the result of merging: - restructuredtext.el - rst-mode.el - rst-html.el Those files are now OBSOLETE and have been replaced by this single package file (2005-10-30). WWW: http://docutils.sourceforge.net/docs/user/emacs.html PR: ports/102384 Submitted by: Denis Shaposhnikov <dsh at vlink.ru>
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# New ports collection makefile for: rst.el
|
|
# Date created: Sun Aug 20 18:39:03 MSD 2006
|
|
# Whom: Denis Shaposhnikov <dsh@vlink.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rst.el
|
|
PORTVERSION= 4655
|
|
CATEGORIES= textproc elisp
|
|
MASTER_SITES= http://svn.berlios.de/viewcvs/*checkout*/docutils/trunk/docutils/tools/editors/emacs/
|
|
PKGNAMESUFFIX= -${EMACS_NAME}
|
|
DISTNAME= rst.el\?rev=${PORTVERSION}
|
|
EXTRACT_SUFX= # empty
|
|
|
|
MAINTAINER= dsh@vlink.ru
|
|
COMMENT= ReStructuredText Support for Emacs
|
|
|
|
USE_EMACS= yes
|
|
EMACS_PORT_NAME?= xemacs21-mule
|
|
|
|
NO_WRKSUBDIR= yes
|
|
EXTRACT_CMD= ${CP}
|
|
EXTRACT_BEFORE_ARGS= # empty
|
|
EXTRACT_AFTER_ARGS= ${WRKSRC}/rst.el
|
|
|
|
PLIST_FILES= ${EMACS_SITE_LISPDIR}/rst.el \
|
|
${EMACS_SITE_LISPDIR}/rst.elc
|
|
|
|
ELISPDIR= ${TARGETDIR}/${EMACS_SITE_LISPDIR}
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile ${PORTNAME}
|
|
|
|
do-install:
|
|
${MKDIR} ${ELISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}c ${ELISPDIR}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|