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.
This commit is contained in:
parent
3b9c4c06e2
commit
904da09240
4 changed files with 50 additions and 0 deletions
16
textproc/sgrep/DESCR
Normal file
16
textproc/sgrep/DESCR
Normal file
|
@ -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.
|
24
textproc/sgrep/Makefile
Normal file
24
textproc/sgrep/Makefile
Normal file
|
@ -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"
|
5
textproc/sgrep/PLIST
Normal file
5
textproc/sgrep/PLIST
Normal file
|
@ -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
|
5
textproc/sgrep/distinfo
Normal file
5
textproc/sgrep/distinfo
Normal file
|
@ -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
|
Loading…
Reference in a new issue