From d217364b382e79cc6801279e495a37ebdacdb9fa Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Wed, 27 May 2020 10:18:52 -0400 Subject: added dict-misc dictionaries --- source.sh | 5 +++ src/etc/dict/dictd.conf | 81 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 src/etc/dict/dictd.conf diff --git a/source.sh b/source.sh index 892c00f..e61ee39 100755 --- a/source.sh +++ b/source.sh @@ -47,6 +47,11 @@ aurbuild dict-devils & aurbuild dict-foldoc & aurbuild dict-wikt-en-all & +git clone https://git.hrhr.dev/dict-misc +cd dict-misc +makepkg --noconfirm -si +cd .. + git clone https://git.hrhr.dev/utils cd utils sudo make install diff --git a/src/etc/dict/dictd.conf b/src/etc/dict/dictd.conf new file mode 100644 index 0000000..b73d64c --- /dev/null +++ b/src/etc/dict/dictd.conf @@ -0,0 +1,81 @@ +# dictd configuration file. +# whipped up by michael conrad tilstra + +# Informational message + +global { + site site.info +} + +# who's allowed. You might want to change this. +access { + allow * +} + +# Dictionaries are listed below. +# The initrc script scans /usr/lib/dict and adds all of the dictionaries +# it finds here. +# +# The initrc script will delete everything after the the last line and +# replace it with what it finds. So add all of your things above. +# +# If this is a problem for people, contact me and +# we can work out a different method. +# +#LASTLINE +database wn { + data /usr/share/dictd/wn.dict.dz + index /usr/share/dictd/wn.index +} +database moby-thesaurus { + data /usr/share/dictd/moby-thesaurus.dict.dz + index /usr/share/dictd/moby-thesaurus.index +} +database gcide { + data /usr/share/dictd/gcide.dict.dz + index /usr/share/dictd/gcide.index +} +database devils { + data /usr/share/dictd/devils.dict.dz + index /usr/share/dictd/devils.index +} +database foldoc { + data /usr/share/dictd/foldoc.dict.dz + index /usr/share/dictd/foldoc.index +} +database wikt-en-all { + data /usr/share/dictd/wikt-en-all.dict.dz + index /usr/share/dictd/wikt-en-all.index +} +database easton { + data /usr/share/dictd/easton.dict.dz + index /usr/share/dictd/easton.index +} +database elements { + data /usr/share/dictd/elements.dict.dz + index /usr/share/dictd/elements.index +} +database gazetteer { + data /usr/share/dictd/gazetteer.dict.dz + index /usr/share/dictd/gazetteer.index +} +database hitchcock { + data /usr/share/dictd/hitchcock.dict.dz + index /usr/share/dictd/hitchcock.index +} +database jargon { + data /usr/share/dictd/jargon.dict.dz + index /usr/share/dictd/jargon.index +} +database vera { + data /usr/share/dictd/vera.dict.dz + index /usr/share/dictd/vera.index +} +database world95 { + data /usr/share/dictd/world95.dict.dz + index /usr/share/dictd/world95.index +} +database web1913 { + data /usr/share/dictd/web1913.dict.dz + index /usr/share/dictd/web1913.index +} -- cgit