You are not logged in.

#1 2008-02-12 20:53:25

mots
Member
Registered: 2007-02-09
Posts: 27

[request] cairo-dock

Hi,
could anybody make a PKGBUILD for this new, nice OS X-like dock including the plugins?
http://developer.berlios.de/project/sho … up_id=8724
I've managed to compile the dock itself, but I can't compile the plugins (No package 'cairo-dock' found)
Thanks in advance,
mots

Offline

#2 2008-02-12 21:13:54

Stefan Husmann
Member
From: Germany
Registered: 2007-08-07
Posts: 1,391

Re: [request] cairo-dock

It would surely help us if you could try to document your efforts and problems a bit, please.

Offline

#3 2008-02-12 21:19:20

mots
Member
Registered: 2007-02-09
Posts: 27

Re: [request] cairo-dock

Well, my efforts went as far as reading the INSTALL file and doing what it says wink

Offline

#4 2008-02-14 20:02:15

erm67
Member
From: Europe
Registered: 2007-08-01
Posts: 123

Re: [request] cairo-dock

It is WIP and far from complete, it is however nice and works.

If you only want to give it a try here is PKGBUILD for it, (also incomplete, for example it should be archlinuxified, support standard menus and so on):

pkgname=cairo-dock
pkgver=1.5.0.1
pkgrel=1
pkgdesc="A light eye-candy fully themable animated dock for any Linux desktop. It has a family-likeness with OSX dock, but with more options."
url="http://developer.berlios.de/projects/cairo-dock/"
license="GPL"
arch=('i686')
depends=('cairo' 'glitz' 'librsvg')
makedepends=('autoconf')
source=(http://download.berlios.de/cairo-dock/cairo-dock-sources-20080209.tar.bz2)
md5sums=('ebece2291b789a73c3565a2924df35c3')
build() {
  cd tmp/trunk/$pkgname
  autoreconf -isvf ||return 1
  ./configure --prefix=/usr ||return 1
  make ||return 1
  make install DESTDIR=$startdir/pkg ||return 1
}

Install it and than you should be able to build the plugins with this PKGBUILD:

pkgname=cairo-dock-plugins
pkgver=1.5.0.1
pkgrel=1
pkgdesc="Plugins for cairo-dock"
url="http://developer.berlios.de/projects/cairo-dock/"
license="GPL"
arch=('i686')
depends=('cairo-dock')
makedepends=('autoconf')
source=(http://download.berlios.de/cairo-dock/cairo-dock-sources-20080209.tar.bz2)
md5sums=('ebece2291b789a73c3565a2924df35c3')
build() {
  cd tmp/trunk/plug-ins
  for i in clock dustbin logout gnome-integration  rendering shortcuts systray Xgamma; do
    cd $i
    autoreconf -isvf ||return 1
    ./configure --prefix=/usr ||return 1
    make ||return 1
    make install DESTDIR=$startdir/pkg ||return 1
    cd ..
  done
  }

Last edited by erm67 (2008-02-14 21:09:01)

Offline

#5 2008-02-14 22:49:42

SpookyET
Member
Registered: 2008-01-27
Posts: 410

Re: [request] cairo-dock

Upload them to AUR

Offline

#6 2008-02-15 05:24:14

erm67
Member
From: Europe
Registered: 2007-08-01
Posts: 123

Re: [request] cairo-dock

SpookyET wrote:

Upload them to AUR

ok
cairo-dock
cairo-dock-plugins

But I will probably orphan them soon, since I do not use it. Maybe I will try to replace that Ubuntu logo that is used by default, at least should start with a arch logo ......

Offline

#7 2008-02-15 11:45:45

mots
Member
Registered: 2007-02-09
Posts: 27

Re: [request] cairo-dock

Hm, doesn't work for me, see the comments in AUR hmm

Offline

#8 2008-02-15 21:34:17

erm67
Member
From: Europe
Registered: 2007-08-01
Posts: 123

Re: [request] cairo-dock

Sorry I uploaded to AUR the wrong tar .... the suggestions in the other comments were right since it contained part of the plugins pkgbuild ...
Fixed and re-uploaded.

Offline

Board footer

Powered by FluxBB