diff options
author | mi <mi@FreeBSD.org> | 2009-03-25 10:28:58 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2009-03-25 10:28:58 +0800 |
commit | 958716aaceb8b82837465110792fad3dadd53e2c (patch) | |
tree | 91d4808741e34472d7f0341732a5c81934d76858 | |
parent | 2606e66fc80470e5004427100e99e5f03f6c65a8 (diff) | |
download | freebsd-ports-gnome-958716aaceb8b82837465110792fad3dadd53e2c.tar.gz freebsd-ports-gnome-958716aaceb8b82837465110792fad3dadd53e2c.tar.zst freebsd-ports-gnome-958716aaceb8b82837465110792fad3dadd53e2c.zip |
We advertize 3.0, but provide version 2.1 of Wordnet package.
Tcl-8.4 didn't care, but 8.5, which is now the default, treats
such mismatches as errors.
Correct this by providing version 3.0. Bump PORTREVISION.
Reported by: Eric Damien
Struck again by: semi-mindless accross-the-tree revision bumps
-rw-r--r-- | textproc/wordnet/Makefile | 2 | ||||
-rw-r--r-- | textproc/wordnet/files/patch-ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/textproc/wordnet/Makefile b/textproc/wordnet/Makefile index 6e9ad7d54cf7..e5c763e293ad 100644 --- a/textproc/wordnet/Makefile +++ b/textproc/wordnet/Makefile @@ -7,7 +7,7 @@ PORTNAME= WordNet PORTVERSION= 3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PORTVERSION}/ \ http://wordnet.princeton.edu/${PORTVERSION}/ diff --git a/textproc/wordnet/files/patch-ac b/textproc/wordnet/files/patch-ac index 25cc1a162683..c56ff89456c4 100644 --- a/textproc/wordnet/files/patch-ac +++ b/textproc/wordnet/files/patch-ac @@ -257,6 +257,6 @@ - return TCL_OK; + Tcl_CreateObjCommand (interp, "wnlicense", wn_license, + (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); -+ return Tcl_PkgProvide(interp, "Wordnet", "2.1"); ++ return Tcl_PkgProvide(interp, "Wordnet", "3.0"); } - |