[go: up one dir, main page]

Menu

Tree [r35] / ddc / trunk /
 History

HTTPS access


File Date Author Commit
 Test 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 bin 2011-11-28 mukau [r17] + set svn:ignore (copied from dx-1 branch)
 config 2011-11-28 mukau [r17] + set svn:ignore (copied from dx-1 branch)
 doc 2012-09-28 mukau [r34] + updated version info in docs
 etc 2011-11-28 mukau [r17] + set svn:ignore (copied from dx-1 branch)
 log 2011-12-02 mukau [r22] v2.0.1 Fri, 02 Dec 2011 14:56:18 +0100
 m4 2011-12-02 mukau [r22] v2.0.1 Fri, 02 Dec 2011 14:56:18 +0100
 scripts 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 skel 2011-11-28 mukau [r17] + set svn:ignore (copied from dx-1 branch)
 src 2012-09-28 mukau [r35] + v2.0.3: remove index-list from text and html ...
 AUTHORS 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 COPYING 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 COPYING.LESSER 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 Changes 2011-12-02 mukau [r22] v2.0.1 Fri, 02 Dec 2011 14:56:18 +0100
 INSTALL 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 Makefile.am 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 README.html 2011-12-02 mukau [r22] v2.0.1 Fri, 02 Dec 2011 14:56:18 +0100
 README.moo 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 README.pod 2011-11-15 mukau [r12] + updated README
 README.txt 2011-11-15 mukau [r12] + updated README
 autoreconf.sh 2011-11-15 mukau [r3] + initial import of ddc-2.0 branch
 configure.ac 2012-09-28 mukau [r35] + v2.0.3: remove index-list from text and html ...
 distcheck.sh 2011-12-09 mukau [r23] + added PACKAGE_VERSION to ddc_daemon starup me...

Read Me

    README for package ddc

    Last updated for ddc v2.0.0

DESCRIPTION
    The ddc package contains core C++ utilities for the DWDS/Dialing
    Concordance document indexing system.

    The DDC-2.x branch is maintained in SVN under:

     https://ddc-concordance.svn.sourceforge.net/svnroot/ddc-concordance

DEPENDENCIES
    ddc-morph >= v2.0.0
        Morphology data.

        In order to use most of the runtime utilities, you will also need a
        set of morphology data files available in the ddc-morph package,
        which should be available wherever you downloaded these sources.

        You should build (and optionally install) this package BEFORE
        attempting to build ddc-morph.

        The ddc-morph sources are maintained in SVN under:

         https://ddc-concordance.svn.sourceforge.net/svnroot/ddc-morph

    libpcre, libpcrecpp
        Perl-compatibile regular expression C library and C++ wrappers.

        URL: http://www.pcre.org/

        Tested version(s): 8.02

    libcurl (optional)
        If available, libcurl can be used for accessing external HTTP-based
        term expanders from within a running DDC process. DDC should still
        compile and run even if libcurl is unavailable, but e.g. external
        HTTP-based term expanders will be unuseable.

        URL: http://curl.haxx.se/

        Tested version(s): 7.21.0

INSTALLATION
    Issue the following commands to the shell:

     cd ddc-X.Y.dx-Z       ##-- (or wherever you extracted the ddc distribution)
     sh ./configure
     make
     make install

    To build the ddc morph package, then do:

     cd ..
     cd ddc-morph-X.Y-dx-Z ##-- (or wherever the ddc-morph distribution lives)
     sh ./configure
     make
     make install

    Finally, set the (legacy) environment variable RML to the directory into
    which ddc was installed (by default /usr/local/ddc):

     export RML=/usr/local/ddc

    ... and you ought to be ready to roll. Take a look at the configuration
    files in $RML/etc/ and the example corpora in Test/ to get started.

BUILD OPTIONS
    The 'configure' script supports the following options, among others:

    --prefix=PREFIX
        Installation prefix (default=/usr/local). This package installs
        itself to:

         PREFIX/ddc          ##-- root directory (a.k.a. $RML)
         PREFIX/ddc/bin      ##-- executable programs & scripts
         PREFIX/ddc/etc      ##-- runtime configuration files
         PREFIX/ddc/include  ##-- C++ headers
         PREFIX/lib          ##-- runtime libtool libraries

        Additionally, the package requires a directory PREFIX/ddc/dict
        containing morphology data, which should be installed by the
        ddc-morph package (see "DEPENDENCIES").

    --enable-debug
        Enable debugging flags. Only works for GNU C++ compiler.

    --enable-warnings
        Enable lots of compiler warnings. Only works for GNU C++ compiler.

    --disable-shared
        Disable compilation of shared libraries.

    --without-libcurl
        Force DDC to build without CURL support.

    See the output of `./configure --help` for details on additional
    supported options.

KNOWN BUGS
    Many.

AUTHOR
    Alexey Sokirko wrote DDC.

    Bryan Jurish <jurish@bbaw.de> made various improvements and maintains
    the DDC-2.x branch.