diff options
author | zuntum <zuntum@pkgsrc.org> | 2002-04-19 14:05:17 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2002-04-19 14:05:17 +0000 |
commit | 2ef35b80492c07d472ed58544b9aad308096a2ba (patch) | |
tree | c8d9ffa6c739d843e574e262439553ea4c5aade5 /editors/ve/Makefile | |
parent | e4fc702488b6713a014da14d72e29aed79a9c708 (diff) | |
download | pkgsrc-2ef35b80492c07d472ed58544b9aad308096a2ba.tar.gz |
Initial import of ve-1.0
NTHU-CS Maple BBS 2.36 BBS-like editor
ve is a tiny editor. Besides normal functions, it has some
great features for programmers --
goto line (ESC-G)
cut & paste cross files (Ctrl-G to see ve.hlp)
block shift left/right (ESC-J/K, Ctrl-G to see ve.hlp)
parenthesis matching (ESC-[)
seaching (Ctrl-S, ESC-n, ESC-p)
(matching start of line, case sensitive/in-sensitive, forward/backward)
undo line (ESC - '-', or ESC-_ )
undelete lines (ESC-u)
...
emacs-like hot-key
Provided by Rui-Xiang Guo <rxg@netbsd.org> in pkg/16268
Diffstat (limited to 'editors/ve/Makefile')
-rw-r--r-- | editors/ve/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/editors/ve/Makefile b/editors/ve/Makefile new file mode 100644 index 00000000000..5e7bf5867ce --- /dev/null +++ b/editors/ve/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/04/19 14:05:17 zuntum Exp $ + +DISTNAME= ve-1.0 +CATEGORIES= editors +MASTER_SITES= ftp://freebsd.ntu.edu.tw/FreeBSD/woju/source/ \ + ftp://freebsd.csie.nctu.edu.tw/pub/taiwan/NTU/woju/source/ +EXTRACT_SUFX= .tgz + +MAINTAINER= rxg@netbsd.org +COMMENT= NTHU-CS Maple BBS 2.36 BBS-like editor + +post-patch: + ${SED} "s,/usr/local,${PREFIX},g" ${WRKSRC}/edit.c > ${WRKSRC}/edit.c.done + ${MV} ${WRKSRC}/edit.c.done ${WRKSRC}/edit.c + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ve ${PREFIX}/bin + ${INSTALL_DATA_DIR} ${PREFIX}/share/ve + ${INSTALL_DATA} ${WRKSRC}/ve.hlp ${PREFIX}/share/ve + +.include "../../mk/bsd.pkg.mk" |