diff options
author | wiz <wiz> | 2010-04-14 20:19:28 +0000 |
---|---|---|
committer | wiz <wiz> | 2010-04-14 20:19:28 +0000 |
commit | 7a55cfa47abf6fe57124260939c62cd5c90db1f8 (patch) | |
tree | aca377557a22499c991b7872517fc386b1d023e4 /textproc/sgrep | |
parent | 1d891696fa5a8f0f67980784f4ec27d0c3316627 (diff) | |
download | pkgsrc-7a55cfa47abf6fe57124260939c62cd5c90db1f8.tar.gz |
Initial import of sgrep:
sgrep (structured grep) is a tool for searching and indexing text,
SGML,XML and HTML files and filtering text streams using structural
criteria. The data model of sgrep is based on regions, which are
nonempty substrings of text. Regions are typically occurrences of
constant strings, SGML-tags, or meaningful text elements, which
are recognizable through some delimiting strings or the builtin
SGML, XML and HTML parser. Regions can be arbitrarily long,
arbitrarily overlapping, and arbitrarily nested.
Sgrep is a convenient tool for making queries to almost any kind
of text files with some well kown structure. These include programs,
mail folders, news folders, HTML, SGML, etc... With relatively
simple queries you can display mail messages by their subject or
sender, extract titles or links or any regions from HTML files,
function prototypes from C or make complex queries to SGML files
based on the DTD of the file.
Diffstat (limited to 'textproc/sgrep')
-rw-r--r-- | textproc/sgrep/DESCR | 16 | ||||
-rw-r--r-- | textproc/sgrep/Makefile | 24 | ||||
-rw-r--r-- | textproc/sgrep/PLIST | 5 | ||||
-rw-r--r-- | textproc/sgrep/distinfo | 5 |
4 files changed, 50 insertions, 0 deletions
diff --git a/textproc/sgrep/DESCR b/textproc/sgrep/DESCR new file mode 100644 index 00000000000..88aab84b32f --- /dev/null +++ b/textproc/sgrep/DESCR @@ -0,0 +1,16 @@ +sgrep (structured grep) is a tool for searching and indexing text, +SGML,XML and HTML files and filtering text streams using structural +criteria. The data model of sgrep is based on regions, which are +nonempty substrings of text. Regions are typically occurrences of +constant strings, SGML-tags, or meaningful text elements, which +are recognizable through some delimiting strings or the builtin +SGML, XML and HTML parser. Regions can be arbitrarily long, +arbitrarily overlapping, and arbitrarily nested. + +Sgrep is a convenient tool for making queries to almost any kind +of text files with some well kown structure. These include programs, +mail folders, news folders, HTML, SGML, etc... With relatively +simple queries you can display mail messages by their subject or +sender, extract titles or links or any regions from HTML files, +function prototypes from C or make complex queries to SGML files +based on the DTD of the file. diff --git a/textproc/sgrep/Makefile b/textproc/sgrep/Makefile new file mode 100644 index 00000000000..2b623f8d931 --- /dev/null +++ b/textproc/sgrep/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2010/04/14 20:19:28 wiz Exp $ +# + +DISTNAME= sgrep-1.94a +CATEGORIES= textproc +MASTER_SITES= ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.cs.helsinki.fi/u/jjaakkol/sgrep.html +COMMENT= Tool for searching and indexing text, SGML,XML and HTML files +LICENSE= gnu-gpl-v2 + +PKG_DESTDIR_SUPPORT= user-destdir + +GNU_CONFIGURE= yes +# only used for example files +CONFIGURE_ARGS+= --datadir=${PREFIX}/share/examples/sgrep + +INSTALLATION_DIRS+= share/doc/sgrep + +post-install: + ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/sgrep + +.include "../../mk/bsd.pkg.mk" diff --git a/textproc/sgrep/PLIST b/textproc/sgrep/PLIST new file mode 100644 index 00000000000..e63b243102c --- /dev/null +++ b/textproc/sgrep/PLIST @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2010/04/14 20:19:28 wiz Exp $ +bin/sgrep +man/man1/sgrep.1 +share/doc/sgrep/README +share/examples/sgrep/sample.sgreprc diff --git a/textproc/sgrep/distinfo b/textproc/sgrep/distinfo new file mode 100644 index 00000000000..df2922702fc --- /dev/null +++ b/textproc/sgrep/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2010/04/14 20:19:28 wiz Exp $ + +SHA1 (sgrep-1.94a.tar.gz) = 4f6815d212ac6e1ed4eb2720f9b28963d1d0e99d +RMD160 (sgrep-1.94a.tar.gz) = d75f644fc4ba9b0eb916f8097bf58ebe4b73154c +Size (sgrep-1.94a.tar.gz) = 193267 bytes |