mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
2a0e4eb412
WordNet is a powerful lexical reference system that combines aspects of dictionaries and thesauri with current psycholinguistic theories of human lexical memory. It is produced by the Cognitive Science Laboratory at Princeton University, under the direction of Professor George Miller. PR: 17016 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# New ports collection makefile for: wordnet
|
|
# Date created: 26 Feb 2000
|
|
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wordnet
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ftp://ftp.cogsci.princeton.edu/pub/wordnet/ \
|
|
ftp://ftp.ims.uni-stuttgart.de/pub/WordNet/${PORTVERSION}/
|
|
DISTNAME= wn16.unix
|
|
|
|
MAINTAINER= mi@aldan.algebra.com
|
|
|
|
LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82
|
|
|
|
MAN1= wn.1 wnb.1 wnintro.1
|
|
MAN3= binsrch.3 morph.3 wnintro.3 wnsearch.3 wnutil.3
|
|
MAN5= cntlist.5 glossidx.5 lexnames.5 senseidx.5 taglist.5 \
|
|
wndb.5 wninput.5 wnintro.5
|
|
MAN7= morphy.7 uniqbeg.7 wngloss.7 wngroups.7 wnintro.7 \
|
|
wnlicens.7 wnpkgs.7 wnstats.7
|
|
MANCOMPRESSED= maybe
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME}
|
|
|
|
TCL_DVER= 8.2
|
|
SCRIPTS_ENV+= TCL_DVER=${TCL_DVER}
|
|
MAKE_ENV+= TCL_DVER=${TCL_DVER}
|
|
PLIST_SUB+= TCL_DVER=${TCL_DVER}
|
|
# Parallel build is faster even on a single cpu machine:
|
|
MAKE_ARGS= -j 2
|
|
|
|
post-extract:
|
|
# bin and lib contain useless pre-built binaries:
|
|
${RM} -rf ${WRKSRC}/bin ${WRKSRC}/lib
|
|
|
|
.include <bsd.port.mk>
|