mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
The Link Grammar Parser is a syntactic parser of English, based on link
grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labeled links connecting pairs of words. The parser also produces a "constituent" representation of a sentence (showing noun phrases, verb phrases, etc.). WWW: http://www.link.cs.cmu.edu/link/
This commit is contained in:
parent
2d636e9a5f
commit
fe3cd0525f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=135835
5 changed files with 146 additions and 0 deletions
|
@ -217,6 +217,7 @@
|
||||||
SUBDIR += libxml2
|
SUBDIR += libxml2
|
||||||
SUBDIR += libxode
|
SUBDIR += libxode
|
||||||
SUBDIR += libxslt
|
SUBDIR += libxslt
|
||||||
|
SUBDIR += link-grammar
|
||||||
SUBDIR += linux-aspell
|
SUBDIR += linux-aspell
|
||||||
SUBDIR += linux-expat
|
SUBDIR += linux-expat
|
||||||
SUBDIR += linux-libxml
|
SUBDIR += linux-libxml
|
||||||
|
|
38
textproc/link-grammar/Makefile
Normal file
38
textproc/link-grammar/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# New ports collection makefile for: link-grammar
|
||||||
|
# Date created: 22 May 2005
|
||||||
|
# Whom: Mezz <mezz@FreeBSD.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= link-grammar
|
||||||
|
PORTVERSION= 4.1.1
|
||||||
|
CATEGORIES= textproc
|
||||||
|
MASTER_SITES= http://www.abisource.com/downloads/${PORTNAME}/${PORTVERSION}/
|
||||||
|
|
||||||
|
MAINTAINER= gnome@FreeBSD.org
|
||||||
|
COMMENT= A grammar checking library
|
||||||
|
|
||||||
|
USE_GNOME= gnometarget
|
||||||
|
USE_GMAKE= yes
|
||||||
|
USE_REINPLACE= yes
|
||||||
|
INSTALLS_SHLIB= yes
|
||||||
|
USE_LIBTOOL_VER=15
|
||||||
|
|
||||||
|
DOCS= LICENSE README
|
||||||
|
|
||||||
|
post-patch:
|
||||||
|
@${REINPLACE_CMD} -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \
|
||||||
|
${WRKSRC}/Makefile.in
|
||||||
|
@${REINPLACE_CMD} -e 's|/words/|/en/words/|g' \
|
||||||
|
${WRKSRC}/data/en/4.0.dict
|
||||||
|
|
||||||
|
.ifndef (NOPORTDOCS)
|
||||||
|
post-install:
|
||||||
|
@${MKDIR} ${DOCSDIR}
|
||||||
|
.for i in ${DOCS}
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
2
textproc/link-grammar/distinfo
Normal file
2
textproc/link-grammar/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
MD5 (link-grammar-4.1.1.tar.gz) = c39f6ce4887e0737b70d4740680bce79
|
||||||
|
SIZE (link-grammar-4.1.1.tar.gz) = 703878
|
7
textproc/link-grammar/pkg-descr
Normal file
7
textproc/link-grammar/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
The Link Grammar Parser is a syntactic parser of English, based on link
|
||||||
|
grammar, an original theory of English syntax. Given a sentence, the system
|
||||||
|
assigns to it a syntactic structure, which consists of a set of labeled links
|
||||||
|
connecting pairs of words. The parser also produces a "constituent"
|
||||||
|
representation of a sentence (showing noun phrases, verb phrases, etc.).
|
||||||
|
|
||||||
|
WWW: http://www.link.cs.cmu.edu/link/
|
98
textproc/link-grammar/pkg-plist
Normal file
98
textproc/link-grammar/pkg-plist
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
bin/grammar-parse
|
||||||
|
include/link-grammar/analyze-linkage.h
|
||||||
|
include/link-grammar/and.h
|
||||||
|
include/link-grammar/api-structures.h
|
||||||
|
include/link-grammar/api.h
|
||||||
|
include/link-grammar/build-disjuncts.h
|
||||||
|
include/link-grammar/constituents.h
|
||||||
|
include/link-grammar/count.h
|
||||||
|
include/link-grammar/error.h
|
||||||
|
include/link-grammar/externs.h
|
||||||
|
include/link-grammar/extract-links.h
|
||||||
|
include/link-grammar/fast-match.h
|
||||||
|
include/link-grammar/idiom.h
|
||||||
|
include/link-grammar/link-includes.h
|
||||||
|
include/link-grammar/linkset.h
|
||||||
|
include/link-grammar/massage.h
|
||||||
|
include/link-grammar/post-process.h
|
||||||
|
include/link-grammar/pp_knowledge.h
|
||||||
|
include/link-grammar/pp_lexer.h
|
||||||
|
include/link-grammar/pp_linkset.h
|
||||||
|
include/link-grammar/preparation.h
|
||||||
|
include/link-grammar/print-util.h
|
||||||
|
include/link-grammar/print.h
|
||||||
|
include/link-grammar/prune.h
|
||||||
|
include/link-grammar/read-dict.h
|
||||||
|
include/link-grammar/resources.h
|
||||||
|
include/link-grammar/string-set.h
|
||||||
|
include/link-grammar/structures.h
|
||||||
|
include/link-grammar/tokenize.h
|
||||||
|
include/link-grammar/utilities.h
|
||||||
|
include/link-grammar/word-file.h
|
||||||
|
lib/liblink-grammar.a
|
||||||
|
lib/liblink-grammar.so
|
||||||
|
lib/liblink-grammar.so.5
|
||||||
|
libdata/pkgconfig/link-grammar.pc
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||||
|
%%DATADIR%%/en/4.0.affix
|
||||||
|
%%DATADIR%%/en/4.0.batch
|
||||||
|
%%DATADIR%%/en/4.0.constituent-knowledge
|
||||||
|
%%DATADIR%%/en/4.0.dict
|
||||||
|
%%DATADIR%%/en/4.0.knowledge
|
||||||
|
%%DATADIR%%/en/tiny.dict
|
||||||
|
%%DATADIR%%/en/words/words.adj.1
|
||||||
|
%%DATADIR%%/en/words/words.adj.2
|
||||||
|
%%DATADIR%%/en/words/words.adj.3
|
||||||
|
%%DATADIR%%/en/words/words.adv.1
|
||||||
|
%%DATADIR%%/en/words/words.adv.2
|
||||||
|
%%DATADIR%%/en/words/words.adv.3
|
||||||
|
%%DATADIR%%/en/words/words.n.1
|
||||||
|
%%DATADIR%%/en/words/words.n.2.s
|
||||||
|
%%DATADIR%%/en/words/words.n.2.x
|
||||||
|
%%DATADIR%%/en/words/words.n.3
|
||||||
|
%%DATADIR%%/en/words/words.n.4
|
||||||
|
%%DATADIR%%/en/words/words.n.c.1
|
||||||
|
%%DATADIR%%/en/words/words.n.c.2
|
||||||
|
%%DATADIR%%/en/words/words.n.p
|
||||||
|
%%DATADIR%%/en/words/words.n.t
|
||||||
|
%%DATADIR%%/en/words/words.s
|
||||||
|
%%DATADIR%%/en/words/words.v.1.1
|
||||||
|
%%DATADIR%%/en/words/words.v.1.2
|
||||||
|
%%DATADIR%%/en/words/words.v.1.3
|
||||||
|
%%DATADIR%%/en/words/words.v.1.4
|
||||||
|
%%DATADIR%%/en/words/words.v.1.p
|
||||||
|
%%DATADIR%%/en/words/words.v.10.1
|
||||||
|
%%DATADIR%%/en/words/words.v.10.2
|
||||||
|
%%DATADIR%%/en/words/words.v.10.3
|
||||||
|
%%DATADIR%%/en/words/words.v.10.4
|
||||||
|
%%DATADIR%%/en/words/words.v.2.1
|
||||||
|
%%DATADIR%%/en/words/words.v.2.2
|
||||||
|
%%DATADIR%%/en/words/words.v.2.3
|
||||||
|
%%DATADIR%%/en/words/words.v.2.4
|
||||||
|
%%DATADIR%%/en/words/words.v.2.5
|
||||||
|
%%DATADIR%%/en/words/words.v.4.1
|
||||||
|
%%DATADIR%%/en/words/words.v.4.2
|
||||||
|
%%DATADIR%%/en/words/words.v.4.3
|
||||||
|
%%DATADIR%%/en/words/words.v.4.4
|
||||||
|
%%DATADIR%%/en/words/words.v.4.5
|
||||||
|
%%DATADIR%%/en/words/words.v.5.1
|
||||||
|
%%DATADIR%%/en/words/words.v.5.2
|
||||||
|
%%DATADIR%%/en/words/words.v.5.3
|
||||||
|
%%DATADIR%%/en/words/words.v.5.4
|
||||||
|
%%DATADIR%%/en/words/words.v.6.1
|
||||||
|
%%DATADIR%%/en/words/words.v.6.2
|
||||||
|
%%DATADIR%%/en/words/words.v.6.3
|
||||||
|
%%DATADIR%%/en/words/words.v.6.4
|
||||||
|
%%DATADIR%%/en/words/words.v.6.5
|
||||||
|
%%DATADIR%%/en/words/words.v.8.1
|
||||||
|
%%DATADIR%%/en/words/words.v.8.2
|
||||||
|
%%DATADIR%%/en/words/words.v.8.3
|
||||||
|
%%DATADIR%%/en/words/words.v.8.4
|
||||||
|
%%DATADIR%%/en/words/words.v.8.5
|
||||||
|
%%DATADIR%%/en/words/words.y
|
||||||
|
@dirrm %%DATADIR%%/en/words
|
||||||
|
@dirrm %%DATADIR%%/en
|
||||||
|
@dirrm %%DATADIR%%
|
||||||
|
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||||
|
@dirrm include/link-grammar
|
Loading…
Add table
Reference in a new issue