Changeset 826

Show
Ignore:
Timestamp:
08/11/07 02:09:08
Author:
dokai
Message:

Typo fixes and clarifications.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • buildout/pcl.buildout/trunk/README.txt

    r818 r826  
    3030 $ python bootstrap.py 
    3131 $ ./bin/buildout 
    32  $ $(./setenv) 
     32 $ . ./setenv 
    3333 $ python init_postgresql.py 
    3434 $ ./bin/test_core 
     
    4747 
    4848in the root of the buildout to get everything ready for work. This 
    49 will not build PCL, but will set the necessary script in the right 
     49will not build PCL, but will set the necessary scripts in the right 
    5050places for doing it. 
    5151 
     
    102102 
    103103PCL has a lot of dependencies on external libraries and programs. The 
    104 dependencies are managed in the ``dependencies.cfg`` configuration 
     104dependencies are defined in the ``dependencies.cfg`` configuration 
    105105file which the components of the buildout depend on. 
    106106 
    107107You may wish to edit the dependencies configuration for two reasons: 
    108108 
    109  - change the version, download url, etc of a component omit a 
    110  - component in favor of an already installed system component (e.g. a 
    111    library) 
     109 - change the version, download url, etc of a component 
     110 - omit a component in favor of an already installed system component 
     111   (e.g. a library) 
     112 
     113Please note that if you do the latter, you may need to update the 
     114sections using the component to make sure that paths are set 
     115correctly. 
    112116 
    113117 
     
    124128environment variable. 
    125129 
    126 On Linux (and possible other *nix systems) you must use 
     130On Linux (and possibly other *nix systems) you must use 
    127131 
    128132  LD_LIBRARY_PATH 
     
    138142There is a helper script ``setenv`` that will set the paths for 
    139143you. You need to check and possibly modify it to make sure it sets the 
    140 correct environment variable variable for your system. 
     144correct environment variable variable for your system. The script 
     145already contains options for some environments so can simply uncomment 
     146the one suitable for you. 
    141147 
    142148On a Linux system using ``bash`` for a shell you can simply do:: 
     
    162168  $ ./bin/python init_postgresql.py  
    163169 
    164 You can optionally set the port number by using the --port option. 
     170You can optionally set the port number by using the --port option. The 
     171default port is 5432. 
    165172 
    166173You can run the script as many times as you want, but be aware that it 
    167174will reset the whole database. You shouldn't use the test database to 
    168 hold any important data. 
     175store any important data as it will be lost on subsequent runs of the 
     176script. 
    169177 
    170178See the OSX Notes section below if you are using Mac OSX.