diff options
author | agc <agc@pkgsrc.org> | 2003-03-05 14:25:36 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2003-03-05 14:25:36 +0000 |
commit | f712d1277703907554ef014fed14b27e36f7f9d0 (patch) | |
tree | fc42c0773bf15d69ac6509c9facc0d3548437cd4 /editors/mined | |
parent | 12b0fe8e8f04d8bc0b3363add4c72ff95e930edd (diff) | |
download | pkgsrc-f712d1277703907554ef014fed14b27e36f7f9d0.tar.gz |
Initial import of mined-2000.5, an html-aware editor, into the NetBSD
Packages Collection.
Kind of provided in PR 20574 by Gan Uesli Starling, packaging by myself.
Mined is a text editor with
Good interactive features
an intuitive user interface
command control and pull-down menus available
control and function key or mouse control
Many useful text editing capabilities
extensive Unicode support, including double-width and combining
characters, keyboard mapping and script highlighting
many text editing features, e.g. paragraph wrapping, smart quotes,
multi-line support in search and replacement patterns
program editing features, HTML support and syntax highlighting,
identifier search
systematic text and file handling safety, avoiding loss of data
"Small-footprint" operation and portability
plain text mode (terminal) operation
instant start-up
cross-platform operation (Unix, DOS/Windows)
Diffstat (limited to 'editors/mined')
-rw-r--r-- | editors/mined/DESCR | 19 | ||||
-rw-r--r-- | editors/mined/Makefile | 19 | ||||
-rw-r--r-- | editors/mined/PLIST | 4 | ||||
-rw-r--r-- | editors/mined/distinfo | 5 | ||||
-rw-r--r-- | editors/mined/patches/patch-aa | 39 |
5 files changed, 86 insertions, 0 deletions
diff --git a/editors/mined/DESCR b/editors/mined/DESCR new file mode 100644 index 00000000000..e344f71e639 --- /dev/null +++ b/editors/mined/DESCR @@ -0,0 +1,19 @@ +Mined is a text editor with + Good interactive features + an intuitive user interface + command control and pull-down menus available + control and function key or mouse control + +Many useful text editing capabilities + extensive Unicode support, including double-width and combining + characters, keyboard mapping and script highlighting + many text editing features, e.g. paragraph wrapping, smart quotes, + multi-line support in search and replacement patterns + program editing features, HTML support and syntax highlighting, + identifier search + systematic text and file handling safety, avoiding loss of data + +"Small-footprint" operation and portability + plain text mode (terminal) operation + instant start-up + cross-platform operation (Unix, DOS/Windows) diff --git a/editors/mined/Makefile b/editors/mined/Makefile new file mode 100644 index 00000000000..ffc90948389 --- /dev/null +++ b/editors/mined/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/03/05 14:25:36 agc Exp $ +# + +DISTNAME= mined-2000.5 +CATEGORIES= editors +MASTER_SITES= http://towo.net/mined/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://towo.net/mined/ +COMMENT= html-aware editor + +USE_BUILDLINK2= yes + +WRKSRC= ${WRKDIR}/${DISTNAME}/src + +MAKEFILE= makefile.bsd + +.include "../../devel/ncurses/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/editors/mined/PLIST b/editors/mined/PLIST new file mode 100644 index 00000000000..864e3aa8c68 --- /dev/null +++ b/editors/mined/PLIST @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/03/05 14:25:36 agc Exp $ +bin/mined +share/help/mined.hlp +man/man1/mined.1 diff --git a/editors/mined/distinfo b/editors/mined/distinfo new file mode 100644 index 00000000000..920d8081e32 --- /dev/null +++ b/editors/mined/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/03/05 14:25:36 agc Exp $ + +SHA1 (mined-2000.5.tar.gz) = 76e08c1ecdf0a18be48dcdf624c8652c80a4a293 +Size (mined-2000.5.tar.gz) = 620587 bytes +SHA1 (patch-aa) = b6cdd15625e8651b61d91196552a56c296132237 diff --git a/editors/mined/patches/patch-aa b/editors/mined/patches/patch-aa new file mode 100644 index 00000000000..229206353a1 --- /dev/null +++ b/editors/mined/patches/patch-aa @@ -0,0 +1,39 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/03/05 14:25:36 agc Exp $ + +--- makefile.bsd 2003/03/03 15:02:38 1.1 ++++ makefile.bsd 2003/03/03 15:04:03 +@@ -4,10 +4,10 @@ + + ############################################################################# + # Where and how to install +-prefix = $(INSTALLROOT)/usr/local ++prefix = $(PREFIX) + bindir = $(prefix)/bin + helpdir = $(prefix)/share/help +-mandir = $(prefix)/share/man ++mandir = $(prefix)/man + INSTALL = install + #INSTALL = /bin/cp -p + +@@ -16,7 +16,7 @@ + # compilation target options + + # terminal handling mode 1: termio +-#SCREEN = -DTERMIO ++SCREEN = -DTERMIO + # link termcap functions: + #SLIB = -ltermcap # usual termcap library + #SLIB = -L/usr/lib/termcap -ltermcap # if deprecated (Linux) +@@ -24,10 +24,10 @@ + SLIB = -lncurses # includes termcap library (Linux) + + # terminal handling mode 2: sgtty (old, BSD) +-SCREEN = -DSGTTY ++#SCREEN = -DSGTTY + #SLIB = -ltermcap + # the following was reported to compile better on some BSD system: +-SLIB = -L/usr/local/lib -lncurses # includes termcap library ++#SLIB = -L/usr/local/lib -lncurses # includes termcap library + + # terminal handling mode 3: curses + # Choose curses only in case of emergency, else better leave it. |