From a201b00b28f26977ff4618760b7c39f9a0e7f02a Mon Sep 17 00:00:00 2001 From: Phil Date: Tue, 18 Jan 2011 08:34:58 +0000 Subject: [PATCH] recompile akonadi and soprano against testing --- support-pkg-akonadi/PKGBUILD | 2 +- support-pkg-soprano/PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 support-pkg-soprano/PKGBUILD diff --git a/support-pkg-akonadi/PKGBUILD b/support-pkg-akonadi/PKGBUILD index a71f6346f..d12acde35 100644 --- a/support-pkg-akonadi/PKGBUILD +++ b/support-pkg-akonadi/PKGBUILD @@ -9,7 +9,7 @@ source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=akonadi pkgver=1.4.1 -pkgrel=1 +pkgrel=2 pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data" arch=('i686' 'x86_64') url='http://www.akonadi-project.org' diff --git a/support-pkg-soprano/PKGBUILD b/support-pkg-soprano/PKGBUILD new file mode 100644 index 000000000..c2892707b --- /dev/null +++ b/support-pkg-soprano/PKGBUILD @@ -0,0 +1,38 @@ +# +# KDE SC Packages for Chakra, part of chakra-project.org +# +# maintainer (i686): Phil Miller +# maintainer (x86_64): Manuel Tortosa + +# include global config +source ../_buildscripts/${current_repo}-${_arch}-cfg.conf + +pkgname=soprano +pkgver=2.4.64 +pkgrel=2 +pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 framework for RDF data' +arch=('i686' 'x86_64') +url='http://soprano.sourceforge.net/' +license=('GPL' 'LGPL') +depends=('qt' 'clucene' 'redland' 'libiodbc' 'virtuoso') +makedepends=('cmake' 'openjdk6') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('edb7f48dd4cc0d5baa75797520c189fc') + +build() { + cd ${srcdir} + mkdir build + cd build + . /etc/profile.d/openjdk6.sh + # we need the rpath + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr || return \ + make || return 1 +} + +package() { + cd ${srcdir}/build + make DESTDIR="${pkgdir}" install || return 1 +}