[arch-commits] Commit in qtcurve/repos (4 files)

2017-06-03 Thread Antonio Rojas
Date: Saturday, June 3, 2017 @ 23:45:33
  Author: arojas
Revision: 233839

archrelease: copy trunk to community-i686, community-x86_64

Added:
  qtcurve/repos/community-i686/PKGBUILD
(from rev 233838, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-x86_64/PKGBUILD
(from rev 233838, qtcurve/trunk/PKGBUILD)
Deleted:
  qtcurve/repos/community-i686/PKGBUILD
  qtcurve/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  156 
 community-i686/PKGBUILD   |   58 
 community-x86_64/PKGBUILD |   58 
 3 files changed, 156 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-03 23:45:03 UTC (rev 233838)
+++ community-i686/PKGBUILD 2017-06-03 23:45:33 UTC (rev 233839)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=qtcurve
-pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5')
-pkgver=1.9.0
-pkgrel=1
-pkgdesc='A configurable set of widget styles for KDE and Gtk'
-arch=('i686' 'x86_64')
-url='https://github.com/KDE/qtcurve/'
-license=('LGPL')
-groups=('qtcurve')
-makedepends=('extra-cmake-modules' 'gtk2' 'qt4' 'kdelibs4support' 'kdoctools' 
'frameworkintegration' 'python' 'kdesignerplugin')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/KDE/qtcurve/archive/$pkgver.tar.gz;)
-sha256sums=('1024503be314596f8047f0ab0efde99a01959bacfaffd0d1305212be53d34b85')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgbase-$pkgver \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DQTC_QT4_ENABLE_KDE=false
-  make
-}
-
-package_qtcurve-utils() {
-  depends=('libx11' 'gcc-libs')
-  cd build/lib/utils
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-gtk2() {
-  depends=('qtcurve-utils' 'gtk2')
-  cd build/gtk2
-  make DESTDIR="$pkgdir" install
-  cd ../lib/cairo
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-qt4() {
-  depends=('qtcurve-utils' 'qt4')
-  cd build/qt4
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-qt5() {
-  depends=('qtcurve-utils' 'kdelibs4support' 'frameworkintegration')
-  cd build/qt5
-  make DESTDIR="$pkgdir" install
-}

Copied: qtcurve/repos/community-i686/PKGBUILD (from rev 233838, 
qtcurve/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-03 23:45:33 UTC (rev 233839)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde')
+pkgver=1.9.1
+pkgrel=1
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/KDE/qtcurve/'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('extra-cmake-modules' 'gtk2' 'qt4' 'kdelibs4support' 'kdoctools' 
'frameworkintegration' 'python' 'kdesignerplugin')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/KDE/qtcurve/archive/$pkgver.tar.gz;)
+sha256sums=('fbfdafdac90d4c540dd55a4accfecfc3a17c1f532c5241e28003348beafaca15')
+
+prepare() {
+  mkdir -p build{,-kde}
+}
+
+build() {
+  cd build
+  cmake ../$pkgbase-$pkgver \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false \
+   -DQTC_QT5_ENABLE_KDE=false
+  make
+
+  cd ../build-kde
+  cmake ../$pkgbase-$pkgver \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+}
+
+package_qtcurve-utils() {
+  pkgdesc='A configurable set of widget styles for KDE and Gtk (shared 
libraries)'
+  depends=('libx11' 'gcc-libs')
+  cd build/lib/utils
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-gtk2() {
+  pkgdesk='A configurable set of widget styles for Gtk2'
+  depends=('qtcurve-utils' 'gtk2')
+  cd build/gtk2
+  make DESTDIR="$pkgdir" install
+  cd ../lib/cairo
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt4() {
+  pkgdesc='A configurable set of widget styles for Qt4'
+  depends=('qtcurve-utils' 'qt4')
+  cd build/qt4
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt5() {
+  pkgdesc='A configurable set of widget styles for Qt5'
+  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
+  groups=()
+  cd build/qt5
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-kde() {
+  pkgdesc='A configurable set of widget styles for Qt5 (with KDE integration)'
+  depends=('qtcurve-utils' 

[arch-commits] Commit in qtcurve/repos (4 files)

2017-06-02 Thread Antonio Rojas
Date: Friday, June 2, 2017 @ 14:56:49
  Author: arojas
Revision: 233419

archrelease: copy trunk to community-i686, community-x86_64

Added:
  qtcurve/repos/community-i686/PKGBUILD
(from rev 233418, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-x86_64/PKGBUILD
(from rev 233418, qtcurve/trunk/PKGBUILD)
Deleted:
  qtcurve/repos/community-i686/PKGBUILD
  qtcurve/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  116 
 community-i686/PKGBUILD   |   56 -
 community-x86_64/PKGBUILD |   56 -
 3 files changed, 116 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-02 14:56:12 UTC (rev 233418)
+++ community-i686/PKGBUILD 2017-06-02 14:56:49 UTC (rev 233419)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=qtcurve
-pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5')
-pkgver=1.8.18.git20151017
-pkgrel=1
-pkgdesc='A configurable set of widget styles for KDE and Gtk'
-arch=('i686' 'x86_64')
-url='https://github.com/QtCurve/qtcurve'
-license=('LGPL')
-groups=('qtcurve')
-makedepends=('extra-cmake-modules' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdelibs4support' 'kdoctools')
-#source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-source=("http://quickgit.kde.org/?p=qtcurve.git=snapshot=036943575bbe15cc822a1fbca2c96391e5a04fd7=tgz;)
-md5sums=('a664ec255a4fb5f77f1ecb57649d3260')
-
-build() {
-  cd $pkgbase
-
-  mkdir build
-  cd build
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DQTC_QT4_ENABLE_KDE=false
-  make
-}
-
-package_qtcurve-utils() {
-  depends=('libx11' 'gcc-libs')
-  cd $pkgbase/build/lib/utils
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-gtk2() {
-  depends=('qtcurve-utils' 'gtk2')
-  cd $pkgbase/build/gtk2
-  make DESTDIR="$pkgdir" install
-  cd ../lib/cairo
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-qt4() {
-  depends=('qtcurve-utils' 'qt4')
-  cd $pkgbase/build/qt4
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-qt5() {
-  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
-  cd $pkgbase/build/qt5
-  make DESTDIR="$pkgdir" install
-}

Copied: qtcurve/repos/community-i686/PKGBUILD (from rev 233418, 
qtcurve/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-02 14:56:49 UTC (rev 233419)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5')
+pkgver=1.9.0
+pkgrel=1
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/KDE/qtcurve/'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('extra-cmake-modules' 'gtk2' 'qt4' 'kdelibs4support' 'kdoctools' 
'frameworkintegration' 'python' 'kdesignerplugin')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/KDE/qtcurve/archive/$pkgver.tar.gz;)
+sha256sums=('1024503be314596f8047f0ab0efde99a01959bacfaffd0d1305212be53d34b85')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgbase-$pkgver \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11' 'gcc-libs')
+  cd build/lib/utils
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd build/gtk2
+  make DESTDIR="$pkgdir" install
+  cd ../lib/cairo
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd build/qt4
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 'kdelibs4support' 'frameworkintegration')
+  cd build/qt5
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-02 14:56:12 UTC (rev 233418)
+++ community-x86_64/PKGBUILD   2017-06-02 14:56:49 UTC (rev 233419)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=qtcurve
-pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5')
-pkgver=1.8.18.git20151017
-pkgrel=1
-pkgdesc='A configurable set 

[arch-commits] Commit in qtcurve/repos (4 files)

2015-12-11 Thread Antonio Rojas
Date: Saturday, December 12, 2015 @ 00:05:04
  Author: arojas
Revision: 153067

archrelease: copy trunk to community-i686, community-x86_64

Added:
  qtcurve/repos/community-i686/PKGBUILD
(from rev 153066, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-x86_64/PKGBUILD
(from rev 153066, qtcurve/trunk/PKGBUILD)
Deleted:
  qtcurve/repos/community-i686/PKGBUILD
  qtcurve/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  112 
 community-i686/PKGBUILD   |   80 ---
 community-x86_64/PKGBUILD |   80 ---
 3 files changed, 112 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-11 23:04:16 UTC (rev 153066)
+++ community-i686/PKGBUILD 2015-12-11 23:05:04 UTC (rev 153067)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=qtcurve
-pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
-pkgver=1.8.18
-pkgrel=4
-pkgdesc='A configurable set of widget styles for KDE and Gtk'
-arch=('i686' 'x86_64')
-url='https://github.com/QtCurve/qtcurve'
-license=('LGPL')
-groups=('qtcurve')
-makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
-source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
-
"https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
-md5sums=('422d1876d944bb278855f320eda19368'
- '632c1dfa26fcc5f5d45fe082c9738f3b')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  # fix FS#40524 - Qt 5.3 build fix
-  patch -p1 -i ../${source[1]##*/}
-}
-
-build() {
-  cd $pkgbase-$pkgver
-
-  mkdir build{,-kde4}
-  cd build
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DQTC_QT4_ENABLE_KDE=false
-  make
-
-  cd ../build-kde4
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
-   -DENABLE_GTK2=false \
-   -DENABLE_QT5=false
-  make
-}
-
-package_qtcurve-utils() {
-  depends=('libx11')
-  cd $pkgbase-$pkgver/build/lib/utils
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-gtk2() {
-  depends=('qtcurve-utils' 'gtk2')
-  cd $pkgbase-$pkgver/build/gtk2
-  make DESTDIR="$pkgdir" install
-  cd ../lib/cairo
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-qt4() {
-  depends=('qtcurve-utils' 'qt4')
-  cd $pkgbase-$pkgver/build/qt4
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-qt5() {
-  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
-  cd $pkgbase-$pkgver/build/qt5
-  make DESTDIR="$pkgdir" install
-}
-
-package_qtcurve-kde4() {
-  depends=('qtcurve-utils' 'kdebase-workspace')
-  cd $pkgbase-$pkgver/build-kde4/qt4
-  make DESTDIR="$pkgdir" install
-  cd ../po
-  make DESTDIR="$pkgdir" install
-}

Copied: qtcurve/repos/community-i686/PKGBUILD (from rev 153066, 
qtcurve/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-11 23:05:04 UTC (rev 153067)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5')
+pkgver=1.8.18.git20151017
+pkgrel=1
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('extra-cmake-modules' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdelibs4support' 'kdoctools')
+#source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+source=("http://quickgit.kde.org/?p=qtcurve.git=snapshot=036943575bbe15cc822a1fbca2c96391e5a04fd7=tgz;)
+md5sums=('a664ec255a4fb5f77f1ecb57649d3260')
+
+build() {
+  cd $pkgbase
+
+  mkdir build
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11' 'gcc-libs')
+  cd $pkgbase/build/lib/utils
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd $pkgbase/build/gtk2
+  make DESTDIR="$pkgdir" install
+  cd ../lib/cairo
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd $pkgbase/build/qt4
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
+  cd 

[arch-commits] Commit in qtcurve/repos (4 files)

2015-12-08 Thread Bartłomiej Piotrowski
Date: Tuesday, December 8, 2015 @ 17:26:48
  Author: bpiotrowski
Revision: 150348

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  qtcurve/repos/community-staging-i686/
  qtcurve/repos/community-staging-i686/PKGBUILD
(from rev 150347, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-staging-x86_64/
  qtcurve/repos/community-staging-x86_64/PKGBUILD
(from rev 150347, qtcurve/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   80 
 community-staging-x86_64/PKGBUILD |   80 
 2 files changed, 160 insertions(+)

Copied: qtcurve/repos/community-staging-i686/PKGBUILD (from rev 150347, 
qtcurve/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-08 16:26:48 UTC (rev 150348)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=4
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+
"https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
+md5sums=('422d1876d944bb278855f320eda19368'
+ '632c1dfa26fcc5f5d45fe082c9738f3b')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # fix FS#40524 - Qt 5.3 build fix
+  patch -p1 -i ../${source[1]##*/}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11')
+  cd $pkgbase-$pkgver/build/lib/utils
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd $pkgbase-$pkgver/build/gtk2
+  make DESTDIR="$pkgdir" install
+  cd ../lib/cairo
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd $pkgbase-$pkgver/build/qt4
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
+  cd $pkgbase-$pkgver/build/qt5
+  make DESTDIR="$pkgdir" install
+}
+
+package_qtcurve-kde4() {
+  depends=('qtcurve-utils' 'kdebase-workspace')
+  cd $pkgbase-$pkgver/build-kde4/qt4
+  make DESTDIR="$pkgdir" install
+  cd ../po
+  make DESTDIR="$pkgdir" install
+}

Copied: qtcurve/repos/community-staging-x86_64/PKGBUILD (from rev 150347, 
qtcurve/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-08 16:26:48 UTC (rev 150348)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=4
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=("$pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+
"https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
+md5sums=('422d1876d944bb278855f320eda19368'
+ '632c1dfa26fcc5f5d45fe082c9738f3b')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # fix FS#40524 - Qt 5.3 build fix
+  patch -p1 -i ../${source[1]##*/}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11')
+  cd 

[arch-commits] Commit in qtcurve/repos (4 files)

2014-10-01 Thread speps
Date: Wednesday, October 1, 2014 @ 17:09:19
  Author: speps
Revision: 119973

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  qtcurve/repos/community-staging-i686/
  qtcurve/repos/community-staging-i686/PKGBUILD
(from rev 119972, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-staging-x86_64/
  qtcurve/repos/community-staging-x86_64/PKGBUILD
(from rev 119972, qtcurve/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   80 
 community-staging-x86_64/PKGBUILD |   80 
 2 files changed, 160 insertions(+)

Copied: qtcurve/repos/community-staging-i686/PKGBUILD (from rev 119972, 
qtcurve/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-01 15:09:19 UTC (rev 119973)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=3
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
+
https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
+md5sums=('422d1876d944bb278855f320eda19368'
+ '632c1dfa26fcc5f5d45fe082c9738f3b')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # fix FS#40524 - Qt 5.3 build fix
+  patch -p1 -i ../${source[1]##*/}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11')
+  cd $pkgbase-$pkgver/build/lib/utils
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd $pkgbase-$pkgver/build/gtk2
+  make DESTDIR=$pkgdir install
+  cd ../lib/cairo
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd $pkgbase-$pkgver/build/qt4
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
+  cd $pkgbase-$pkgver/build/qt5
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-kde4() {
+  depends=('qtcurve-utils' 'kdebase-workspace')
+  cd $pkgbase-$pkgver/build-kde4/qt4
+  make DESTDIR=$pkgdir install
+  cd ../po
+  make DESTDIR=$pkgdir install
+}

Copied: qtcurve/repos/community-staging-x86_64/PKGBUILD (from rev 119972, 
qtcurve/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-01 15:09:19 UTC (rev 119973)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=3
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
+
https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
+md5sums=('422d1876d944bb278855f320eda19368'
+ '632c1dfa26fcc5f5d45fe082c9738f3b')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # fix FS#40524 - Qt 5.3 build fix
+  patch -p1 -i ../${source[1]##*/}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  

[arch-commits] Commit in qtcurve/repos (4 files)

2014-05-28 Thread speps
Date: Wednesday, May 28, 2014 @ 23:05:24
  Author: speps
Revision: 112041

archrelease: copy trunk to community-i686, community-x86_64

Added:
  qtcurve/repos/community-i686/PKGBUILD
(from rev 112040, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-x86_64/PKGBUILD
(from rev 112040, qtcurve/trunk/PKGBUILD)
Deleted:
  qtcurve/repos/community-i686/PKGBUILD
  qtcurve/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  158 
 community-i686/PKGBUILD   |   70 ---
 community-x86_64/PKGBUILD |   70 ---
 3 files changed, 158 insertions(+), 140 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-28 21:04:22 UTC (rev 112040)
+++ community-i686/PKGBUILD 2014-05-28 21:05:24 UTC (rev 112041)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=qtcurve
-pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
-pkgver=1.8.18
-pkgrel=1
-pkgdesc='A configurable set of widget styles for KDE and Gtk'
-arch=('i686' 'x86_64')
-url='https://github.com/QtCurve/qtcurve'
-license=('LGPL')
-groups=('qtcurve')
-makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
-source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('422d1876d944bb278855f320eda19368')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  mkdir build{,-kde4}
-  cd build
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DQTC_QT4_ENABLE_KDE=false
-  make
-
-  cd ../build-kde4
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DENABLE_GTK2=false \
-   -DENABLE_QT5=false
-  make
-}
-
-package_qtcurve-utils() {
-  depends=('libx11')
-  cd $pkgbase-$pkgver/build/lib/utils
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-gtk2() {
-  depends=('qtcurve-utils' 'gtk2')
-  cd $pkgbase-$pkgver/build/gtk2
-  make DESTDIR=$pkgdir install
-  cd ../lib/cairo
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-qt4() {
-  depends=('qtcurve-utils' 'qt4')
-  cd $pkgbase-$pkgver/build/qt4
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-qt5() {
-  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
-  cd $pkgbase-$pkgver/build/qt5
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-kde4() {
-  depends=('qtcurve-utils' 'kdebase-workspace')
-  cd $pkgbase-$pkgver/build-kde4/qt4
-  make DESTDIR=$pkgdir install
-  cd ../po
-  make DESTDIR=$pkgdir install
-}

Copied: qtcurve/repos/community-i686/PKGBUILD (from rev 112040, 
qtcurve/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-28 21:05:24 UTC (rev 112041)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=2
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
+
https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
+md5sums=('422d1876d944bb278855f320eda19368'
+ '632c1dfa26fcc5f5d45fe082c9738f3b')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # fix FS#40524 - Qt 5.3 build fix
+  patch -p1 -i ../${source[1]##*/}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11')
+  cd $pkgbase-$pkgver/build/lib/utils
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd $pkgbase-$pkgver/build/gtk2
+  make DESTDIR=$pkgdir install
+  cd ../lib/cairo
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd $pkgbase-$pkgver/build/qt4
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 

[arch-commits] Commit in qtcurve/repos (4 files)

2014-01-30 Thread speps
Date: Thursday, January 30, 2014 @ 20:46:54
  Author: speps
Revision: 105059

archrelease: copy trunk to community-i686, community-x86_64

Added:
  qtcurve/repos/community-i686/PKGBUILD
(from rev 105058, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-x86_64/PKGBUILD
(from rev 105058, qtcurve/trunk/PKGBUILD)
Deleted:
  qtcurve/repos/community-i686/PKGBUILD
  qtcurve/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  140 
 community-i686/PKGBUILD   |   68 -
 community-x86_64/PKGBUILD |   68 -
 3 files changed, 140 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-30 19:45:48 UTC (rev 105058)
+++ community-i686/PKGBUILD 2014-01-30 19:46:54 UTC (rev 105059)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=qtcurve
-pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
-pkgver=1.8.17
-pkgrel=1
-pkgdesc='A configurable set of widget styles for KDE and Gtk'
-arch=('i686' 'x86_64')
-url='https://github.com/QtCurve/qtcurve'
-license=('GPL')
-groups=('qtcurve')
-makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
-source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('c4f2e9bc296398b42bfc132b88a3b989')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  mkdir build{,-kde4}
-  cd build
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DQTC_QT4_ENABLE_KDE=false
-  make
-
-  cd ../build-kde4
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DENABLE_GTK2=false \
-   -DENABLE_QT5=false
-  make
-}
-
-package_qtcurve-utils() {
-  depends=('libx11')
-  cd $pkgbase-$pkgver/build/qtcurve-utils
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-gtk2() {
-  depends=('qtcurve-utils' 'gtk2')
-  cd $pkgbase-$pkgver/build/gtk2
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-qt4() {
-  depends=('qtcurve-utils' 'qt4')
-  cd $pkgbase-$pkgver/build/qt4
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-qt5() {
-  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
-  cd $pkgbase-$pkgver/build/qt5
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-kde4() {
-  depends=('qtcurve-utils' 'kdebase-workspace')
-  cd $pkgbase-$pkgver/build-kde4/qt4
-  make DESTDIR=$pkgdir install
-  cd ../po
-  make DESTDIR=$pkgdir install
-}

Copied: qtcurve/repos/community-i686/PKGBUILD (from rev 105058, 
qtcurve/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-30 19:46:54 UTC (rev 105059)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=1
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('422d1876d944bb278855f320eda19368')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11')
+  cd $pkgbase-$pkgver/build/lib/utils
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd $pkgbase-$pkgver/build/gtk2
+  make DESTDIR=$pkgdir install
+  cd ../lib/cairo
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd $pkgbase-$pkgver/build/qt4
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
+  cd $pkgbase-$pkgver/build/qt5
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-kde4() {
+  depends=('qtcurve-utils' 'kdebase-workspace')
+  cd $pkgbase-$pkgver/build-kde4/qt4
+  make DESTDIR=$pkgdir install
+  cd ../po
+  make DESTDIR=$pkgdir install
+}

Deleted: 

[arch-commits] Commit in qtcurve/repos (4 files)

2013-10-20 Thread speps
Date: Monday, October 21, 2013 @ 02:42:02
  Author: speps
Revision: 98877

archrelease: copy trunk to community-i686, community-x86_64

Added:
  qtcurve/repos/community-i686/PKGBUILD
(from rev 98876, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-x86_64/PKGBUILD
(from rev 98876, qtcurve/trunk/PKGBUILD)
Deleted:
  qtcurve/repos/community-i686/PKGBUILD
  qtcurve/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  136 
 community-i686/PKGBUILD   |   48 ---
 community-x86_64/PKGBUILD |   48 ---
 3 files changed, 136 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-21 00:26:13 UTC (rev 98876)
+++ community-i686/PKGBUILD 2013-10-21 00:42:02 UTC (rev 98877)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=qtcurve
-pkgname=('qtcurve-qt4' 'qtcurve-kde4')
-pkgver=1.8.15
-pkgrel=2
-arch=('i686' 'x86_64')
-groups=('qtcurve')
-license=('GPL')
-pkgdesc='A configurable set of widget styles for KDE and Gtk'
-url='https://github.com/QtCurve/qtcurve-qt4'
-makedepends=('cmake' 'automoc4' 'kdebase-workspace')
-source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('ee0b35fe428807b0dc2b0c57e5eb4f38')
-
-build() {
-  cd qtcurve-qt4-$pkgver
-
-  sed -i s/QApplication/QCoreApplication/g tools/gen_image_header_qt4.cpp
-
-  mkdir build-{qt,kde}4
-
-  cd build-qt4
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DQTC_QT4_ENABLE_KDE=false
-  make
-
-  cd ../build-kde4
-  cmake .. -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package_qtcurve-qt4() {
-  depends=('qt4')
-  cd qtcurve-qt4-$pkgver/build-qt4/qt4/style
-  make DESTDIR=$pkgdir install
-}
-
-package_qtcurve-kde4() {
-  depends=('kdebase-workspace')
-  cd qtcurve-qt4-$pkgver/build-kde4
-  make DESTDIR=$pkgdir install
-}

Copied: qtcurve/repos/community-i686/PKGBUILD (from rev 98876, 
qtcurve/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-21 00:42:02 UTC (rev 98877)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.17
+pkgrel=1
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('GPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('c4f2e9bc296398b42bfc132b88a3b989')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11')
+  cd $pkgbase-$pkgver/build/qtcurve-utils
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd $pkgbase-$pkgver/build/gtk2
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd $pkgbase-$pkgver/build/qt4
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
+  cd $pkgbase-$pkgver/build/qt5
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-kde4() {
+  depends=('qtcurve-utils' 'kdebase-workspace')
+  cd $pkgbase-$pkgver/build-kde4/qt4
+  make DESTDIR=$pkgdir install
+  cd ../po
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-10-21 00:26:13 UTC (rev 98876)
+++ community-x86_64/PKGBUILD   2013-10-21 00:42:02 UTC (rev 98877)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=qtcurve
-pkgname=('qtcurve-qt4' 'qtcurve-kde4')
-pkgver=1.8.15
-pkgrel=2
-arch=('i686' 'x86_64')
-groups=('qtcurve')
-license=('GPL')
-pkgdesc='A configurable set of widget styles for KDE and Gtk'
-url='https://github.com/QtCurve/qtcurve-qt4'

[arch-commits] Commit in qtcurve/repos (4 files)

2013-10-01 Thread Sven-Hendrik Haase
Date: Tuesday, October 1, 2013 @ 08:52:20
  Author: svenstaro
Revision: 97920

archrelease: copy trunk to community-i686, community-x86_64

Added:
  qtcurve/repos/community-i686/
  qtcurve/repos/community-i686/PKGBUILD
(from rev 97919, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-x86_64/
  qtcurve/repos/community-x86_64/PKGBUILD
(from rev 97919, qtcurve/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   48 
 community-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: qtcurve/repos/community-i686/PKGBUILD (from rev 97919, 
qtcurve/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-01 06:52:20 UTC (rev 97920)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-qt4' 'qtcurve-kde4')
+pkgver=1.8.15
+pkgrel=2
+arch=('i686' 'x86_64')
+groups=('qtcurve')
+license=('GPL')
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+url='https://github.com/QtCurve/qtcurve-qt4'
+makedepends=('cmake' 'automoc4' 'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('ee0b35fe428807b0dc2b0c57e5eb4f38')
+
+build() {
+  cd qtcurve-qt4-$pkgver
+
+  sed -i s/QApplication/QCoreApplication/g tools/gen_image_header_qt4.cpp
+
+  mkdir build-{qt,kde}4
+
+  cd build-qt4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_qtcurve-qt4() {
+  depends=('qt4')
+  cd qtcurve-qt4-$pkgver/build-qt4/qt4/style
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-kde4() {
+  depends=('kdebase-workspace')
+  cd qtcurve-qt4-$pkgver/build-kde4
+  make DESTDIR=$pkgdir install
+}

Copied: qtcurve/repos/community-x86_64/PKGBUILD (from rev 97919, 
qtcurve/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-10-01 06:52:20 UTC (rev 97920)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-qt4' 'qtcurve-kde4')
+pkgver=1.8.15
+pkgrel=2
+arch=('i686' 'x86_64')
+groups=('qtcurve')
+license=('GPL')
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+url='https://github.com/QtCurve/qtcurve-qt4'
+makedepends=('cmake' 'automoc4' 'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('ee0b35fe428807b0dc2b0c57e5eb4f38')
+
+build() {
+  cd qtcurve-qt4-$pkgver
+
+  sed -i s/QApplication/QCoreApplication/g tools/gen_image_header_qt4.cpp
+
+  mkdir build-{qt,kde}4
+
+  cd build-qt4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_qtcurve-qt4() {
+  depends=('qt4')
+  cd qtcurve-qt4-$pkgver/build-qt4/qt4/style
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-kde4() {
+  depends=('kdebase-workspace')
+  cd qtcurve-qt4-$pkgver/build-kde4
+  make DESTDIR=$pkgdir install
+}