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

speps speps at nymeria.archlinux.org
Mon Oct 21 00:42:03 UTC 2013


    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 <sh at lutzhaase.com>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Pierre Schmitz <pierre at 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 <sh at lutzhaase.com>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Pierre Schmitz <pierre at 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 <sh at lutzhaase.com>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Pierre Schmitz <pierre at 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 98876, qtcurve/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/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 <sh at lutzhaase.com>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Pierre Schmitz <pierre at 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
+}




More information about the arch-commits mailing list