diff options
author | cjones <cjones@pkgsrc.org> | 2001-06-08 20:50:11 +0000 |
---|---|---|
committer | cjones <cjones@pkgsrc.org> | 2001-06-08 20:50:11 +0000 |
commit | 3f93db328078288bb06b73e2c097b005312fe384 (patch) | |
tree | 491778c9e06ceb17664fe4608429e7b94fc51a54 /editors/speedbar | |
parent | 5352ed6a46d472b57ef7949fca4e85730dd6b51c (diff) | |
download | pkgsrc-3f93db328078288bb06b73e2c097b005312fe384.tar.gz |
Added the latest stable speedbar, a tree-structured file browser for
Emacs. Required for JDE.
Note that speedbar is already included with Emacs; this is a newer
version.
Diffstat (limited to 'editors/speedbar')
-rw-r--r-- | editors/speedbar/Makefile | 46 | ||||
-rw-r--r-- | editors/speedbar/distinfo | 4 | ||||
-rw-r--r-- | editors/speedbar/pkg/DESCR | 30 | ||||
-rw-r--r-- | editors/speedbar/pkg/PLIST | 21 |
4 files changed, 101 insertions, 0 deletions
diff --git a/editors/speedbar/Makefile b/editors/speedbar/Makefile new file mode 100644 index 00000000000..f089a2b44a7 --- /dev/null +++ b/editors/speedbar/Makefile @@ -0,0 +1,46 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/06/08 20:50:11 cjones Exp $ +# + +DISTNAME= speedbar-0.13a +CATEGORIES= editors devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cedet/} + +MAINTAINER= cjones@netbsd.org +HOMEPAGE= http://cedet.sourceforge.net/speedbar.shtml +COMMENT= Directory and code browser for emacs + +.include "../../mk/bsd.prefs.mk" + +.if defined(USE_XEMACS) +DEPENDS+= xemacs-*:../../editors/xemacs +EMACS= xemacs +LISPDIR= lib/xemacs/xemacs-packages/lisp/speedbar +.else +DEPENDS+= emacs-*:../../editors/emacs +EMACS= emacs +LISPDIR= share/emacs/site-lisp/speedbar +.endif + +BUILD_ENV+= EMACS=${EMACS} +PLIST_SUBST+= LISPDIR=${LISPDIR} + +NO_CONFIGURE= # set +USE_GMAKE= # set + +INFO_FILES= speedbar.info + +SRCS= speedbar.el dframe.el +IMAGES= sb-dir-plus.xpm sb-dir-minus.xpm sb-dir.xpm sb-pg-plus.xpm \ + sb-pg-minus.xpm sb-pg.xpm sb-mail.xpm sb-tag-plus.xpm \ + sb-tag-minus.xpm sb-tag.xpm sb-tag-gt.xpm sb-tag-v.xpm \ + sb-tag-type.xpm sb-image.el + + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} \ + ${PREFIX}/${LISPDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${IMAGES} ${PREFIX}/${LISPDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${INFO_FILES} ${PREFIX}/info + +.include "../../mk/bsd.pkg.mk" diff --git a/editors/speedbar/distinfo b/editors/speedbar/distinfo new file mode 100644 index 00000000000..f8e56b47a75 --- /dev/null +++ b/editors/speedbar/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2001/06/08 20:50:11 cjones Exp $ + +SHA1 (speedbar-0.13a.tar.gz) = 10adb4af2bef3cd1bd301103f79143fa0b21b231 +Size (speedbar-0.13a.tar.gz) = 79535 bytes diff --git a/editors/speedbar/pkg/DESCR b/editors/speedbar/pkg/DESCR new file mode 100644 index 00000000000..ebcd3c80840 --- /dev/null +++ b/editors/speedbar/pkg/DESCR @@ -0,0 +1,30 @@ +Speedbar is an Emacs Lisp program which allows you to create a special +skinny frame with a specialized directory listing in it. This listing +will have both directories and filtered files in it. You can then load +files into your emacs frame, or expand the files to display all the +tags that are in them and jump to those tags. You can also expand +multiple directories into your speedbar frame. + +Using Shift with the mouse is considered a "power click" which will +ignore any cached data that might be related to the navigation +desired. When loading a file, a power click will pull that file into a +new frame. + +For PC users with two button mice, a button1 double click acts as the +mouse-2 click most emacs users are familiar with. + +Additional keyboard commands are available for friendly file IO +functions such as Rename/Copy/Delete, Loading lisp files, and +compiling lisp files. + +Speedbar is more than just file browsing, however. Speedbar is a +generalized browser. Speedbar supports: + +* multiple tagging methods for files (such as etags, imenu, and + semantic) + +* multiple major display modes (such as buffer lists, project lists, + and EIEIO class browsing,) + +* multiple minor display modes that appear when you view special + files, such as Info pages, or read mail with RMAIL. diff --git a/editors/speedbar/pkg/PLIST b/editors/speedbar/pkg/PLIST new file mode 100644 index 00000000000..75b03c3d0ca --- /dev/null +++ b/editors/speedbar/pkg/PLIST @@ -0,0 +1,21 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2001/06/08 20:50:11 cjones Exp $ +${LISPDIR}/dframe.el +${LISPDIR}/dframe.elc +${LISPDIR}/sb-dir-minus.xpm +${LISPDIR}/sb-dir-plus.xpm +${LISPDIR}/sb-dir.xpm +${LISPDIR}/sb-image.el +${LISPDIR}/sb-mail.xpm +${LISPDIR}/sb-pg-minus.xpm +${LISPDIR}/sb-pg-plus.xpm +${LISPDIR}/sb-pg.xpm +${LISPDIR}/sb-tag-gt.xpm +${LISPDIR}/sb-tag-minus.xpm +${LISPDIR}/sb-tag-plus.xpm +${LISPDIR}/sb-tag-type.xpm +${LISPDIR}/sb-tag-v.xpm +${LISPDIR}/sb-tag.xpm +${LISPDIR}/speedbar.el +${LISPDIR}/speedbar.elc +info/speedbar.info +@unexec rmdir %D/${LISPDIR} 2>/dev/null || true |