Date: Monday, May 23, 2011 @ 16:36:47 Author: andrea Revision: 124667
KDE 4.7beta1 - splitted kdebindings Added: kdebindings-kimono/ kdebindings-kimono/kde-unstable/ kdebindings-kimono/kde-unstable/PKGBUILD kdebindings-kimono/repos/ kdebindings-kimono/trunk/ kdebindings-korundum/ kdebindings-korundum/kde-unstable/ kdebindings-korundum/kde-unstable/PKGBUILD kdebindings-korundum/repos/ kdebindings-korundum/trunk/ kdebindings-perlkde/ kdebindings-perlkde/kde-unstable/ kdebindings-perlkde/kde-unstable/PKGBUILD kdebindings-perlkde/repos/ kdebindings-perlkde/trunk/ kdebindings-perlqt/ kdebindings-perlqt/kde-unstable/ kdebindings-perlqt/kde-unstable/PKGBUILD kdebindings-perlqt/repos/ kdebindings-perlqt/trunk/ kdebindings-python/ kdebindings-python/kde-unstable/ kdebindings-python/kde-unstable/PKGBUILD kdebindings-python/repos/ kdebindings-python/trunk/ kdebindings-qtruby/ kdebindings-qtruby/kde-unstable/ kdebindings-qtruby/kde-unstable/PKGBUILD kdebindings-qtruby/repos/ kdebindings-qtruby/trunk/ kdebindings-qyoto/ kdebindings-qyoto/kde-unstable/ kdebindings-qyoto/kde-unstable/PKGBUILD kdebindings-qyoto/repos/ kdebindings-qyoto/trunk/ kdebindings-smokegen/ kdebindings-smokegen/kde-unstable/ kdebindings-smokegen/kde-unstable/PKGBUILD kdebindings-smokegen/repos/ kdebindings-smokegen/trunk/ kdebindings-smokekde/ kdebindings-smokekde/kde-unstable/ kdebindings-smokekde/kde-unstable/PKGBUILD kdebindings-smokekde/repos/ kdebindings-smokekde/trunk/ kdebindings-smokeqt/ kdebindings-smokeqt/kde-unstable/ kdebindings-smokeqt/kde-unstable/PKGBUILD kdebindings-smokeqt/repos/ kdebindings-smokeqt/trunk/ --------------------------------------------+ kdebindings-kimono/kde-unstable/PKGBUILD | 31 ++++++++++++++++++++++++ kdebindings-korundum/kde-unstable/PKGBUILD | 31 ++++++++++++++++++++++++ kdebindings-perlkde/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++ kdebindings-perlqt/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++ kdebindings-python/kde-unstable/PKGBUILD | 34 +++++++++++++++++++++++++++ kdebindings-qtruby/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++ kdebindings-qyoto/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++ kdebindings-smokegen/kde-unstable/PKGBUILD | 29 +++++++++++++++++++++++ kdebindings-smokekde/kde-unstable/PKGBUILD | 31 ++++++++++++++++++++++++ kdebindings-smokeqt/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++ 10 files changed, 306 insertions(+) Added: kdebindings-kimono/kde-unstable/PKGBUILD =================================================================== --- kdebindings-kimono/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-kimono/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-kimono +pkgver=4.6.80 +pkgrel=1 +pkgdesc=".NET/Mono bindings for the KDE libraries" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebindings-qyoto' 'kdebindings-smokekde') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +replaces=('kdebindings-csharp') +source=("http://download.kde.org/unstable/${pkgver}/src/kimono-${pkgver}.tar.bz2") +sha1sums=('911dfbee3141ca0f72c13e15bafc549ccd9ab33a') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kimono-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdebindings-kimono/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-korundum/kde-unstable/PKGBUILD =================================================================== --- kdebindings-korundum/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-korundum/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-korundum +pkgver=4.6.80 +pkgrel=1 +pkgdesc="KDE bindings for ruby" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebindings-qtruby' 'kdebindings-smokekde') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +replaces=('kdebindings-ruby') +source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.bz2") +sha1sums=('30209e7e3d3dc54c7eb787d7e7bcc90735c5bc1a') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../korundum-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdebindings-korundum/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-perlkde/kde-unstable/PKGBUILD =================================================================== --- kdebindings-perlkde/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-perlkde/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-perlkde +pkgver=4.6.80 +pkgrel=1 +pkgdesc="Perl bindings for the KDE libraries" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebindings-perlqt' 'kdebindings-smokekde') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +source=("http://download.kde.org/unstable/${pkgver}/src/perlkde-${pkgver}.tar.bz2") +sha1sums=('7f63ae1c1e30edf226ca8418d5fa78edaf42cb36') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../perlkde-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdebindings-perlkde/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-perlqt/kde-unstable/PKGBUILD =================================================================== --- kdebindings-perlqt/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-perlqt/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-perlqt +pkgver=4.6.80 +pkgrel=1 +pkgdesc="Perl bindings for the Qt libraries" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebindings-smokeqt') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +source=("http://download.kde.org/unstable/${pkgver}/src/perlqt-${pkgver}.tar.bz2") +sha1sums=('aa6f72ff5eed3f178a1d7274e61c2c7ed81fd74e') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../perlqt-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdebindings-perlqt/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-python/kde-unstable/PKGBUILD =================================================================== --- kdebindings-python/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-python/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-python +pkgver=4.6.80 +pkgrel=1 +pkgdesc="KDE bindings for python" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs') +makedepends=('cmake' 'automoc4' 'boost') +source=("http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2") +sha1sums=('f45e40298046ecea382f9b85c34b3e21d856a9da') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../pykde4-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DPYTHON_EXECUTABLE=/usr/bin/python2 + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install + + # Use the python2 executable + find "${pkgdir}" -name '*.py' | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' +} Property changes on: kdebindings-python/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-qtruby/kde-unstable/PKGBUILD =================================================================== --- kdebindings-qtruby/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-qtruby/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-qtruby +pkgver=4.6.80 +pkgrel=1 +pkgdesc="Qt bindings for ruby" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebindings-smokeqt' 'ruby') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +source=("http://download.kde.org/unstable/${pkgver}/src/qtruby-${pkgver}.tar.bz2") +sha1sums=('9b153784efb3187ca4f38a14355b8a5ce283316c') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../qtruby-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdebindings-qtruby/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-qyoto/kde-unstable/PKGBUILD =================================================================== --- kdebindings-qyoto/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-qyoto/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-qyoto +pkgver=4.6.80 +pkgrel=1 +pkgdesc=".NET/Mono bindings for the Qt libraries" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebindings-smokeqt' 'mono') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +source=("http://download.kde.org/unstable/${pkgver}/src/qyoto-${pkgver}.tar.bz2") +sha1sums=('7f63ae1c1e30edf226ca8418d5fa78edaf42cb36') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../qyoto-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdebindings-qyoto/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-smokegen/kde-unstable/PKGBUILD =================================================================== --- kdebindings-smokegen/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-smokegen/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-smokegen +pkgver=4.6.80 +pkgrel=1 +pkgdesc="A general purpose C++ parser with a plugin infrastructure" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.bz2") +sha1sums=('ce860f4308df4cc91b1e49d0f1f5bca3805c4cf1') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../smokegen-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} \ No newline at end of file Property changes on: kdebindings-smokegen/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-smokekde/kde-unstable/PKGBUILD =================================================================== --- kdebindings-smokekde/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-smokekde/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-smokekde +pkgver=4.6.80 +pkgrel=1 +pkgdesc="Language independent library for KDE bindings" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebindings-smokeqt' 'kdepimlibs' 'kdegraphics-okular') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +replaces=('kdebindings-smoke') +source=("http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.bz2") +sha1sums=('9fd8cbac3f0affce6fa078b07ca418a5e0c79521') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../smokekde-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdebindings-smokekde/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: kdebindings-smokeqt/kde-unstable/PKGBUILD =================================================================== --- kdebindings-smokeqt/kde-unstable/PKGBUILD (rev 0) +++ kdebindings-smokeqt/kde-unstable/PKGBUILD 2011-05-23 20:36:47 UTC (rev 124667) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdebindings-smokeqt +pkgver=4.6.80 +pkgrel=1 +pkgdesc="Language independent library for Qt bindings" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdebindings') +depends=('kdebase-runtime' 'qimageblitz' 'qscintilla' 'qwt') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') +source=("http://download.kde.org/unstable/${pkgver}/src/smokeqt-${pkgver}.tar.bz2") +sha1sums=('872b77e7e445b7492a647e63e267677604d76a96') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../smokeqt-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} \ No newline at end of file Property changes on: kdebindings-smokeqt/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
