[arch-commits] Commit in rekonq/repos (8 files)

Allan McRae allan at archlinux.org
Tue Dec 8 18:20:04 UTC 2015


    Date: Tuesday, December 8, 2015 @ 19:20:04
  Author: allan
Revision: 150353

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

Added:
  rekonq/repos/community-staging-i686/
  rekonq/repos/community-staging-i686/PKGBUILD
    (from rev 150352, rekonq/trunk/PKGBUILD)
  rekonq/repos/community-staging-i686/rekonq.install
    (from rev 150352, rekonq/trunk/rekonq.install)
  rekonq/repos/community-staging-i686/with-nepomuk.patch
    (from rev 150352, rekonq/trunk/with-nepomuk.patch)
  rekonq/repos/community-staging-x86_64/
  rekonq/repos/community-staging-x86_64/PKGBUILD
    (from rev 150352, rekonq/trunk/PKGBUILD)
  rekonq/repos/community-staging-x86_64/rekonq.install
    (from rev 150352, rekonq/trunk/rekonq.install)
  rekonq/repos/community-staging-x86_64/with-nepomuk.patch
    (from rev 150352, rekonq/trunk/with-nepomuk.patch)

---------------------------------------------+
 community-staging-i686/PKGBUILD             |   42 ++++++++++++++++++++++++++
 community-staging-i686/rekonq.install       |   12 +++++++
 community-staging-i686/with-nepomuk.patch   |   16 +++++++++
 community-staging-x86_64/PKGBUILD           |   42 ++++++++++++++++++++++++++
 community-staging-x86_64/rekonq.install     |   12 +++++++
 community-staging-x86_64/with-nepomuk.patch |   16 +++++++++
 6 files changed, 140 insertions(+)

Copied: rekonq/repos/community-staging-i686/PKGBUILD (from rev 150352, rekonq/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-12-08 18:20:04 UTC (rev 150353)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Peter Lewis <plewis at aur.archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Panagiotis Papadopoulos <pano_90 AT gmx DOT net>
+
+pkgname=rekonq
+pkgver=2.4.2
+pkgrel=5
+pkgdesc='A WebKit based web browser for KDE'
+arch=('i686' 'x86_64')
+url='http://rekonq.kde.org/'
+license=('GPL')
+depends=('kdebase-keditbookmarks' 'qoauth')
+makedepends=('cmake' 'automoc4')
+optdepends=('kdebase-konqueror: search engines support')
+install=${pkgname}.install
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"
+        'with-nepomuk.patch')
+sha256sums=('e9805b32f592ca5809bd1632c624c57fc0109ce98b73a8b8e3ebd04e9c875126'
+            '19db70a6c9d3b323b58e07f4ca5b6193a2bd0fcba87c86019ea0f78987a22c69')
+
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/with-nepomuk.patch
+}
+
+build(){
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DWITH_NEPOMUK=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: rekonq/repos/community-staging-i686/rekonq.install (from rev 150352, rekonq/trunk/rekonq.install)
===================================================================
--- community-staging-i686/rekonq.install	                        (rev 0)
+++ community-staging-i686/rekonq.install	2015-12-08 18:20:04 UTC (rev 150353)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: rekonq/repos/community-staging-i686/with-nepomuk.patch (from rev 150352, rekonq/trunk/with-nepomuk.patch)
===================================================================
--- community-staging-i686/with-nepomuk.patch	                        (rev 0)
+++ community-staging-i686/with-nepomuk.patch	2015-12-08 18:20:04 UTC (rev 150353)
@@ -0,0 +1,16 @@
+--- rekonq-2.4.2/CMakeLists.txt~	2014-03-08 10:35:22.003986721 +0000
++++ rekonq-2.4.2/CMakeLists.txt	2014-03-08 10:38:34.075974545 +0000
+@@ -48,9 +48,11 @@
+ # ==================================================================================
+ # optional nepomuk requirements
+ 
+-FIND_PACKAGE(Soprano)
++if(WITH_NEPOMUK)
++  FIND_PACKAGE(Soprano)
+ 
+-FIND_PACKAGE(NepomukCore 0.1.0)
++  FIND_PACKAGE(NepomukCore 0.1.0)
++endif()
+ 
+ IF(SOPRANO_FOUND AND NepomukCore_FOUND)
+     ADD_DEFINITIONS(-DHAVE_NEPOMUK)

Copied: rekonq/repos/community-staging-x86_64/PKGBUILD (from rev 150352, rekonq/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-12-08 18:20:04 UTC (rev 150353)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Peter Lewis <plewis at aur.archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Panagiotis Papadopoulos <pano_90 AT gmx DOT net>
+
+pkgname=rekonq
+pkgver=2.4.2
+pkgrel=5
+pkgdesc='A WebKit based web browser for KDE'
+arch=('i686' 'x86_64')
+url='http://rekonq.kde.org/'
+license=('GPL')
+depends=('kdebase-keditbookmarks' 'qoauth')
+makedepends=('cmake' 'automoc4')
+optdepends=('kdebase-konqueror: search engines support')
+install=${pkgname}.install
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"
+        'with-nepomuk.patch')
+sha256sums=('e9805b32f592ca5809bd1632c624c57fc0109ce98b73a8b8e3ebd04e9c875126'
+            '19db70a6c9d3b323b58e07f4ca5b6193a2bd0fcba87c86019ea0f78987a22c69')
+
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/with-nepomuk.patch
+}
+
+build(){
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DWITH_NEPOMUK=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: rekonq/repos/community-staging-x86_64/rekonq.install (from rev 150352, rekonq/trunk/rekonq.install)
===================================================================
--- community-staging-x86_64/rekonq.install	                        (rev 0)
+++ community-staging-x86_64/rekonq.install	2015-12-08 18:20:04 UTC (rev 150353)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: rekonq/repos/community-staging-x86_64/with-nepomuk.patch (from rev 150352, rekonq/trunk/with-nepomuk.patch)
===================================================================
--- community-staging-x86_64/with-nepomuk.patch	                        (rev 0)
+++ community-staging-x86_64/with-nepomuk.patch	2015-12-08 18:20:04 UTC (rev 150353)
@@ -0,0 +1,16 @@
+--- rekonq-2.4.2/CMakeLists.txt~	2014-03-08 10:35:22.003986721 +0000
++++ rekonq-2.4.2/CMakeLists.txt	2014-03-08 10:38:34.075974545 +0000
+@@ -48,9 +48,11 @@
+ # ==================================================================================
+ # optional nepomuk requirements
+ 
+-FIND_PACKAGE(Soprano)
++if(WITH_NEPOMUK)
++  FIND_PACKAGE(Soprano)
+ 
+-FIND_PACKAGE(NepomukCore 0.1.0)
++  FIND_PACKAGE(NepomukCore 0.1.0)
++endif()
+ 
+ IF(SOPRANO_FOUND AND NepomukCore_FOUND)
+     ADD_DEFINITIONS(-DHAVE_NEPOMUK)



More information about the arch-commits mailing list