--- dict-moby-thesaurus-1.0.orig/conv.py
+++ dict-moby-thesaurus-1.0/conv.py
@@ -0,0 +1,35 @@
+import sys, dictdlib
+
+# Conversion script by John Goerzen
+
+itextfile = open("introduction.txt", "rt")
+
+
+dw = dictdlib.DictWriter("moby-thesaurus",
+                         'http://www.ibiblio.org/pub/docs/books/gutenberg/etext02/mthes10.zip',
+                         'Moby Thesaurus II by Grady Ward, 1.0',
+                         itextfile.read(-1))
+
+while 1:
+    line = sys.stdin.readline()
+    if not line:
+        break
+    line.strip()
+    base, d = line.split(',', 1)
+    defstr = ""
+    defline = "   "
+    count = 0
+    for defword in d.split(','):
+        count += 1
+        if len(defline) + len(defword) + 3 > 70:
+            defstr += defline + "," + "\n"
+            defline = "   " + defword
+        elif defline == "   ":
+            defline += defword
+        else:
+            defline += ", " + defword
+    if defline != "   ":
+        defstr += defline + "\n"
+    dw.writeentry("%s Moby Thesaurus words for \"%s\":\n" % (count, base) + \
+                  defstr, [base])
+dw.finish()
--- dict-moby-thesaurus-1.0.orig/introduction.txt
+++ dict-moby-thesaurus-1.0/introduction.txt
@@ -0,0 +1,18 @@
+Title:  Moby Thesaurus II
+
+Author:  Grady Ward, grady@gradyward.com
+
+Edition: 1.0
+
+Moby (tm) Thesaurus II Documentation Notes
+
+This documentation, the software and/or database are:
+
+Public Domain material by grant from the author, January, 2001.
+
+Moby Thesaurus is the largest and most comprehensive thesaurus data
+source in English available for commercial use.  This second edition
+has been thoroughly revised adding more than 5,000 root words (to
+total more than 30,000) with an additional _million_ synonyms and
+related terms (to total more than 2.5 _million_ synonyms and related
+terms).
