Michael Wolf e3abbc251c blah
2013-06-29 11:15:53 -05:00
2012-06-03 10:04:22 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2013-06-29 11:11:39 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2013-06-29 11:15:53 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00
2012-05-31 16:45:42 -05:00

words

This is an import of William Whitaker's WORDS Version 1.97FC LATIN-ENGLISH DICTIONARY PROGRAM.

using

I don't know how to use words yet. It probably isn't too hard, though.

building

words is written in Ada, which might be a problem. Most Linux distros have gnat packages available. On OSX I've been using Ada compiler binaries that I downloaded from http://libre.adacore.com/download/configurations and, still in OSX, I frob $PATH with the following, which I have added to my bash configuration files.

# ada crap
IN_GNAT=0
PRE_GNAT_PATH=
PRE_GNAT_PS1=
function load_gnat () {
    if [ $IN_GNAT -ne 0 ] ; then
        echo "Aready in gnat mode."
        return
    fi
    echo -n "Configuring gnat... "
    GNAT=~/local/gnat/bin
    PRE_GNAT_PATH=$PATH
    PRE_GNAT_PS1=$PS1
    export IN_GNAT=1
    export PS1="[gnat] $PS1"
    export PATH=$GNAT:$PATH
    echo "done."
}

function unload_gnat () {
    echo -n "Unconfiguring gnat... "
    if [ $IN_GNAT -ne 1 ] ; then
        echo "wasn't in gnat mode in the first" 'place!'
        return
    fi
    export IN_GNAT=0
    export PATH=$PRE_GNAT_PATH
    export PS1=$PRE_GNAT_PS1
    echo "done."
}

Once I have gnat installed and in my PATH, I say

gnatmake -O3 words
gnatmake -O3 makedict
gnatmake -O3 makestem
gnatmake -O3 makeewds
gnatmake -O3 makeefil
gnatmake -O3 makeinfl

There is more info that I don't properly understand in the file HOWTO.txt.

Description
No description provided
Readme 4.1 MiB
Languages
Ada 80.6%
HTML 19.4%