diff --git a/kdesdk-kioslaves/PKGBUILD b/kdesdk-kioslaves/PKGBUILD deleted file mode 100644 index f1951e346..000000000 --- a/kdesdk-kioslaves/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Include global configuration -source ../kdeapps.conf - -pkgname="kdesdk-kioslaves" -arch=('x86_64') -pkgver=${_kdever} -pkgrel=1 -pkgdesc='KDED Subversion Module' -depends=("kde-runtime") -makedepends=('pkg-config' 'cmake' 'automoc4') -provides=('kdesdk-kioslave') -conflicts=('kdesdk-common' 'kdesdk-kioslave') -replaces=('kdesdk-common' 'kdesdk-kioslave') -url="http://www.kde.org" -license=('GPL' 'LGPL' 'FDL') -options=('docs' 'debug') -source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig}) -sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1` - 'SKIP') -validpgpkeys=(${Avalidpgpkeys}) - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - cmake . \ - -DCMAKE_BUILD_TYPE=${_build_type} \ - -DCMAKE_INSTALL_PREFIX=${_installprefix} \ - -DCMAKE_SKIP_RPATH=ON \ - -DKDE4_BUILD_TESTS=OFF - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install -} diff --git a/kdesdk-kioslaves/kdesdk.install b/kdesdk-kioslaves/kdesdk.install deleted file mode 100644 index 70b229332..000000000 --- a/kdesdk-kioslaves/kdesdk.install +++ /dev/null @@ -1,88 +0,0 @@ -post_install() { - if [ -e "/etc/chakra/updates.conf" ] ; then - - . /etc/chakra/updates.conf - - if [ "$UPDATE_XDG_ICON_DB" = "yes" ]; then - /usr/bin/chakra-update-icons - fi - - if [ "$UPDATE_GLOBAL_CONFIG" = "yes" ]; then - /usr/bin/chakra-update-sycoca - fi - - if [ "$UPDATE_USER_CONFIG" = "yes" ]; then - /usr/bin/chakra-update-user-sycoca - fi - else - echo " > WARNING" - echo " The package chakra-common seems not to be installed," - echo " this can possibly break the installation. Just install it" - echo " manually after this installation/update, run the following" - echo " commands and restart KDE afterwards:" - echo " sudo chakra-config-updater" - echo " kbuildsycoca4" - echo " " - fi -} - -post_upgrade() { - if [ -e "/etc/chakra/updates.conf" ] ; then - - . /etc/chakra/updates.conf - - if [ "$UPDATE_XDG_ICON_DB" = "yes" ]; then - /usr/bin/chakra-update-icons - fi - - if [ "$UPDATE_GLOBAL_CONFIG" = "yes" ]; then - /usr/bin/chakra-update-sycoca - fi - - if [ "$UPDATE_USER_CONFIG" = "yes" ]; then - /usr/bin/chakra-update-user-sycoca - fi - else - echo " > WARNING" - echo " The package chakra-common seems not to be installed," - echo " this can possibly break the installation. Just install it" - echo " manually after this installation/update, run the following" - echo " commands and restart KDE afterwards:" - echo " sudo chakra-config-updater" - echo " kbuildsycoca4" - echo " " - fi -} - -post_remove() { - if [ -e "/etc/chakra/updates.conf" ] ; then - - . /etc/chakra/updates.conf - - if [ "$UPDATE_XDG_ICON_DB" = "yes" ]; then - /usr/bin/chakra-update-icons - fi - - if [ "$UPDATE_GLOBAL_CONFIG" = "yes" ]; then - /usr/bin/chakra-update-sycoca - fi - - if [ "$UPDATE_USER_CONFIG" = "yes" ]; then - /usr/bin/chakra-update-user-sycoca - fi - else - echo " > WARNING" - echo " The package chakra-common seems not to be installed," - echo " this can possibly break the installation. Just install it" - echo " manually after this installation/update, run the following" - echo " commands and restart KDE afterwards:" - echo " sudo chakra-config-updater" - echo " kbuildsycoca4" - echo " " - fi -} - -op=$1 -shift - -$op $*