You are not logged in.
Pages: 1
KDE 3.5.10
after recent upgrades of qtcurve I am not able to configure qtcurve style
Styles config panel is generating the folowing error:
Library files for "kstyle_qtcurve_config.la" not found in paths.
nor I am able to set qtcurve style in Qt Config
it seems that this is recurring problem.
Is there any way to fix this?
Thank you
Offline
The qtcurve-kde3 in extra removes the kcontrol plugins for using along side qtcurve-kde4, I guess for people who want to keep a uniform appearence with kde3 apps running inside kde4.
If your using kdemod-legacy, there is kdestyle-qtcurve in the legacy repo that works well, but it's rather outdated. I updated the PKGBUILD to build locally if you want to build it.
pkgname=kdemod3-kstyle-qtcurve
pkgver=0.62.4
pkgrel=1
arch=('i686' 'x86_64')
license='GPL'
pkgdesc='A configurable set of widget styles for KDE and Gtk'
source=("http://home.freeuk.com/cpdrummond/QtCurve-KDE3-${pkgver}.tar.bz2")
url='http://www.kde-look.org/content/show.php?content=40492'
depends=('kdemod3-kdelibs' 'gcc-libs')
makedepends=('cmake')
conflicts=('qtcurve-kde3')
provides=('qtcurve-kde3')
md5sums=('be6ad94a1ba007ffd79d54835926fbb5')
build() {
. /etc/profile.d/qt3.sh
. /etc/profile.d/kde3.sh
cd $srcdir
mkdir build
cd build
cmake ../QtCurve-KDE3-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/opt/kde
make
make DESTDIR=$pkgdir install
}Or if your running yaourt, you can just do a "yaourt -Sb qtcurve-kde3" to build the package in extra and edit the pkgbuild and remove these two lines near the end...
# remove kcontrol plugins
rm -f $pkgdir/opt/kde/lib/kde3/kstyle_qtcurve_config.*
# set default theme
install -D -m644 $srcdir/kdeglobals $pkgdir/opt/kde/share/config/kdeglobalsLast edited by Leigh (2009-03-20 22:06:17)
-- archlinux 是一个极好的 linux。
Offline
Pages: 1