You are not logged in.
Pages: 1
Hi,
I have compiz running and theres compiz gtk for gnome and compiz kde for kde4, but there isnt compiz kde3. in past there was compiz decorator for kde3, but now its gone. Where can i get it? thanks.
Offline
I modified the PKGBUILD from http://aur.archlinux.org/packages.php?ID=18815 to get it working. The one I ended up using looks like this (I'm using KDEmod, so some additional tweaking may be necessary if you're using KDE 3 from other sources):
# $Id: PKGBUILD,v 1.14 2008/06/08 14:06:02 BaSh Exp $
# Maintainer: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
pkgname=kdemod3-compiz-decorator-kde
_pkgname=compiz-decorator-kde
pkgver=0.7.8
pkgrel=1
pkgdesc="Decorator of Compiz for KDE"
url="http://www.go-compiz.org/"
license="GPL MIT"
arch=('i686' 'x86_64')
groups=('compiz' 'compiz-kde')
depends=('kdemod3-kdebase' 'compiz-core')
makedepends=('libgl' 'perlxml')
options=(!libtool)
conflicts=('compiz-git' 'compiz-decorator-kde-git')
source=(http://xorg.freedesktop.org/archive/individual/app/compiz-$pkgver.tar.gz)
md5sums=('e99977d9170a7bd5d571004eed038428')
build()
{
cd $startdir/src/compiz-$pkgver
/usr/bin/perl -e "require XML::Parser"
./configure --prefix=/opt/kde \
--disable-gnome \
--disable-librsvg \
--disable-metacity \
--disable-gtk \
--disable-gconf \
--disable-dbus \
--disable-annotate \
--disable-place \
--disable-glib \
--enable-kde \
--enable-kconfig || return 1
make || return 1
make DESTDIR=$startdir/pkg install
# Let's remove stuff that are in compiz-core package
rm -rf $startdir/pkg/opt/kde/{include,lib}
rm -rf $startdir/pkg/opt/kde/bin/compiz
rm -rf $startdir/pkg/opt/kde/share/{locale,compiz}
}
Offline
Pages: 1