What is imbridge?

Introduce of imbridge in here.

How to checkout project source code?

To check out the code you need to install cvs client.

For anonymous user it's easy to checkout the code:

export CVSROOT=:pserver:anonymous@cvs.sf.net:/cvsroot/imbridge<Enter>

cvs login<Enter>

Logging in to :pserver:anonymous@cvs.sf.net:2401/cvsroot/imbridge
CVS password:<Enter directly>

cvs co imbridge<Enter>

cvs co gaim14<Enter>

cvs co openq032<Enter>

For develops, first you need a sourceforge account, and add to imbridge project.

The check out commands for develops are:

export CVSROOT=:ext:username@cvs.sf.net:/cvsroot/imbridge<Enter>

cvs login<Enter>

Logging in to :pserver:anonymous@cvs.sf.net:2401/cvsroot/imbridge
CVS password:youpasswd<Enter directly>

cvs co imbridge<Enter>

cvs co gaim14<Enter>

cvs co openq032<Enter>

How to compile the project?

  1. Put the three directory "imbridge, gaim14, openq032" in the same path.
  2. Modify the imbridge/Makefile to fix some path for your environment.
  3. # cd imbridge
  4. # make
  5. # cd ../gaim14
  6. # ./configure --disable-screensaver --prefix=SomePathDon'tOverWriteTheOriginalGaimInstall
  7. # make; make install
  8. # cd ../openq032
  9. # export PKG_CONFIG_PATH=gaim14_build_dir
  10. # ./configure --prefix=SameWithGaim14
  11. # make; make install