[arch-commits] Commit in kdebase/repos (10 files)
Sven-Hendrik Haase
svenstaro at nymeria.archlinux.org
Wed Jun 5 05:19:31 UTC 2013
Date: Wednesday, June 5, 2013 @ 07:19:31
Author: svenstaro
Revision: 187206
archrelease: copy trunk to staging-i686, staging-x86_64
Added:
kdebase/repos/staging-i686/
kdebase/repos/staging-i686/PKGBUILD
(from rev 187205, kdebase/trunk/PKGBUILD)
kdebase/repos/staging-i686/kdebase-dolphin.install
(from rev 187205, kdebase/trunk/kdebase-dolphin.install)
kdebase/repos/staging-i686/kdebase-konqueror.install
(from rev 187205, kdebase/trunk/kdebase-konqueror.install)
kdebase/repos/staging-i686/kdebase.install
(from rev 187205, kdebase/trunk/kdebase.install)
kdebase/repos/staging-x86_64/
kdebase/repos/staging-x86_64/PKGBUILD
(from rev 187205, kdebase/trunk/PKGBUILD)
kdebase/repos/staging-x86_64/kdebase-dolphin.install
(from rev 187205, kdebase/trunk/kdebase-dolphin.install)
kdebase/repos/staging-x86_64/kdebase-konqueror.install
(from rev 187205, kdebase/trunk/kdebase-konqueror.install)
kdebase/repos/staging-x86_64/kdebase.install
(from rev 187205, kdebase/trunk/kdebase.install)
------------------------------------------+
staging-i686/PKGBUILD | 124 +++++++++++++++++++++++++++++
staging-i686/kdebase-dolphin.install | 11 ++
staging-i686/kdebase-konqueror.install | 12 ++
staging-i686/kdebase.install | 11 ++
staging-x86_64/PKGBUILD | 124 +++++++++++++++++++++++++++++
staging-x86_64/kdebase-dolphin.install | 11 ++
staging-x86_64/kdebase-konqueror.install | 12 ++
staging-x86_64/kdebase.install | 11 ++
8 files changed, 316 insertions(+)
Copied: kdebase/repos/staging-i686/PKGBUILD (from rev 187205, kdebase/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD (rev 0)
+++ staging-i686/PKGBUILD 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,124 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Pierre Schmitz <pierre at archlinux.de>
+
+pkgbase=kdebase
+pkgname=('kdebase-dolphin'
+ 'kdebase-kdepasswd'
+ 'kdebase-kdialog'
+ 'kdebase-keditbookmarks'
+ 'kdebase-kfind'
+ 'kdebase-konq-plugins'
+ 'kdebase-konqueror'
+ 'kdebase-lib'
+ 'kdebase-plasma')
+pkgver=4.10.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdebase')
+makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml' 'nepomuk-widgets')
+source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz")
+sha1sums=('5465fffdaea70a5ca225283f45b9504775d0432d')
+
+build() {
+ cd ${srcdir}
+ mkdir build
+ cd build
+ cmake ../kde-baseapps-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DKDE4_BUILD_TESTS=OFF \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package_kdebase-dolphin() {
+ pkgdesc='File Manager'
+ depends=('kdebase-runtime' 'kdebase-lib' 'nepomuk-widgets')
+ optdepends=('kdegraphics-svgpart: thumbailers for SVG files'
+ 'kdegraphics-thumbnailers: thumbnailers for various graphics files'
+ 'kdemultimedia-ffmpegthumbs: thumbnailers for video files'
+ 'kdemultimedia-mplayerthumbs: thumbnailers for video files'
+ 'icoutils: thumbnailers for MS files'
+ 'ruby: servicemenu installation')
+ url="http://kde.org/applications/system/dolphin/"
+ install=kdebase-dolphin.install
+ cd $srcdir/build/dolphin
+ make DESTDIR=$pkgdir install
+ cd $srcdir/build/doc/dolphin
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-kdepasswd() {
+ pkgdesc='Change Password'
+ depends=('kdebase-runtime' 'kdebase-lib')
+ cd $srcdir/build/kdepasswd
+ make DESTDIR=$pkgdir install
+ cd $srcdir/build/doc/kdepasswd
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-kdialog() {
+ pkgdesc='A utility for displaying dialog boxes from shell scripts'
+ depends=('kdebase-runtime')
+ cd $srcdir/build/kdialog
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-keditbookmarks() {
+ pkgdesc='Bookmark Organizer and Editor'
+ depends=('kdebase-runtime')
+ cd $srcdir/build/keditbookmarks
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-kfind() {
+ pkgdesc='Find Files/Folders'
+ depends=('kdebase-runtime' 'kdebase-lib')
+ url="http://kde.org/applications/utilities/kfind/"
+ install='kdebase.install'
+ cd $srcdir/build/kfind
+ make DESTDIR=$pkgdir install
+ cd $srcdir/build/doc/kfind
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-konq-plugins() {
+ pkgdesc='Extra plugins for Konqueror'
+ depends=('kdebase-konqueror' 'tidyhtml')
+ replaces=('konq-plugins')
+ install='kdebase.install'
+ cd $srcdir/build/konq-plugins
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-konqueror() {
+ pkgdesc='KDE File Manager & Web Browser'
+ depends=('kdebase-dolphin' 'kdebase-keditbookmarks')
+ optdepends=('kwebkitpart: to enable webkit engine')
+ url="http://kde.org/applications/internet/konqueror/"
+ install='kdebase-konqueror.install'
+ conflicts=('kdebase-nsplugins')
+ replaces=('kdebase-nsplugins')
+ for i in konqueror doc/konqueror nsplugins; do
+ cd $srcdir/build/${i}
+ make DESTDIR=$pkgdir install
+ done
+}
+
+package_kdebase-lib() {
+ pkgdesc='KDE libraries for the basic desktop applications'
+ groups=()
+ depends=('kdelibs')
+ cd $srcdir/build/lib
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-plasma() {
+ pkgdesc='Display the contents of folders (User´s home folder as default)'
+ depends=('kdebase-workspace' 'kdebase-lib')
+ cd $srcdir/build/plasma
+ make DESTDIR=$pkgdir install
+}
Copied: kdebase/repos/staging-i686/kdebase-dolphin.install (from rev 187205, kdebase/trunk/kdebase-dolphin.install)
===================================================================
--- staging-i686/kdebase-dolphin.install (rev 0)
+++ staging-i686/kdebase-dolphin.install 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,11 @@
+post_install() {
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: kdebase/repos/staging-i686/kdebase-konqueror.install (from rev 187205, kdebase/trunk/kdebase-konqueror.install)
===================================================================
--- staging-i686/kdebase-konqueror.install (rev 0)
+++ staging-i686/kdebase-konqueror.install 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,12 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: kdebase/repos/staging-i686/kdebase.install (from rev 187205, kdebase/trunk/kdebase.install)
===================================================================
--- staging-i686/kdebase.install (rev 0)
+++ staging-i686/kdebase.install 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: kdebase/repos/staging-x86_64/PKGBUILD (from rev 187205, kdebase/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,124 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Pierre Schmitz <pierre at archlinux.de>
+
+pkgbase=kdebase
+pkgname=('kdebase-dolphin'
+ 'kdebase-kdepasswd'
+ 'kdebase-kdialog'
+ 'kdebase-keditbookmarks'
+ 'kdebase-kfind'
+ 'kdebase-konq-plugins'
+ 'kdebase-konqueror'
+ 'kdebase-lib'
+ 'kdebase-plasma')
+pkgver=4.10.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdebase')
+makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml' 'nepomuk-widgets')
+source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz")
+sha1sums=('5465fffdaea70a5ca225283f45b9504775d0432d')
+
+build() {
+ cd ${srcdir}
+ mkdir build
+ cd build
+ cmake ../kde-baseapps-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DKDE4_BUILD_TESTS=OFF \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package_kdebase-dolphin() {
+ pkgdesc='File Manager'
+ depends=('kdebase-runtime' 'kdebase-lib' 'nepomuk-widgets')
+ optdepends=('kdegraphics-svgpart: thumbailers for SVG files'
+ 'kdegraphics-thumbnailers: thumbnailers for various graphics files'
+ 'kdemultimedia-ffmpegthumbs: thumbnailers for video files'
+ 'kdemultimedia-mplayerthumbs: thumbnailers for video files'
+ 'icoutils: thumbnailers for MS files'
+ 'ruby: servicemenu installation')
+ url="http://kde.org/applications/system/dolphin/"
+ install=kdebase-dolphin.install
+ cd $srcdir/build/dolphin
+ make DESTDIR=$pkgdir install
+ cd $srcdir/build/doc/dolphin
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-kdepasswd() {
+ pkgdesc='Change Password'
+ depends=('kdebase-runtime' 'kdebase-lib')
+ cd $srcdir/build/kdepasswd
+ make DESTDIR=$pkgdir install
+ cd $srcdir/build/doc/kdepasswd
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-kdialog() {
+ pkgdesc='A utility for displaying dialog boxes from shell scripts'
+ depends=('kdebase-runtime')
+ cd $srcdir/build/kdialog
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-keditbookmarks() {
+ pkgdesc='Bookmark Organizer and Editor'
+ depends=('kdebase-runtime')
+ cd $srcdir/build/keditbookmarks
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-kfind() {
+ pkgdesc='Find Files/Folders'
+ depends=('kdebase-runtime' 'kdebase-lib')
+ url="http://kde.org/applications/utilities/kfind/"
+ install='kdebase.install'
+ cd $srcdir/build/kfind
+ make DESTDIR=$pkgdir install
+ cd $srcdir/build/doc/kfind
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-konq-plugins() {
+ pkgdesc='Extra plugins for Konqueror'
+ depends=('kdebase-konqueror' 'tidyhtml')
+ replaces=('konq-plugins')
+ install='kdebase.install'
+ cd $srcdir/build/konq-plugins
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-konqueror() {
+ pkgdesc='KDE File Manager & Web Browser'
+ depends=('kdebase-dolphin' 'kdebase-keditbookmarks')
+ optdepends=('kwebkitpart: to enable webkit engine')
+ url="http://kde.org/applications/internet/konqueror/"
+ install='kdebase-konqueror.install'
+ conflicts=('kdebase-nsplugins')
+ replaces=('kdebase-nsplugins')
+ for i in konqueror doc/konqueror nsplugins; do
+ cd $srcdir/build/${i}
+ make DESTDIR=$pkgdir install
+ done
+}
+
+package_kdebase-lib() {
+ pkgdesc='KDE libraries for the basic desktop applications'
+ groups=()
+ depends=('kdelibs')
+ cd $srcdir/build/lib
+ make DESTDIR=$pkgdir install
+}
+
+package_kdebase-plasma() {
+ pkgdesc='Display the contents of folders (User´s home folder as default)'
+ depends=('kdebase-workspace' 'kdebase-lib')
+ cd $srcdir/build/plasma
+ make DESTDIR=$pkgdir install
+}
Copied: kdebase/repos/staging-x86_64/kdebase-dolphin.install (from rev 187205, kdebase/trunk/kdebase-dolphin.install)
===================================================================
--- staging-x86_64/kdebase-dolphin.install (rev 0)
+++ staging-x86_64/kdebase-dolphin.install 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,11 @@
+post_install() {
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: kdebase/repos/staging-x86_64/kdebase-konqueror.install (from rev 187205, kdebase/trunk/kdebase-konqueror.install)
===================================================================
--- staging-x86_64/kdebase-konqueror.install (rev 0)
+++ staging-x86_64/kdebase-konqueror.install 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,12 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: kdebase/repos/staging-x86_64/kdebase.install (from rev 187205, kdebase/trunk/kdebase.install)
===================================================================
--- staging-x86_64/kdebase.install (rev 0)
+++ staging-x86_64/kdebase.install 2013-06-05 05:19:31 UTC (rev 187206)
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
More information about the arch-commits
mailing list