From 0ae0bbf69f178e375a9ecd349114865b663db23f Mon Sep 17 00:00:00 2001 From: Phil Date: Tue, 15 Feb 2011 22:47:23 +0000 Subject: [PATCH] * libbluedevil bump to 1.8 * bluedevil - rebuild due obexd bump and libbluedevil bump --- tools-pkg-bluedevil/PKGBUILD | 30 ++++++++++----------------- tools-pkg-bluedevil/bluedevil.install | 11 ++++++++++ tools-pkg-libbluedevil/PKGBUILD | 22 +++++++------------- 3 files changed, 29 insertions(+), 34 deletions(-) create mode 100644 tools-pkg-bluedevil/bluedevil.install diff --git a/tools-pkg-bluedevil/PKGBUILD b/tools-pkg-bluedevil/PKGBUILD index 54568a333..28bd5cb6b 100644 --- a/tools-pkg-bluedevil/PKGBUILD +++ b/tools-pkg-bluedevil/PKGBUILD @@ -4,33 +4,25 @@ # maintainer (i686): Phil Miller # maintainer (x86_64): Manuel Tortosa -# include global config -source ../_buildscripts/${current_repo}-${_arch}-cfg.conf - pkgname=bluedevil -pkgver=1.0.1 -pkgrel=1 -pkgdesc='The new bluetooth stack for KDE, it’s composed of: KCM, KDED, KIO, Library and some other small applications' +pkgver=1.0.2 +pkgrel=2 +pkgdesc='KDE bluetooth framework' arch=('i686' 'x86_64') -url="http://gitorious.org/bluedevil" +url="https://projects.kde.org/projects/extragear/base/bluedevil" license=('GPL') -depends=('kdelibs' 'libbluedevil>=1.0' 'obex-data-server' 'obexd-client') # kdebase-workspace -makedepends=('cmake') -provides=(bluedevil) -conflicts=(bluedevil-git) - -source=("http://www.afiestas.org/files/bluedevil/bluedevil-$pkgver.tar.bz2") -md5sums=("4558dd739a58978b93d513a45d6e6b35") +depends=('kdebase-workspace' 'libbluedevil' 'obex-data-server' 'obexd-client') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +md5sums=('c0c814146098b865144957bc8b3bd7e7') build(){ cd ${srcdir} - - mkdir -p build + mkdir build cd build - - cmake ../$pkgname-$pkgver \ + cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_SKIP_RPATH=ON \ -DCMAKE_INSTALL_PREFIX=/usr make } diff --git a/tools-pkg-bluedevil/bluedevil.install b/tools-pkg-bluedevil/bluedevil.install new file mode 100644 index 000000000..8652c4ad4 --- /dev/null +++ b/tools-pkg-bluedevil/bluedevil.install @@ -0,0 +1,11 @@ +post_install() { + update-mime-database usr/share/mime &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/tools-pkg-libbluedevil/PKGBUILD b/tools-pkg-libbluedevil/PKGBUILD index 58558b880..7bcd2f9ea 100644 --- a/tools-pkg-libbluedevil/PKGBUILD +++ b/tools-pkg-libbluedevil/PKGBUILD @@ -4,32 +4,24 @@ # maintainer (i686): Phil Miller # maintainer (x86_64): Manuel Tortosa -# include global config -source ../_buildscripts/${current_repo}-${_arch}-cfg.conf - pkgname=libbluedevil -pkgver=1.0 -pkgrel=2 +pkgver=1.8 +pkgrel=1 pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack' arch=('i686' 'x86_64') -url="http://gitorious.org/libbluedevil" +url="https://projects.kde.org/projects/playground/libs/libbluedevil" license=('GPL') depends=('qt' 'bluez') makedepends=('cmake') -provides=("libbluedevil") -conflicts=("libbluedevil-git") -source=("http://chakra-project.org/sources/$pkgname/$pkgname-$pkgver.tar.xz") -md5sums=('1a10c3fbc5ce96f1bc674998345d1676') +source=("http://media.ereslibre.es/2010/11/${pkgname}-v${pkgver}-1.tar.bz2") +md5sums=('03c79dd8a6d40e2872fee27c9b81190d') build(){ cd ${srcdir} - - mkdir -p build + mkdir build cd build - - cmake ../$pkgname-$pkgver \ + cmake ../${pkgname}-v${pkgver}-1 \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_SKIP_RPATH=ON \ -DCMAKE_INSTALL_PREFIX=/usr make }