Update of /cvsroot/eas-dev/eas
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv11504
Added Files:
AUTHORS COPYING ChangeLog INSTALL Makefile README TODO VERSION
configure mkinstalldirs
Log Message:
Add files
--- NEW FILE: INSTALL ---
STEP 1: Obtain sources
======================
1. Go to http://eas.lrn.ru/index.php?module=download and download latest
versions:
- eas
- clip-prg
- ocmng
2. Unpack downloaded packages
3. Check libraries:
- GTK+ (both libgtk+ and libgtk+-devel)
- Expat (both libexpat and libexpat-devel)
Note: on your system package may have another (but similar) names.
STEP 2: Install CLIP
====================
1. Prepare environment variable:
export CLIPROOT=/usr/local/clip
export PATH=$PATH:$CLIPROOT/bin
On system with Unicode locale:
export CLIP_HOSTCS=KOI8-R
export CLIP_CLIENTCS=UTF-8
Note: there is best solution add this commands to /etc/profile
or ~/.bash_profile
2. Got to unpacked clip-prg directory and run:
make system
Note: if you cannot install system-wide, set CLIPROOT to directory in your
home directory and build CLIP by 'make local'.
3. Check if exist libraries in $CLIPROOT/lib:
libclip-codb.so
libclip-gtk.so
libclip-ui.so
libclip-xml.so
If any library is absent, check error messages and rebuild CLIP
4. Set path to CLIP libraries:
echo "$CLIPROOT/lib" >> /etc/ld.so.conf
/sbin/ldconfig
STEP 3: Install E/AS
====================
1. Got to unpacked eas directory and run:
./configure && make && make install
NOTE: It's strongly recommended to build E/AS under root privileges and check
system configuration after E/AS install (new user 'easserver' will be created,
install startup scripts and PAM modules)
2. Possible, you want to run E/AS server on system startup:
chkconfig easd on
Note: you can disable 'easd' on system startup by command:
chkconfig easd off
STEP 4: Install ocmng and components
====================================
1. Set path to created CODB databases:
export CODBROOT=/var/db/eas
Note: there is best solution add this command to /etc/profile
or ~/.bash_profile
Note: if you cannot install system-wide, set CODBROOT to directory in your
home directory.
2. Go to unpacked ocmng directory and run command:
make && make install
3. Install components:
ocmng install components/ALL.xmo
ocmng install components/ocmng/ALL.xmo
NOTES
=====
1. CLIP doesn't support Unicode correctly. For successful building and usage
CLIP program (include E/AS) set locale to 8-bit encoding (like
LANG=ru_RU.KOI8-R). Set locale in terminal:
export LANG=ru_RU.KOI8-R
or put this locale in file /etc/sysconfig/i18n.
2. CLIP perfectly works on any terminal type (linux, rxvt) except 'xterm'.
Set terminal type (if 'echo $TERM' returns 'xterm') by command:
export TERM=linux
|