diff options
author | Andrey Slusar <anray@FreeBSD.org> | 2006-07-14 12:58:28 +0000 |
---|---|---|
committer | Andrey Slusar <anray@FreeBSD.org> | 2006-07-14 12:58:28 +0000 |
commit | 468ef20f1159d0dfd752d89f3c7b9c09c53213a3 (patch) | |
tree | ba192a1f1e65d10e54140063fa0d400050ad3bf6 | |
parent | cf72e85dff2b53d181da49f05ccc58f0d55c50da (diff) | |
download | ports-468ef20f1159d0dfd752d89f3c7b9c09c53213a3.tar.gz ports-468ef20f1159d0dfd752d89f3c7b9c09c53213a3.zip |
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
Notes
Notes:
svn path=/head/; revision=167788
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/boxquote.el/Makefile | 37 | ||||
-rw-r--r-- | misc/boxquote.el/distinfo | 3 | ||||
-rw-r--r-- | misc/boxquote.el/pkg-descr | 14 | ||||
-rw-r--r-- | misc/boxquote.el/pkg-message | 2 |
5 files changed, 57 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index ce58ece2bfd2..65434e24c254 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -30,6 +30,7 @@ SUBDIR += bogosort SUBDIR += bottlerocket SUBDIR += boxes + SUBDIR += boxquote.el SUBDIR += brs SUBDIR += bsdiff SUBDIR += buffer diff --git a/misc/boxquote.el/Makefile b/misc/boxquote.el/Makefile new file mode 100644 index 000000000000..b385713bc239 --- /dev/null +++ b/misc/boxquote.el/Makefile @@ -0,0 +1,37 @@ +# 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> diff --git a/misc/boxquote.el/distinfo b/misc/boxquote.el/distinfo new file mode 100644 index 000000000000..24589f9de628 --- /dev/null +++ b/misc/boxquote.el/distinfo @@ -0,0 +1,3 @@ +MD5 (boxquote.el) = 0eb5cf149b38997d394e98edd1e5666b +SHA256 (boxquote.el) = bd67e3fcf00e15930a27fe5c5306d519fbd4e6065b37150cc2ebfda9a36ff3ac +SIZE (boxquote.el) = 19643 diff --git a/misc/boxquote.el/pkg-descr b/misc/boxquote.el/pkg-descr new file mode 100644 index 000000000000..018a69d45f00 --- /dev/null +++ b/misc/boxquote.el/pkg-descr @@ -0,0 +1,14 @@ +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 diff --git a/misc/boxquote.el/pkg-message b/misc/boxquote.el/pkg-message new file mode 100644 index 000000000000..8f005519d4bf --- /dev/null +++ b/misc/boxquote.el/pkg-message @@ -0,0 +1,2 @@ +To use boxquote in Emacs/XEmacs, add the (require 'boxquote) to your ~/.emacs +or init.el |