Add queequeg, a tiny English grammar checker for non-native speakers who

are not used to verb conjugation and number agreement.  We especially
focus on people who're writing academic papers or business documents
where thorough checking is required.  We aim to reduce this laborious
work with automated checking.

PR:		ports/63472
Submitted by:	Kimura Fuyuki <fuyuki@nigredo.org>
This commit is contained in:
Pav Lucistnik 2004-02-29 14:36:36 +00:00
parent 06357be904
commit a3eb92d435
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=102540
5 changed files with 67 additions and 0 deletions

View file

@ -421,6 +421,7 @@
SUBDIR += py-xmltools
SUBDIR += py2html
SUBDIR += pybook
SUBDIR += queequeg
SUBDIR += rand
SUBDIR += raptor
SUBDIR += redland

View file

@ -0,0 +1,38 @@
# New ports collection makefile for: Queequeg
# Date created: 28 February 2004
# Whom: Kimura Fuyuki <fuyuki@nigredo.org>
#
# $FreeBSD$
#
PORTNAME= queequeg
PORTVERSION= 0.91
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= fuyuki@nigredo.org
COMMENT= A tiny English grammar checker
BUILD_DEPENDS= wn:${PORTSDIR}/textproc/wordnet \
${PYTHON_SITELIBDIR}/cdbmodule.so:${PORTSDIR}/databases/py-cdb
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/cdbmodule.so:${PORTSDIR}/databases/py-cdb
USE_PYTHON= 2.3+
MAKE_ARGS= dict WORDNETDICT="${LOCALBASE}/share/WordNet-*"
.if !defined(NOPORTDOCS)
PORTDOCS= address.png index-e.html index.html
.endif
do-install:
${MKDIR} ${DATADIR}
${INSTALL_SCRIPT} ${WRKSRC}/qq ${DATADIR}
${LN} -shf ${DATADIR}/qq ${PREFIX}/bin/qq
${INSTALL_DATA} ${WRKSRC}/*.py ${WRKSRC}/dict.cdb ${DATADIR}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC}/htdocs; ${INSTALL_DATA} * ${DOCSDIR}
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
MD5 (queequeg-0.91.tar.gz) = 70d9d5d66206abaa505cbfee6f5c63db
SIZE (queequeg-0.91.tar.gz) = 69449

View file

@ -0,0 +1,7 @@
Queequeg is a tiny English grammar checker for non-native speakers who
are not used to verb conjugation and number agreement. We especially
focus on people who're writing academic papers or business documents
where thorough checking is required. We aim to reduce this laborious
work with automated checking.
WWW: http://queequeg.sourceforge.net/index-e.html

View file

@ -0,0 +1,19 @@
bin/qq
%%DATADIR%%/abstfilter.py
%%DATADIR%%/constraint.py
%%DATADIR%%/convdict.py
%%DATADIR%%/dict.cdb
%%DATADIR%%/dictionary.py
%%DATADIR%%/document.py
%%DATADIR%%/grammarerror.py
%%DATADIR%%/markupbase_rev.py
%%DATADIR%%/output.py
%%DATADIR%%/postagfix.py
%%DATADIR%%/pstring.py
%%DATADIR%%/qq
%%DATADIR%%/regpat.py
%%DATADIR%%/sentence.py
%%DATADIR%%/sgmllib_rev.py
%%DATADIR%%/texparser.py
%%DATADIR%%/unification.py
@dirrm %%DATADIR%%