1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/misc/boxquote.el/Makefile
Andrey Slusar 468ef20f11 boxquote provides a set of functions for using a text quoting style that
partially boxes in the left hand side of an area of text, such a marking
style might be used to show externally included text or example code.

,----
| The default style looks like this.
`----

A number of functions are provided for quoting a region, a buffer, a
paragraph and a defun. There are also functions for quoting text while
pulling it in, either by inserting the contents of another file or by
yanking text into the current buffer.

WWW: http://www.davep.org/emacs/#boxquote.el
2006-07-14 12:58:28 +00:00

38 lines
900 B
Makefile

# New ports collection makefile for: boxquote.el
# Date created: 14 Jul 2006
# Whom: Andrey Slusar <anrays@gmail.com>
#
# $FreeBSD$
#
PORTNAME= boxquote.el
PORTVERSION= 1.18
CATEGORIES= misc elisp
MASTER_SITES= http://www.davep.org/emacs/
DISTNAME= ${PORTNAME}
EXTRACT_SUFX= # empty
EXTRACT_ONLY= # empty
MAINTAINER= anray@FreeBSD.org
COMMENT= Quote text with a semi-box in Emacs/XEmacs
NO_BUILD= yes
NO_WRKSUBDIR= yes
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
PLIST_FILES= share/emacs/site-lisp/${PORTNAME} lib/xemacs/site-lisp/${PORTNAME}
PLIST_DIRS= lib/xemacs/site-lisp lib/xemacs
do-install:
${MKDIR} ${EMACSLISPDIR}
${MKDIR} ${XEMACSLISPDIR}
${INSTALL_DATA} ${_DISTDIR}/${DISTNAME} ${EMACSLISPDIR}/${PORTNAME}
${LN} -sf ${EMACSLISPDIR}/${PORTNAME} ${XEMACSLISPDIR}
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>