*** empty log message ***

This commit is contained in:
dockes 2005-11-07 15:52:17 +00:00
parent 97c52f3666
commit 208550ecda
6 changed files with 26 additions and 24 deletions

View File

@ -16,7 +16,7 @@ Installing Recoll
Prerequisites Prerequisites
At the very least, you will need to download and install the xapian core At the very least, you will need to download and install the xapian core
package (I am currently using xapian version 0.8.5), and the qt runtime package (I am currently using xapian version 0.9.2), and the qt runtime
and development packages (I am currently using qt 3.3.3). and development packages (I am currently using qt 3.3.3).
You will most probably be able to find a binary package for qt for your You will most probably be able to find a binary package for qt for your
@ -72,19 +72,17 @@ Installing Recoll
Installation Installation
Execute installrecoll targetdir, in the root of the source tree. This Commands and common files
will:
* Only if you have write access on targetdir/bin, copy qtgui/recoll and Either type make install or execute recollinstall targetdir, in the root
index/recollindex to targetdir/bin (but you could also execute them of the source tree. This will copy the commands to $targetdir/bin and the
from their build directories). sample configuration files to $targetdir/share/examples/recoll
* Only if you are not root check if ~/.recoll exists, and if it does
not:
* Copy all files from sampleconf/* to ~/.recoll
* Copy all files from filters/* to ~/.recoll.
Typically, you would execute the script once as root to install the Personal configuration
programs to /usr/local, and once as yourself to create the configuration.
Either type make installme in the root of the source tree, or execute
recollinstall. This will copy the configuration files to the .recoll
directory in your home.
Configuration Configuration
@ -94,12 +92,12 @@ Installing Recoll
The main configuration file is named ~/.recoll/recoll.conf. The main configuration file is named ~/.recoll/recoll.conf.
There is a commented sample in the sampleconf subdirectory, it was copied A commented sample was copied to ~/.recoll by the installation. By
to ~/.recoll at the previous step, take a look and possibly edit it. By
default, it will index your home directory. default, it will index your home directory.
Then start recollindex, and wait for indexing to complete (this may take Then start recollindex, and wait for indexing to complete (this may take
some time). When it's done, you can start recoll and try a search. some time). When it's done, you can start recoll and try a search. See the
user manual for a little more details
Depending on what is installed on your system, you may also want to adjust Depending on what is installed on your system, you may also want to adjust
the external viewers defined in ~/.recoll/mimeconf (ie: html is either the external viewers defined in ~/.recoll/mimeconf (ie: html is either

View File

@ -22,10 +22,10 @@ clean:
cd index; ${MAKE} clean cd index; ${MAKE} clean
cd lib; ${MAKE} clean cd lib; ${MAKE} clean
cd bincimapmime; ${MAKE} clean cd bincimapmime; ${MAKE} clean
cd qtgui; rm -f recoll; ${MAKE} clean
cd query; ${MAKE} clean cd query; ${MAKE} clean
cd utils; ${MAKE} clean cd utils; ${MAKE} clean
rm -f qtgui/Makefile qtgui/preview/Makefile @-cd qtgui; ${MAKE} clean
rm -f qtgui/Makefile qtgui/preview/Makefile qtgui/recoll
install: all install: all
./recollinstall ${PREFIX} ./recollinstall ${PREFIX}

View File

@ -50,7 +50,7 @@ Recoll
* An interactive configuration tool. You need to edit files by hand for * An interactive configuration tool. You need to edit files by hand for
now. now.
* Packages, rpm or other. It's all tar files currently. * Packages, rpm or other. It's all tar files currently.
* Documentation and help. * More documentation and help.
* Translations for the user interface. * Translations for the user interface.
* A few more filters for less common file types. * A few more filters for less common file types.

View File

@ -13,6 +13,7 @@ TAGS
config.cache config.cache
config.log config.log
config.status config.status
makesrcdist.sh
sysconf sysconf
qtgui/Makefile qtgui/Makefile
qtgui/preview/Makefile qtgui/preview/Makefile

View File

@ -40,16 +40,19 @@ A more complete version of this document can be found at http://www.recoll.org
EOF EOF
links -dump ~/projets/pagepers/recoll/index.html >> README echo "Dumping html documentation to text files"
links -dump ~/projets/pagepers/recoll/credits.html >> README RECOLLDOC=${RECOLLDOC:=$HOME/projets/lesbonscomptes/recoll}
links -dump ~/projets/pagepers/recoll/usermanual.html >> README
links -dump ~/projets/pagepers/recoll/installation.html >> INSTALL links -dump ${RECOLLDOC}/index.html >> README
links -dump ${RECOLLDOC}/credits.html >> README
links -dump ${RECOLLDOC}/usermanual.html >> README
links -dump ${RECOLLDOC}/installation.html >> INSTALL
cvs commit -m '' README INSTALL cvs commit -m '' README INSTALL
# Clean up this dir and copy the dist-specific files # Clean up this dir and copy the dist-specific files
make clean make clean
yes | clean.O yes | clean.O
$TAR chfX - excludefile . | (cd $topdir;$TAR xvf -) $TAR chfX - excludefile . | (cd $topdir;$TAR xf -)
CVSTAG="RECOLL-$versionforcvs" CVSTAG="RECOLL-$versionforcvs"
[ $dotag = "yes" ] && cvs tag -F $CVSTAG . [ $dotag = "yes" ] && cvs tag -F $CVSTAG .

View File

@ -35,7 +35,7 @@ rm -f index/recollindex qtgui/recoll
make static || exit 1 make static || exit 1
strip index/recollindex qtgui/recoll strip index/recollindex qtgui/recoll
files='COPYING README INSTALL installrecoll files='COPYING README INSTALL recollinstall
filters sampleconf filters sampleconf
index/recollindex qtgui/recoll' index/recollindex qtgui/recoll'