Date: Monday, May 23, 2011 @ 16:54:29 Author: andrea Revision: 124682
KDE 4.7beta1 - splitted kdegraphics Added: libkdcraw/ libkdcraw/kde-unstable/ libkdcraw/kde-unstable/PKGBUILD libkdcraw/kde-unstable/libkdcraw.install libkdcraw/repos/ libkdcraw/trunk/ libkexiv2/ libkexiv2/kde-unstable/ libkexiv2/kde-unstable/PKGBUILD libkexiv2/repos/ libkexiv2/trunk/ libkface/ libkface/kde-unstable/ libkface/kde-unstable/PKGBUILD libkface/repos/ libkface/trunk/ libkipi/kde-unstable/ libkipi/kde-unstable/PKGBUILD libkipi/kde-unstable/libkipi.install libksane/ libksane/kde-unstable/ libksane/kde-unstable/PKGBUILD libksane/kde-unstable/libksane.install libksane/repos/ libksane/trunk/ Deleted: libkipi/trunk/PKGBUILD ------------------------------------------+ libkdcraw/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++++++++ libkdcraw/kde-unstable/libkdcraw.install | 11 ++++++++++ libkexiv2/kde-unstable/PKGBUILD | 29 ++++++++++++++++++++++++++++ libkface/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++++++++ libkipi/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++++++++ libkipi/kde-unstable/libkipi.install | 11 ++++++++++ libkipi/trunk/PKGBUILD | 28 --------------------------- libksane/kde-unstable/PKGBUILD | 30 +++++++++++++++++++++++++++++ libksane/kde-unstable/libksane.install | 11 ++++++++++ 9 files changed, 182 insertions(+), 28 deletions(-) Added: libkdcraw/kde-unstable/PKGBUILD =================================================================== --- libkdcraw/kde-unstable/PKGBUILD (rev 0) +++ libkdcraw/kde-unstable/PKGBUILD 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=libkdcraw +pkgver=4.6.80 +pkgrel=1 +pkgdesc="A C++ interface used to decode RAW picture" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs' 'lcms') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('19fe60a51ede7bf5b4047f8fff22cd8361ebd90c') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: libkdcraw/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: libkdcraw/kde-unstable/libkdcraw.install =================================================================== --- libkdcraw/kde-unstable/libkdcraw.install (rev 0) +++ libkdcraw/kde-unstable/libkdcraw.install 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Added: libkexiv2/kde-unstable/PKGBUILD =================================================================== --- libkexiv2/kde-unstable/PKGBUILD (rev 0) +++ libkexiv2/kde-unstable/PKGBUILD 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=libkexiv2 +pkgver=4.6.80 +pkgrel=1 +pkgdesc="A library to manipulate pictures metadata" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('cff979e2bcc604ec422feff0bc1fee3483955e5d') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: libkexiv2/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: libkface/kde-unstable/PKGBUILD =================================================================== --- libkface/kde-unstable/PKGBUILD (rev 0) +++ libkface/kde-unstable/PKGBUILD 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=libkface +pkgver=4.6.80 +pkgrel=1 +pkgdesc="A library to perform face recognition and detection over pictures" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs' 'opencv') +makedepends=('cmake' 'automoc4') +#install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('197b7c26e70c45339745efc839698c3ad276bb65') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: libkface/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: libkipi/kde-unstable/PKGBUILD =================================================================== --- libkipi/kde-unstable/PKGBUILD (rev 0) +++ libkipi/kde-unstable/PKGBUILD 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=libkipi +pkgver=4.6.80 +pkgrel=1 +pkgdesc="An interface to use kipi-plugins from a KDE application" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('f87620e1eaa795129447473c3b89dbc5a27da161') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: libkipi/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: libkipi/kde-unstable/libkipi.install =================================================================== --- libkipi/kde-unstable/libkipi.install (rev 0) +++ libkipi/kde-unstable/libkipi.install 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Deleted: libkipi/trunk/PKGBUILD =================================================================== --- libkipi/trunk/PKGBUILD 2011-05-23 20:52:16 UTC (rev 124681) +++ libkipi/trunk/PKGBUILD 2011-05-23 20:54:29 UTC (rev 124682) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Tobias Powalowski <[email protected]> - -pkgname=libkipi -pkgver=0.1.6 -pkgrel=2 -pkgdesc="library for kipi-plugins" -arch=(i686 x86_64) -url="http://digikam.sourceforge.net" -depends=('kdelibs3') -source=(http://dl.sourceforge.net/sourceforge/kipi/$pkgname-$pkgver.tar.bz2) -md5sums=('6fd010aa8eab7039143f69543e806c65') - -build() { - cd $startdir/src/$pkgname-$pkgver - . /etc/profile.d/qt3.sh - . /etc/profile.d/kde3.sh - #cd $startdir/src/$pkgname-$pkgver/libkipi/libkipi - #sed -i -e 's#libkipi/##g' *.cpp - #sed -i -e 's#libkipi/##g' *.h - cd $startdir/src/$pkgname-$pkgver - ./configure --prefix=/opt/kde --disable-debug --without-arts - make || return 1 - make DESTDIR=$startdir/pkg/ install - # fix pkg-config that it is in main path - #mkdir -p $startdir/pkg/usr/lib/ - #mv $startdir/pkg/opt/kde/lib/pkgconfig $startdir/pkg/usr/lib/ - } Added: libksane/kde-unstable/PKGBUILD =================================================================== --- libksane/kde-unstable/PKGBUILD (rev 0) +++ libksane/kde-unstable/PKGBUILD 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=libksane +pkgver=4.6.80 +pkgrel=1 +pkgdesc="An image scanning library" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs' 'sane') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('19cf8532f5ea046343fcaa51b9a9c0df7aae2978') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: libksane/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: libksane/kde-unstable/libksane.install =================================================================== --- libksane/kde-unstable/libksane.install (rev 0) +++ libksane/kde-unstable/libksane.install 2011-05-23 20:54:29 UTC (rev 124682) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
