http://www.kiba-dock.org/
On this page, you will find useful informations about how to install
Kiba Dock for your GNU/Linux distro or by browsing the SVN development
repository. About distros installing, please note that the packages are not provided by the project so any packaging issue should be addressed to the packager.
Once you installed Kiba Dock, you will be able to find useful informations about how to use it on this page
.
Contents [ hide
]
[ edit
] Gentoo
There is an ebuild for gentoo users in the Xeffect Overlay
.
[ edit
] Ubuntu Treviño manages a repo with kiba-dock, These can be accessed by adding the following to your sources.list file: Note: Currently, there are only 32 bit (x86) deb packages available, 64 bit users can use SVN
.
Open a Terminal Window.
Type the following:
# sudo gedit /etc/apt/sources.list
Run from the same terminal window:
# wget http://download.tuxfamily.org/3v1deb/DD800CD9.gpg
-O- | sudo apt-key add -
# sudo apt-get update
# sudo apt-get install kiba-dock
# sudo apt-get install kiba-dock-dev
# sudo apt-get install kiba-plugins PLEASE NOTE: this is a daily svn repo, which means you're dealing
with snapshots of the latest and greatest, but not always the most
stable!
[ edit
] SUSE
Add the following repository as YAST/YUM/ZYPPER/RUG repository and install kiba-dock package from there: http://software.opensuse.org/download/X11:/XGL/
[ edit
] Fedora Core 6
[ edit
] Via yum
RPM packages are available on drpixel's yum repository.
Configure the repository :
# rpm -ivh http://drpixel.tuxfamily.org/fedora/drpixel-release-1-1.noarch.rpm NB : By default, the repository is installed but not enabled.
Then install the packages :
# yum --enablerepo=drpixel install kiba-dock
Please note that this RPM package will not be a day to day snapshot of the SVN. Currently this version is from February 2007.
[ edit
] Via SVN
There is a little subtlety in order to compile the SVN version on Fedora Core 6.
First of all, fetch the SVN repository as described below. Then
compile each item (akamaru, kibadock, kibaplugins, etc...) with the
following sequence of commands :
$ ./autogen --prefix="/usr"
$ make
# make install
The part in italic on the first line is very important and is the
only difference with the basic installation instructions as described
below. However, it is required in order to compile the program.
[ edit
] To fetch SVN Version
Kiba-Dock lives in a SVN Repository at kiba-dock.org
There are 6 Kiba related Repositories: akamaru, kibadock, kibaplugins, kibadbusplugins, epiphany and gaimplugin.
To fetch the latest source code just run in a Terminal:
$ svn co http://svn.kiba-dock.org/akamaru/
akamaru
$ svn co http://svn.kiba-dock.org/kibadock/trunk
kiba-dock
$ svn co http://svn.kiba-dock.org/kibaplugins/trunk
kiba-plugins
$ svn co http://svn.kiba-dock.org/kibadbusplugins
kiba-dbus-plugins
$ svn co http://svn.kiba-dock.org/gaimplugin/trunk
gaim-plugin
$ svn co http://svn.kiba-dock.org/epiphany/trunk
ephy-kiba-plugin
[ edit
] To build SVN Version
Change in each Project Directory and run:
$ ./autogen.sh
$ make
And then :
$ make install as User!! for the kibadbusplugins ELSE
$ sudo make install - for sudo-based (Ubuntu-like) GNU/Linux distros OR
# make install - for GNU/Linux distros with root account
[ edit
] To update SVN Version
Change in each Project Directory and run:
$ svn up
You can then rebuild as described above
.