mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
a3eb92d435
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>
39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
# 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>
|