# kdebindings 3.5.1
# =================
# Slackware 8.1's 'kdebindings' package includes version 3.0.1, 9.0's includes
# 3.1, 9.1's includes 3.1.4, 10.0's includes 3.2.3, 10.1's includes 3.3.2,
# and 10.2's includes 3.4.2
#
# Slackware 10.2 includes KDE 3.4.2
# If you ever want to uninstall kdebindings, cd into the source directory, run
# 'make uninstall' (as root), remove the source directory, and remove the
# tarball.
find src/kde src -maxdepth 1 -type d -name "kdebindings-*" \
-exec rm -r {} \;
cd src/kde
tar xjvf ~/kdebindings-3.5.1.tar.bz2
cd kdebindings-3.5.1
test $UID = 0 && chown -R root:root .
./configure --prefix=/opt/kde --disable-debug
make
## make failed for me with this error:
# /opt/kde/include/ksslpkcs7.h:32:27: openssl/pkcs7.h: No such file or
# directory
## so I ran this:
# ( cd smoke/kde ; make CPPFLAGS=-I/usr/local/ssl/include )
## and then 'make' again
## make also failed for me with this error:
# /opt/kde/include/ksslutils.h:34:26: openssl/x509.h: No such file or
# directory
## so I ran this:
# ( cd kdejava/koala/kdejava ; make CPPFLAGS=-I/usr/local/ssl/include )
## and then 'make' again
# Become root to install it
su
test -x /sbin/removepkg && /sbin/removepkg kdebindings
make install
# Add /opt/kde/lib to /etc/ld.so.conf if it's not already in there:
grep "^/opt/kde/lib$" /etc/ld.so.conf > /dev/null 2>&1 ||
echo "/opt/kde/lib" >> /etc/ld.so.conf
ldconfig