mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
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
This commit is contained in:
parent
cf72e85dff
commit
468ef20f11
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167788
5 changed files with 57 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
|||
SUBDIR += bogosort
|
||||
SUBDIR += bottlerocket
|
||||
SUBDIR += boxes
|
||||
SUBDIR += boxquote.el
|
||||
SUBDIR += brs
|
||||
SUBDIR += bsdiff
|
||||
SUBDIR += buffer
|
||||
|
|
37
misc/boxquote.el/Makefile
Normal file
37
misc/boxquote.el/Makefile
Normal file
|
@ -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>
|
3
misc/boxquote.el/distinfo
Normal file
3
misc/boxquote.el/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (boxquote.el) = 0eb5cf149b38997d394e98edd1e5666b
|
||||
SHA256 (boxquote.el) = bd67e3fcf00e15930a27fe5c5306d519fbd4e6065b37150cc2ebfda9a36ff3ac
|
||||
SIZE (boxquote.el) = 19643
|
14
misc/boxquote.el/pkg-descr
Normal file
14
misc/boxquote.el/pkg-descr
Normal file
|
@ -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
|
2
misc/boxquote.el/pkg-message
Normal file
2
misc/boxquote.el/pkg-message
Normal file
|
@ -0,0 +1,2 @@
|
|||
To use boxquote in Emacs/XEmacs, add the (require 'boxquote) to your ~/.emacs
|
||||
or init.el
|
Loading…
Add table
Reference in a new issue