Index: head/textproc/wordnet/Makefile =================================================================== --- head/textproc/wordnet/Makefile (revision 49409) +++ head/textproc/wordnet/Makefile (revision 49410) @@ -1,38 +1,34 @@ # New ports collection makefile for: wordnet # Date created: 26 Feb 2000 # Whom: Mikhail Teterin # # $FreeBSD$ # PORTNAME= wordnet -PORTVERSION= 1.6 +PORTVERSION= 1.7 CATEGORIES= textproc -MASTER_SITES= ftp://ftp.cogsci.princeton.edu/pub/wordnet/ \ +MASTER_SITES= ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PORTVERSION}/ \ ftp://ftp.ims.uni-stuttgart.de/pub/WordNet/${PORTVERSION}/ -DISTFILES= wn16.unix.tar.gz +DISTFILES= wn${PORTVERSION:S/.//}.unix.tar.gz MAINTAINER= mi@aldan.algebra.com LIB_DEPENDS= tk83.1:${PORTSDIR}/x11-toolkits/tk83 -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 - TCL_DVER= 8.3 SCRIPTS_ENV+= TCL_DVER=${TCL_DVER} MAKE_ENV+= TCL_DVER=${TCL_DVER} -PLIST_SUB+= TCL_DVER=${TCL_DVER} +PLIST_SUB+= TCL_DVER=${TCL_DVER} VER=${PORTVERSION} # Parallel build is faster even on a single cpu machine: MAKE_ARGS= -j 2 +NO_WRKSUBDIR= yes -post-extract: - # bin and lib contain useless pre-built binaries: - ${RM} -rf ${WRKSRC}/bin ${WRKSRC}/lib +.include -.include +.for s in 1 3 5 7 +MAN$s!= ${MAKE} -f ${FILESDIR}/man.Makefile -V MAN$s +.endfor +MANCOMPRESSED= maybe + +.include Property changes on: head/textproc/wordnet/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/textproc/wordnet/distinfo =================================================================== --- head/textproc/wordnet/distinfo (revision 49409) +++ head/textproc/wordnet/distinfo (revision 49410) @@ -1,2 +1 @@ -MD5 (wn16.unix.tar.gz) = cb6b9cedd139cacb5928c4fb49b4b7a6 -MD5 (semcor16.tar.gz) = 1a635e2ff96145c4308188e056448deb +MD5 (wn17.unix.tar.gz) = 96a1c6d54ed19edd8e44e51042364c7d Property changes on: head/textproc/wordnet/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/patch-official =================================================================== --- head/textproc/wordnet/files/patch-official (revision 49409) +++ head/textproc/wordnet/files/patch-official (nonexistent) @@ -1,122 +0,0 @@ -This patch mostly contains the differences between the search.c as in -the released version 1.6 vs. the later version found in - ftp://ftp.cogsci.princeton.edu/pub/wordnet/bugfixes/ - -I also modified the groupexc function to fix the problem documented in - ftp://ftp.cogsci.princeton.edu/pub/wordnet/README.bugs -(buf[8] vs. buf[9] -- point 5 at the bottom) and modified it to avoid -allocating 1Kb from the stack and needlessly strcpy the argument given. -Nothing gets written into the string anyway, and we can examine it -without making a duplicate copy. -mi - ---- src/lib/search.c Fri Nov 7 11:27:45 1997 -+++ src/lib/search.c Fri Aug 7 12:57:08 1998 -@@ -19,3 +19,3 @@ - --static char *Id = "$Id: search.c,v 1.134 1997/11/07 16:27:36 wn Exp $"; -+static char *Id = "$Id: search.c,v 1.136 1998/08/07 17:51:32 wn Exp $"; - -@@ -448,2 +448,7 @@ - -+ /* Can't do earlier - calls indexlookup which messes up strtok calls */ -+ -+ for (i = 0; i < synptr->wcount; i++) -+ synptr->wnsns[i] = getsearchsense(synptr, i + 1); -+ - return(synptr); -@@ -588,3 +593,3 @@ - sprintf(tbuf, " (Sense %d)\n", -- getsearchsense(cursyn, synptr->pto[i])); -+ cursyn->wnsns[synptr->pto[i] - 1]); - printsynset(prefix, cursyn, tbuf, DEFOFF, synptr->pto[i], -@@ -1405,16 +1405,15 @@ - - static int groupexc(unsigned long off1, unsigned long off2) - { -- char buf[8], *p, linebuf[1024]; -+ char buf[9], *p, *line; - - sprintf(buf, "%8.8lu", (off1 < off2 ? off1 : off2)); - - if ((p = bin_search(buf, cousinexcfp)) != NULL) { - sprintf(buf, "%8.8lu", (off2 > off1 ? off2 : off1)); -- strcpy(linebuf, p + 9); /* don't copy key */ -- linebuf[strlen(linebuf) - 1] = '\0'; /* strip off newline */ -- p = strtok(linebuf, " "); -- while (p && strcmp(p, buf)) -+ line = p + 9; /* ignore the key */ -+ p = strtok(line, " "); -+ while (p && strncmp(p, buf, 8)) - p = strtok(NULL, " "); - } - return(p ? 1 : 0); -@@ -1775,2 +1780,8 @@ - wnresults.numforms++; -+ -+ if (ptrtyp == COORDS) { /* clean up by removing hypernym */ -+ lastsyn = synlist->ptrlist; -+ synlist->ptrlist = lastsyn->ptrlist; -+ free_synset(lastsyn); -+ } - } -@@ -1781,3 +1792,3 @@ - /* Recursive search algorithm to trace a pointer tree and return results -- in linked list of data structures. */ -+ in linked list of data structures. */ - -@@ -1785,4 +1796,5 @@ - { -- int i; -+ int i, j; - SynsetPtr cursyn, synlist = NULL, lastsyn = NULL; -+ int tstptrtyp, docoords; - -@@ -1805,5 +1817,13 @@ - } -- -+ -+ if (ptrtyp == COORDS) { -+ tstptrtyp = HYPERPTR; -+ docoords = 1; -+ } else { -+ tstptrtyp = ptrtyp; -+ docoords = 0; -+ } -+ - for (i = 0; i < synptr->ptrcount; i++) { -- if((synptr->ptrtyp[i] == ptrtyp) && -+ if((synptr->ptrtyp[i] == tstptrtyp) && - ((synptr->pfrm[i] == 0) || -@@ -1814,5 +1834,2 @@ - -- for (i = 0; i < cursyn->wcount; i++) -- cursyn->wnsns[i] = getsearchsense(cursyn, i + 1); -- - if (lastsyn) -@@ -1828,3 +1845,5 @@ - (depth+1)); -- } -+ } else if (docoords) { -+ cursyn->ptrlist = traceptrs_ds(cursyn, HYPOPTR, NOUN, 0); -+ } - } -@@ -2193,3 +2212,3 @@ - if (wnsnsflag) -- sprintf(buf + strlen(buf), "#%d", getsearchsense(synptr, wdnum + 1)); -+ sprintf(buf + strlen(buf), "#%d", synptr->wnsns[wdnum]); - -@@ -2246,3 +2265,3 @@ - sprintf(tbuf + strlen(tbuf), "#%d", -- getsearchsense(psynptr, wdoff + 1)); -+ psynptr->wnsns[wdoff]); - if (!first) -@@ -2333,2 +2352,9 @@ - $Log: search.c,v $ -+ * Revision 1.136 1998/08/07 17:51:32 wn -+ * added COORDS to traceptrs_ds and findtheinfo_ds -+ * fixed getsearchsense code to only happen in parse_synset -+ * -+ * Revision 1.135 1998/08/07 13:04:24 wn -+ * *** empty log message *** -+ * - * Revision 1.134 1997/11/07 16:27:36 wn Property changes on: head/textproc/wordnet/files/patch-official ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/textproc/wordnet/files/dict.Makefile =================================================================== --- head/textproc/wordnet/files/dict.Makefile (revision 49409) +++ head/textproc/wordnet/files/dict.Makefile (revision 49410) @@ -1,24 +1,23 @@ -WN_INSTALLDIR= ${PREFIX}/share/wordnet-1.6 +WN_INSTALLDIR= ${PREFIX}/share/wordnet-1.7 WN_FILES= data.noun data.verb data.adj data.adv index.noun \ index.verb index.adj index.adv noun.exc verb.exc \ - adj.exc adv.exc cousin.exc cousin.tops index.sense \ - cntlist lexnames index.gloss sentidx.vrb sents.vrb \ - stoplist.pl + adj.exc adv.exc index.sense cntlist.rev \ + cntlist lexnames sentidx.vrb sents.vrb all: $(WN_FILES) ${WN_INSTALLDIR}: mkdir -p ${WN_INSTALLDIR} .for f in ${WN_FILES} INSTALLED+= ${WN_INSTALLDIR}/$f ${WN_INSTALLDIR}/$f: $f ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} \ $f ${WN_INSTALLDIR}/$f .endfor install: ${WN_INSTALLDIR} ${INSTALLED} NOOBJ= noobj .include Property changes on: head/textproc/wordnet/files/dict.Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/include.Makefile =================================================================== --- head/textproc/wordnet/files/include.Makefile (revision 49409) +++ head/textproc/wordnet/files/include.Makefile (revision 49410) @@ -1,17 +1,17 @@ -WN_INSTALLDIR = ${PREFIX}/include/wordnet-1.6 +WN_INSTALLDIR = ${PREFIX}/include/wordnet-1.7 WN_FILES= license.h setutil.h wn.h wnconsts.h wnglobal.h \ wnhelp.h wnrtl.h wntypes.h all: $(WN_FILES) ${WN_INSTALLDIR}: mkdir -p ${WN_INSTALLDIR} install: ${WN_INSTALLDIR} ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${WN_FILES} ${WN_INSTALLDIR}/ NOOBJ= noobj .include Property changes on: head/textproc/wordnet/files/include.Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/man.Makefile =================================================================== --- head/textproc/wordnet/files/man.Makefile (revision 49409) +++ head/textproc/wordnet/files/man.Makefile (revision 49410) @@ -1,10 +1,10 @@ MANDIR= ${PREFIX}/man/man 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 \ +MAN5= cntlist.5 lexnames.5 senseidx.5 \ wndb.5 wninput.5 wnintro.5 MAN7= morphy.7 uniqbeg.7 wngloss.7 wngroups.7 wnintro.7 \ wnlicens.7 wnpkgs.7 wnstats.7 .include Property changes on: head/textproc/wordnet/files/man.Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/patch-aa =================================================================== --- head/textproc/wordnet/files/patch-aa (revision 49409) +++ head/textproc/wordnet/files/patch-aa (revision 49410) @@ -1,11 +1,11 @@ --- include/wnconsts.h Fri Feb 27 13:54:53 1998 +++ include/wnconsts.h Sat Feb 26 16:11:51 2000 @@ -16,2 +16,6 @@ --#define DEFAULTPATH "/usr/local/wordnet1.6/dict" --#define DEFAULTBIN "/usr/local/wordnet1.6/bin" +-#define DEFAULTPATH "/usr/local/wordnet1.7/dict" +-#define DEFAULTBIN "/usr/local/wordnet1.7/bin" +#ifndef DEFAULTPATH -+#define DEFAULTPATH "/usr/local/share/wordnet-1.6" ++#define DEFAULTPATH "/usr/local/share/wordnet-1.7" +#endif +#ifndef DEFAULTBIN +#define DEFAULTBIN "/usr/local/bin" +#endif Property changes on: head/textproc/wordnet/files/patch-aa ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/patch-ac =================================================================== --- head/textproc/wordnet/files/patch-ac (revision 49409) +++ head/textproc/wordnet/files/patch-ac (revision 49410) @@ -1,68 +1,68 @@ --- src/wnb/stubs.c Fri Nov 14 17:01:44 1997 +++ src/wnb/stubs.c Sat Feb 26 20:09:19 2000 @@ -24,3 +24,2 @@ #include -#include #include @@ -37,5 +36,4 @@ int wn_findvalidsearches (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { + int argc, Tcl_Obj *objv[]) { unsigned int bitfield; -- char bitfieldstr[32]; +- static char bitfieldstr[32]; char *morph; @@ -43,9 +41,10 @@ if (argc != 3) { - interp -> result = - "usage: findvalidsearches searchword partofspeechnum"; + Tcl_WrongNumArgs(interp, 1, objv, + "findvalidsearches searchword partofspeechnum"); return TCL_ERROR; } - pos = atoi (argv[2]); - bitfield = is_defined (argv[1], pos); - if ((morph = morphstr (argv[1], pos)) != NULL) { + if (Tcl_GetIntFromObj(interp, objv[2], &pos) != TCL_OK) + return TCL_ERROR; + bitfield = is_defined (Tcl_GetString(objv[1]), pos); + if ((morph = morphstr (Tcl_GetString(objv[1]), pos)) != NULL) { do { @@ -54,4 +53,3 @@ } - sprintf (bitfieldstr, "%u", bitfield); - interp -> result = bitfieldstr; + Tcl_SetObjResult(interp, Tcl_NewIntObj(bitfield)); return TCL_OK; @@ -67,14 +65,11 @@ int wn_bit (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - unsigned int bitfield; -- char bitfieldstr[32]; +- static char bitfieldstr[32]; + int argc, Tcl_Obj *objv[]) { int whichbit; if (argc != 2) { - interp -> result = "usage: bit bitnum"; + Tcl_WrongNumArgs(interp, 1, objv, "bitnum"); return TCL_ERROR; } - whichbit = atoi (argv[1]); - bitfield = bit (whichbit); - sprintf (bitfieldstr, "%u", bitfield); - interp -> result = bitfieldstr; + if (Tcl_GetIntFromObj(interp, objv[1], &whichbit) != TCL_OK) + return TCL_ERROR; + Tcl_SetObjResult(interp, Tcl_NewIntObj(bit(whichbit))); return TCL_OK; @@ -275,5 +270,5 @@ wninit (); - Tcl_CreateCommand (interp, "findvalidsearches", (void *) + Tcl_CreateObjCommand (interp, "findvalidsearches", (void *) wn_findvalidsearches, (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "bit", (void *) wn_bit, (ClientData) NULL, + Tcl_CreateObjCommand (interp, "bit", (void *) wn_bit, (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); @@ -295,3 +290,3 @@ (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); - return TCL_OK; -+ return Tcl_PkgProvide(interp, "Wordnet", "1.6"); ++ return Tcl_PkgProvide(interp, "Wordnet", "1.7"); } Property changes on: head/textproc/wordnet/files/patch-ac ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/patch-ae =================================================================== --- head/textproc/wordnet/files/patch-ae (nonexistent) +++ head/textproc/wordnet/files/patch-ae (revision 49410) @@ -0,0 +1,9 @@ +--- src/lib/search.c Tue Jun 19 11:02:47 2001 ++++ src/lib/search.c Tue Oct 30 23:11:26 2001 +@@ -2051,5 +2051,5 @@ + passed and return bit mask. */ + +-unsigned int is_defined(char *searchstr, int dbase) ++unsigned long is_defined(char *searchstr, int dbase) + { + IndexPtr index; Property changes on: head/textproc/wordnet/files/patch-ae ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/textproc/wordnet/files/src.lib.Makefile =================================================================== --- head/textproc/wordnet/files/src.lib.Makefile (revision 49409) +++ head/textproc/wordnet/files/src.lib.Makefile (revision 49410) @@ -1,16 +1,16 @@ SRCS= binsrch.c morph.c search.c setutil.c wnglobal.c \ wnhelp.c wnrtl.c wnutil.c -CFLAGS+= -DUNIX -DDEFAULTPATH="\"${PREFIX}/share/wordnet-1.6\"" \ +CFLAGS+= -DUNIX -DDEFAULTPATH="\"${PREFIX}/share/wordnet-1.7\"" \ -DDEFAULTBIN="\"${PREFIX}/bin\"" -Werror CFLAGS+= -I${.CURDIR}/../../include LIB= wn1 -SHLIB_MAJOR= 6 +SHLIB_MAJOR= 7 SHLIB_MINOR= 0 NOPROFILE= True LIBDIR= ${PREFIX}/lib .include Property changes on: head/textproc/wordnet/files/src.lib.Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/src.wn.Makefile =================================================================== --- head/textproc/wordnet/files/src.wn.Makefile (revision 49409) +++ head/textproc/wordnet/files/src.wn.Makefile (revision 49410) @@ -1,12 +1,12 @@ PROG= wn NOMAN= True # man pages installed separately -CFLAGS+= -DUNIX -DDEFAULTPATH="\"${PREFIX}/share/wordnet-1.6\"" \ +CFLAGS+= -DUNIX -DDEFAULTPATH="\"${PREFIX}/share/wordnet-1.7\"" \ -DDEFAULTBIN="\"${PREFIX}/bin\"" CFLAGS+= -I${.CURDIR}/../../include LDADD+= -L../lib -lwn1 BINDIR= ${PREFIX}/bin .include Property changes on: head/textproc/wordnet/files/src.wn.Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/textproc/wordnet/files/src.wnb.Makefile =================================================================== --- head/textproc/wordnet/files/src.wnb.Makefile (revision 49409) +++ head/textproc/wordnet/files/src.wnb.Makefile (revision 49410) @@ -1,41 +1,41 @@ PREFIX?= /usr/local TCL_DVER?= 8.3 TCL_VER= ${TCL_DVER:S/.//g} TCL_INCDIR?= ${PREFIX}/include/tcl${TCL_DVER} -CFLAGS+= -DUNIX -DDEFAULTPATH="\"${PREFIX}/share/wordnet-1.6\"" \ +CFLAGS+= -DUNIX -DDEFAULTPATH="\"${PREFIX}/share/wordnet-1.7\"" \ -DDEFAULTBIN="\"${PREFIX}/bin\"" CFLAGS+= -I${.CURDIR}/../../include -I$(TCL_INCDIR) LDADD= -L../lib -lwn1 -L${PREFIX}/lib -ltcl${TCL_VER} -ltk${TCL_VER} LIB= tclwn1 -SHLIB_MAJOR= 6 +SHLIB_MAJOR= 7 SHLIB_MINOR= 0 SRCS= stubs.c INTERNALLIB= True # To avoid building the useless static library all: ${SHLIB_NAME} pkgIndex.tcl pkgIndex.tcl: - echo "package ifneeded Wordnet 1.6 [list load \ + echo "package ifneeded Wordnet 1.7 [list load \ [file join ${PREFIX}/lib ${SHLIB_NAME}] Wordnet]" \ > pkgIndex.tcl LIBDIR= ${PREFIX}/lib -RESDIR= ${PREFIX}/share/wordnet-1.6/wnres +RESDIR= ${PREFIX}/share/wordnet-1.7/wnres ${LIBDIR} ${RESDIR} ${LIBDIR}/tcl${TCL_DVER}/Wordnet: mkdir -p ${.TARGET} beforeinstall: ${LIBDIR} ${RESDIR} ${LIBDIR}/tcl${TCL_DVER}/Wordnet ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ pkgIndex.tcl ${LIBDIR}/tcl${TCL_DVER}/Wordnet ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/../lib/wnres/*.* ${RESDIR} ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 755 \ wnb ${PREFIX}/bin .include Property changes on: head/textproc/wordnet/files/src.wnb.Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/textproc/wordnet/pkg-plist =================================================================== --- head/textproc/wordnet/pkg-plist (revision 49409) +++ head/textproc/wordnet/pkg-plist (revision 49410) @@ -1,45 +1,42 @@ bin/wnb bin/wn -include/wordnet-1.6/license.h -include/wordnet-1.6/setutil.h -include/wordnet-1.6/wn.h -include/wordnet-1.6/wnconsts.h -include/wordnet-1.6/wnglobal.h -include/wordnet-1.6/wnhelp.h -include/wordnet-1.6/wnrtl.h -include/wordnet-1.6/wntypes.h +include/wordnet-%%VER%%/license.h +include/wordnet-%%VER%%/setutil.h +include/wordnet-%%VER%%/wn.h +include/wordnet-%%VER%%/wnconsts.h +include/wordnet-%%VER%%/wnglobal.h +include/wordnet-%%VER%%/wnhelp.h +include/wordnet-%%VER%%/wnrtl.h +include/wordnet-%%VER%%/wntypes.h lib/libwn1.a -lib/libwn1.so.6 +lib/libwn1.so.7 lib/libwn1.so -lib/libtclwn1.so.6 +lib/libtclwn1.so.7 lib/libtclwn1.so lib/tcl%%TCL_DVER%%/Wordnet/pkgIndex.tcl -share/wordnet-1.6/adj.exc -share/wordnet-1.6/adv.exc -share/wordnet-1.6/cntlist -share/wordnet-1.6/cousin.exc -share/wordnet-1.6/cousin.tops -share/wordnet-1.6/data.adj -share/wordnet-1.6/data.adv -share/wordnet-1.6/data.noun -share/wordnet-1.6/data.verb -share/wordnet-1.6/index.adj -share/wordnet-1.6/index.adv -share/wordnet-1.6/index.gloss -share/wordnet-1.6/index.noun -share/wordnet-1.6/index.sense -share/wordnet-1.6/index.verb -share/wordnet-1.6/lexnames -share/wordnet-1.6/noun.exc -share/wordnet-1.6/sentidx.vrb -share/wordnet-1.6/sents.vrb -share/wordnet-1.6/stoplist.pl -share/wordnet-1.6/verb.exc -share/wordnet-1.6/wnres/license.txt -share/wordnet-1.6/wnres/wn.xbm -share/wordnet-1.6/wnres/wnb.man -share/wordnet-1.6/wnres/wngloss.man -@dirrm include/wordnet-1.6 +share/wordnet-%%VER%%/adj.exc +share/wordnet-%%VER%%/adv.exc +share/wordnet-%%VER%%/cntlist +share/wordnet-%%VER%%/cntlist.rev +share/wordnet-%%VER%%/data.adj +share/wordnet-%%VER%%/data.adv +share/wordnet-%%VER%%/data.noun +share/wordnet-%%VER%%/data.verb +share/wordnet-%%VER%%/index.adj +share/wordnet-%%VER%%/index.adv +share/wordnet-%%VER%%/index.noun +share/wordnet-%%VER%%/index.sense +share/wordnet-%%VER%%/index.verb +share/wordnet-%%VER%%/lexnames +share/wordnet-%%VER%%/noun.exc +share/wordnet-%%VER%%/sentidx.vrb +share/wordnet-%%VER%%/sents.vrb +share/wordnet-%%VER%%/verb.exc +share/wordnet-%%VER%%/wnres/license.txt +share/wordnet-%%VER%%/wnres/wn.xbm +share/wordnet-%%VER%%/wnres/wnb.man +share/wordnet-%%VER%%/wnres/wngloss.man +@dirrm include/wordnet-%%VER%% @dirrm lib/tcl%%TCL_DVER%%/Wordnet -@dirrm share/wordnet-1.6/wnres -@dirrm share/wordnet-1.6 +@dirrm share/wordnet-%%VER%%/wnres +@dirrm share/wordnet-%%VER%% Property changes on: head/textproc/wordnet/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property