summaryrefslogtreecommitdiff
path: root/editors/jed
diff options
context:
space:
mode:
authorhwr <hwr@pkgsrc.org>1998-10-31 23:16:12 +0000
committerhwr <hwr@pkgsrc.org>1998-10-31 23:16:12 +0000
commitfa3018abc26d86cbd7fb96b30e8afc031c7490db (patch)
tree8c1fef70e492cf4b522c531c472aba69ef469562 /editors/jed
parenta0044c9eb4aafcaa598b6e8efeb5bdcb85cdc087 (diff)
downloadpkgsrc-fa3018abc26d86cbd7fb96b30e8afc031c7490db.tar.gz
Import of the Jed editor. Jed is powerful and extensible through
S-Lang functions.
Diffstat (limited to 'editors/jed')
-rw-r--r--editors/jed/Makefile22
-rw-r--r--editors/jed/files/md53
-rw-r--r--editors/jed/patches/patch-aa11
-rw-r--r--editors/jed/patches/patch-ab14
-rw-r--r--editors/jed/pkg/COMMENT1
-rw-r--r--editors/jed/pkg/DESCR10
-rw-r--r--editors/jed/pkg/MESSAGE2
-rw-r--r--editors/jed/pkg/PLIST136
-rw-r--r--editors/jed/scripts/post-install5
9 files changed, 204 insertions, 0 deletions
diff --git a/editors/jed/Makefile b/editors/jed/Makefile
new file mode 100644
index 00000000000..16397acb8d1
--- /dev/null
+++ b/editors/jed/Makefile
@@ -0,0 +1,22 @@
+# $NetBSD: Makefile,v 1.1.1.1 1998/10/31 23:16:12 hwr Exp $
+
+DISTNAME= jed0.98-7
+CATEGORIES= editors
+MASTER_SITES= ftp://space.mit.edu/pub/davis/jed/ \
+ ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/jed/
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://space.mit.edu/%7Edavis/jed.html
+
+BUILD_DEPENDS+= libslang-1.2.2:../../devel/libslang
+DEPENDS+= libslang-1.2.2:../../devel/libslang
+
+
+CONFIGURE_ARGS+= --without-X --prefix=${PREFIX}
+GNU_CONFIGURE= yes
+
+WRKSRC= ${WRKDIR}/jed
+
+.include "../../mk/bsd.pkg.mk"
+
+
diff --git a/editors/jed/files/md5 b/editors/jed/files/md5
new file mode 100644
index 00000000000..c3c0eb958d5
--- /dev/null
+++ b/editors/jed/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 1998/10/31 23:16:12 hwr Exp $
+
+MD5 (jed0.98-7.tar.gz) = 868a0003cc169fbd559273085c838d78
diff --git a/editors/jed/patches/patch-aa b/editors/jed/patches/patch-aa
new file mode 100644
index 00000000000..1ee17dc69de
--- /dev/null
+++ b/editors/jed/patches/patch-aa
@@ -0,0 +1,11 @@
+$NetBSD: patch-aa,v 1.1.1.1 1998/10/31 23:16:12 hwr Exp $
+--- configure.orig Wed Feb 11 17:57:02 1998
++++ configure Sat Oct 31 22:39:03 1998
+@@ -2434,6 +2434,7 @@
+ # version.
+
+ JD_Search_Dirs="$JD_Search_Dirs \
++ /usr/pkg/include,/usr/pkg/lib \
+ /usr/local/include,/usr/local/lib \
+ /usr/include,/usr/lib \
+ /usr/include/slang,/usr/lib \
diff --git a/editors/jed/patches/patch-ab b/editors/jed/patches/patch-ab
new file mode 100644
index 00000000000..784989446e5
--- /dev/null
+++ b/editors/jed/patches/patch-ab
@@ -0,0 +1,14 @@
+$NetBSD: patch-ab,v 1.1.1.1 1998/10/31 23:16:12 hwr Exp $
+--- src/Makefile.in.orig Wed Feb 11 17:57:16 1998
++++ src/Makefile.in Sat Oct 31 22:43:41 1998
+@@ -13,8 +13,8 @@
+ prefix = @prefix@
+ exec_prefix = @exec_prefix@
+ #JED_ROOT = $(HOME)/src/jed# <--- make sure # is at end of file!!
+-#JED_ROOT = $(prefix)/jed# <--- make sure # is at end of file!!
+-JED_ROOT = @JED_ROOT@# <--- make sure # is at end of file!!
++JED_ROOT = $(prefix)/share/jed# <--- make sure # is at end of file!!
++#JED_ROOT = @JED_ROOT@# <--- make sure # is at end of file!!
+ BIN_DIR = @bindir@
+ MAN_DIR = @mandir@/man1
+ INSTALL = @INSTALL@
diff --git a/editors/jed/pkg/COMMENT b/editors/jed/pkg/COMMENT
new file mode 100644
index 00000000000..574f268d4ca
--- /dev/null
+++ b/editors/jed/pkg/COMMENT
@@ -0,0 +1 @@
+Texteditor with many features, extensible through S-Lang functions.
diff --git a/editors/jed/pkg/DESCR b/editors/jed/pkg/DESCR
new file mode 100644
index 00000000000..f9e08b220e9
--- /dev/null
+++ b/editors/jed/pkg/DESCR
@@ -0,0 +1,10 @@
+JED is a freely available text editor for Unix, VMS, MSDOS, OS/2, and
+MS Windows.
+
+Features include:
+ * Color syntax highlighting on color terminals.
+ * Folding support (New for 0.98!)
+ * Extensible in a language resembling C. Completely customizable.
+ * Capable of read GNU info files from within JED's info browser
+ * A variety of programming modes (with syntax highlighting) are
+ available including C, C++, FORTRAN, TeX, HTML, SH, IDL, DCL, NROFF...
diff --git a/editors/jed/pkg/MESSAGE b/editors/jed/pkg/MESSAGE
new file mode 100644
index 00000000000..74afe95bf0a
--- /dev/null
+++ b/editors/jed/pkg/MESSAGE
@@ -0,0 +1,2 @@
+You might have a look at /usr/pkg/share/jed/lib/* and install a
+file defaults.sl for site defaults there.
diff --git a/editors/jed/pkg/PLIST b/editors/jed/pkg/PLIST
new file mode 100644
index 00000000000..bb9b48c7a2d
--- /dev/null
+++ b/editors/jed/pkg/PLIST
@@ -0,0 +1,136 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 1998/10/31 23:16:12 hwr Exp $
+bin/jed
+bin/rgrep
+man/man1/rgrep.1
+man/man1/jed.1
+@exec mkdir %D/share/jed
+@exec mkdir %D/share/jed/bin
+@exec mkdir %D/share/jed/doc
+@exec mkdir %D/share/jed/info
+share/jed/lib/tclmode.sl
+share/jed/lib/tm2sgml.sl
+share/jed/lib/ashell.sl
+share/jed/lib/bufed.sl
+share/jed/lib/macro.sl
+share/jed/lib/perl.sl
+share/jed/lib/filter.sl
+share/jed/lib/keycode.sl
+share/jed/lib/modehook.sl
+share/jed/lib/brief.sl
+share/jed/lib/lisp.sl
+share/jed/lib/javamode.sl
+share/jed/lib/html.sl
+share/jed/lib/nroff.sl
+share/jed/lib/pscript.sl
+share/jed/lib/abbrev.sl
+share/jed/lib/abbrmisc.sl
+share/jed/lib/binary.sl
+share/jed/lib/bookmark.sl
+share/jed/lib/buf.sl
+share/jed/lib/bytecomp.sl
+share/jed/lib/cal.sl
+share/jed/lib/cmisc.sl
+share/jed/lib/cmode.sl
+share/jed/lib/compile.sl
+share/jed/lib/acompile.sl
+share/jed/lib/cpright.hlp
+share/jed/lib/ctags.sl
+share/jed/lib/dabbrev.sl
+share/jed/lib/dcl.sl
+share/jed/lib/digraph.sl
+share/jed/lib/dired.sl
+share/jed/lib/dispesc.sl
+share/jed/lib/dos437.sl
+share/jed/lib/dos850.sl
+share/jed/lib/edt.hlp
+share/jed/lib/edt.sl
+share/jed/lib/emacs.hlp
+share/jed/lib/emacs.sl
+share/jed/lib/emacsmsc.sl
+share/jed/lib/fortran.sl
+share/jed/lib/f90.sl
+share/jed/lib/ff90.sl
+share/jed/lib/generic.hlp
+share/jed/lib/help.sl
+share/jed/lib/idl.sl
+share/jed/lib/info.sl
+share/jed/lib/isearch.sl
+share/jed/lib/iso-latin.sl
+share/jed/lib/iso-lat2.sl
+share/jed/lib/iso2xxx.sl
+share/jed/lib/ispell.sl
+share/jed/lib/jed.hlp
+share/jed/lib/jed.rc
+share/jed/lib/jedhelp.sl
+share/jed/lib/krconv.sl
+share/jed/lib/bibtex.sl
+share/jed/lib/latex.sl
+share/jed/lib/latex209.sl
+share/jed/lib/linux.sl
+share/jed/lib/ltx-comp.dat
+share/jed/lib/ltx-math.sl
+share/jed/lib/mail.sl
+share/jed/lib/man.sl
+share/jed/lib/maple.sl
+share/jed/lib/menu.sl
+share/jed/lib/mini.sl
+share/jed/lib/misc.sl
+share/jed/lib/mkdoc.sl
+share/jed/lib/mktex.sl
+share/jed/lib/most.sl
+share/jed/lib/mouse.sl
+share/jed/lib/mswmouse.sl
+share/jed/lib/mousex.sl
+share/jed/lib/mutekeys.sl
+share/jed/lib/os.sl
+share/jed/lib/pipe.sl
+share/jed/lib/pushmode.sl
+share/jed/lib/pymode.sl
+share/jed/lib/preparse.sl
+share/jed/lib/regexp.sl
+share/jed/lib/replace.sl
+share/jed/lib/rmail.sl
+share/jed/lib/mime.sl
+share/jed/lib/sendmail.sl
+share/jed/lib/mailalias.sl
+share/jed/lib/register.sl
+share/jed/lib/rot13.sl
+share/jed/lib/search.sl
+share/jed/lib/shell.sl
+share/jed/lib/shmode.sl
+share/jed/lib/simple.hlp
+share/jed/lib/site.sl
+share/jed/lib/slmode.sl
+share/jed/lib/sort.sl
+share/jed/lib/folding.sl
+share/jed/lib/sortmisc.sl
+share/jed/lib/srchmisc.sl
+share/jed/lib/syntax.sl
+share/jed/lib/tabs.sl
+share/jed/lib/tex.sl
+share/jed/lib/texcom.sl
+share/jed/lib/tmisc.sl
+share/jed/lib/textmac.sl
+share/jed/lib/tpascal.sl
+share/jed/lib/untab.sl
+share/jed/lib/util.sl
+share/jed/lib/occur.sl
+share/jed/lib/vms_shell.com
+share/jed/lib/vmshelp.sl
+share/jed/lib/wmenu.sl
+share/jed/lib/wmark.sl
+share/jed/lib/wordstar.sl
+share/jed/lib/wordstar.hlp
+share/jed/lib/yankpop.sl
+share/jed/lib/verilog.sl
+share/jed/lib/spicemod.sl
+share/jed/lib/vhdlmode.sl
+share/jed/lib/tm/linuxdoc.tm
+share/jed/lib/ide.sl
+share/jed/lib/compat.sl
+@dirrm share/jed/lib/tm
+@dirrm share/jed/lib
+@dirrm share/jed/bin
+@dirrm share/jed/info
+@dirrm share/jed/doc
+@dirrm share/jed
diff --git a/editors/jed/scripts/post-install b/editors/jed/scripts/post-install
new file mode 100644
index 00000000000..3686402ac0c
--- /dev/null
+++ b/editors/jed/scripts/post-install
@@ -0,0 +1,5 @@
+#!/bin/sh
+# $NetBSD: post-install,v 1.1.1.1 1998/10/31 23:16:12 hwr Exp $
+echo "Installing lib files now"
+cd ${WRKSRC}
+tar cf - lib | (cd ${PREFIX}/share/jed ; tar xf - )