diff options
author | johans <johans@FreeBSD.org> | 2012-01-02 20:14:53 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2012-01-02 20:14:53 +0800 |
commit | 3f94af66c021c53f695f0122bd706992f8b9556f (patch) | |
tree | 5be8dfa8f9ee85f8960e0c23b446a70b65a70c2e /editors | |
parent | 4e1455a568e714ff83b33dcded2ca7c028f0cf3c (diff) | |
download | freebsd-ports-gnome-3f94af66c021c53f695f0122bd706992f8b9556f.tar.gz freebsd-ports-gnome-3f94af66c021c53f695f0122bd706992f8b9556f.tar.zst freebsd-ports-gnome-3f94af66c021c53f695f0122bd706992f8b9556f.zip |
New port, by special request: GNU ed
GNU ed is a line-oriented text editor. It is used to create, display,
modify and otherwise manipulate text files, both interactively and via
shell scripts.
A restricted version of ed, red, can only edit files in the current
directory and cannot execute shell commands.
Ed is the "standard" text editor in the sense that it is the original
editor for Unix, and thus widely available. For most purposes, however,
it is superseded by full-screen editors such as Vi or Emacs.
WWW: http://www.gnu.org/software/ed/
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Makefile | 1 | ||||
-rw-r--r-- | editors/ged/Makefile | 25 | ||||
-rw-r--r-- | editors/ged/distinfo | 2 | ||||
-rw-r--r-- | editors/ged/pkg-descr | 12 |
4 files changed, 40 insertions, 0 deletions
diff --git a/editors/Makefile b/editors/Makefile index 518145770c52..901e0ee764d9 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -53,6 +53,7 @@ SUBDIR += fte SUBDIR += fxite SUBDIR += gate + SUBDIR += ged SUBDIR += gedit SUBDIR += gedit-plugins SUBDIR += ghex diff --git a/editors/ged/Makefile b/editors/ged/Makefile new file mode 100644 index 000000000000..58c672ebba6a --- /dev/null +++ b/editors/ged/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: ed +# Date created: Mon 2 Jan 2012 11:27:01 CET +# Whom: Johan van Selst <johans@sack.nl> +# +# $FreeBSD$ + +PORTNAME= ed +PORTVERSION= 1.6 +CATEGORIES= editors +MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= johans@FreeBSD.org +COMMENT= The GNU version of the ed editor + +INFO= ged + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --program-prefix=g + +PLIST_FILES= bin/ged bin/gred +MAN1= ged.1 +MLINKS= ged.1 gred.1 + +.include <bsd.port.mk> diff --git a/editors/ged/distinfo b/editors/ged/distinfo new file mode 100644 index 000000000000..3d23a89ef83f --- /dev/null +++ b/editors/ged/distinfo @@ -0,0 +1,2 @@ +SHA256 (ed-1.6.tar.gz) = 211c67b0c4aae277d34b1c5f842db1952e468e5905142868e4718ac838f08a65 +SIZE (ed-1.6.tar.gz) = 86691 diff --git a/editors/ged/pkg-descr b/editors/ged/pkg-descr new file mode 100644 index 000000000000..aa66edeb0f0b --- /dev/null +++ b/editors/ged/pkg-descr @@ -0,0 +1,12 @@ +GNU ed is a line-oriented text editor. It is used to create, display, +modify and otherwise manipulate text files, both interactively and via +shell scripts. + +A restricted version of ed, red, can only edit files in the current +directory and cannot execute shell commands. + +Ed is the "standard" text editor in the sense that it is the original +editor for Unix, and thus widely available. For most purposes, however, +it is superseded by full-screen editors such as Vi or Emacs. + +WWW: http://www.gnu.org/software/ed/ |