diff options
author | sem <sem@FreeBSD.org> | 2006-04-18 02:33:58 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2006-04-18 02:33:58 +0800 |
commit | 68ee2efff5a38cf0939b4fbb3b5a5b7edc66f460 (patch) | |
tree | 8d486f41f5a090223326da6e16cdad4b58f473d5 /editors | |
parent | 96baed7725e200370da466f315272bb621d93a2a (diff) | |
download | freebsd-ports-gnome-68ee2efff5a38cf0939b4fbb3b5a5b7edc66f460.tar.gz freebsd-ports-gnome-68ee2efff5a38cf0939b4fbb3b5a5b7edc66f460.tar.zst freebsd-ports-gnome-68ee2efff5a38cf0939b4fbb3b5a5b7edc66f460.zip |
Ssam(1) is analogous to the stream editor sed(1), but uses the
sam(1) command set to provide improved functionality, and is aware
of the UTF character set. It uses the UTF-aware regular
expression library, ure(3).
WWW: http://www.westley.demon.co.uk/software.html
PR: ports/93818
Submitted by: Serge Gagnon <serge.gagnon@b2b2c.ca>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Makefile | 1 | ||||
-rw-r--r-- | editors/ssam/Makefile | 29 | ||||
-rw-r--r-- | editors/ssam/distinfo | 3 | ||||
-rw-r--r-- | editors/ssam/pkg-descr | 6 |
4 files changed, 39 insertions, 0 deletions
diff --git a/editors/Makefile b/editors/Makefile index b94fb51edb81..0ffe936e5e16 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -139,6 +139,7 @@ SUBDIR += spe SUBDIR += speedbar SUBDIR += speedbar-emacs20 + SUBDIR += ssam SUBDIR += ssed SUBDIR += staroffice5 SUBDIR += staroffice52 diff --git a/editors/ssam/Makefile b/editors/ssam/Makefile new file mode 100644 index 000000000000..b9e7a3275523 --- /dev/null +++ b/editors/ssam/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: ssam +# Date Created: 25 February 2006 +# Whom: Serge Gagnon <serge.gagnon@b2b2c.ca> +# +# $FreeBSD$ +# + +PORTNAME= ssam +PORTVERSION= 1.9 +CATEGORIES= editors +MASTER_SITES= http://www.westley.demon.co.uk/src/ + +MAINTAINER= serge.gagnon@b2b2c.ca +COMMENT= Stream editor that uses the UTF routines with the sam(1) command set + +BUILD_DEPENDS= ${LOCALBASE}/include/ure.h:${PORTSDIR}/misc/libutf + +GNU_CONFIGURE= YES +ALL_TARGET= ssam + +PLIST_FILES= bin/ssam + +MAN1= ssam.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ssam ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/ssam.1 ${MANPREFIX}/man/man1/ + +.include <bsd.port.mk> diff --git a/editors/ssam/distinfo b/editors/ssam/distinfo new file mode 100644 index 000000000000..bfee2e0278f0 --- /dev/null +++ b/editors/ssam/distinfo @@ -0,0 +1,3 @@ +MD5 (ssam-1.9.tar.gz) = 00d4b81c8c95e8bbad94b041203cd0d7 +SHA256 (ssam-1.9.tar.gz) = 711853d09aa321ef6cec340f9162ff05890bf880d0ca7155aa63d14b7b699e78 +SIZE (ssam-1.9.tar.gz) = 41186 diff --git a/editors/ssam/pkg-descr b/editors/ssam/pkg-descr new file mode 100644 index 000000000000..dc0b3c4306c3 --- /dev/null +++ b/editors/ssam/pkg-descr @@ -0,0 +1,6 @@ +Ssam(1) is analogous to the stream editor sed(1), but uses the +sam(1) command set to provide improved functionality, and is aware +of the UTF character set. It uses the UTF-aware regular +expression library, ure(3). + +WWW: http://www.westley.demon.co.uk/software.html |