summaryrefslogtreecommitdiff
path: root/editors/speedbar/Makefile
diff options
context:
space:
mode:
authorcjones <cjones>2001-06-08 20:50:11 +0000
committercjones <cjones>2001-06-08 20:50:11 +0000
commit0ba5a8e7d0425d1037f62d4acb8c299cb90e6af6 (patch)
tree491778c9e06ceb17664fe4608429e7b94fc51a54 /editors/speedbar/Makefile
parent4846523827ad13a52acebba81721393ff7685e3a (diff)
downloadpkgsrc-0ba5a8e7d0425d1037f62d4acb8c299cb90e6af6.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/Makefile')
-rw-r--r--editors/speedbar/Makefile46
1 files changed, 46 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"