[arch-commits] Commit in konversation/repos (6 files)

Stéphane Gaudreault stephane at archlinux.org
Tue Nov 27 00:33:22 UTC 2012


    Date: Monday, November 26, 2012 @ 19:33:22
  Author: stephane
Revision: 172040

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

Added:
  konversation/repos/testing-i686/
  konversation/repos/testing-i686/PKGBUILD
    (from rev 172039, konversation/trunk/PKGBUILD)
  konversation/repos/testing-i686/konversation.install
    (from rev 172039, konversation/trunk/konversation.install)
  konversation/repos/testing-x86_64/
  konversation/repos/testing-x86_64/PKGBUILD
    (from rev 172039, konversation/trunk/PKGBUILD)
  konversation/repos/testing-x86_64/konversation.install
    (from rev 172039, konversation/trunk/konversation.install)

-------------------------------------+
 testing-i686/PKGBUILD               |   43 ++++++++++++++++++++++++++++++++++
 testing-i686/konversation.install   |   12 +++++++++
 testing-x86_64/PKGBUILD             |   43 ++++++++++++++++++++++++++++++++++
 testing-x86_64/konversation.install |   12 +++++++++
 4 files changed, 110 insertions(+)

Copied: konversation/repos/testing-i686/PKGBUILD (from rev 172039, konversation/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2012-11-27 00:33:22 UTC (rev 172040)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: James Rayner <iphitus at gmail.com>
+# Contributor: Sergio Jovani Guzman <moret at paretux.org>
+
+pkgname=konversation
+pkgver=1.4
+pkgrel=5
+pkgdesc="A user friendly IRC client for KDE"
+arch=('i686' 'x86_64')
+url="http://konversation.kde.org"
+depends=('kdebase-runtime' 'kdepimlibs')
+makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
+optdepends=('python: python scripting support'
+            'kdebase-konsole: open a terminal in konversation'
+            'qca-ossl: Diffie-Hellman key exchange and Blowfish ECB/CBC support')
+license=('GPL2' 'FDL')
+install=${pkgname}.install
+options=('!makeflags')
+source=("http://download.kde.org/download.php?url=stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('90741721f68a02d4345b9006a8ae53bc49ef3777')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+  
+  # Remove a bunch of symlinks pointing to non-existant files
+  for _lang in pt_BR uk sv et de en nl; do
+     rm "${pkgdir}"/usr/share/doc/kde/html/${_lang}/konversation/common
+  done
+}

Copied: konversation/repos/testing-i686/konversation.install (from rev 172039, konversation/trunk/konversation.install)
===================================================================
--- testing-i686/konversation.install	                        (rev 0)
+++ testing-i686/konversation.install	2012-11-27 00:33:22 UTC (rev 172040)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: konversation/repos/testing-x86_64/PKGBUILD (from rev 172039, konversation/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2012-11-27 00:33:22 UTC (rev 172040)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: James Rayner <iphitus at gmail.com>
+# Contributor: Sergio Jovani Guzman <moret at paretux.org>
+
+pkgname=konversation
+pkgver=1.4
+pkgrel=5
+pkgdesc="A user friendly IRC client for KDE"
+arch=('i686' 'x86_64')
+url="http://konversation.kde.org"
+depends=('kdebase-runtime' 'kdepimlibs')
+makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
+optdepends=('python: python scripting support'
+            'kdebase-konsole: open a terminal in konversation'
+            'qca-ossl: Diffie-Hellman key exchange and Blowfish ECB/CBC support')
+license=('GPL2' 'FDL')
+install=${pkgname}.install
+options=('!makeflags')
+source=("http://download.kde.org/download.php?url=stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('90741721f68a02d4345b9006a8ae53bc49ef3777')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+  
+  # Remove a bunch of symlinks pointing to non-existant files
+  for _lang in pt_BR uk sv et de en nl; do
+     rm "${pkgdir}"/usr/share/doc/kde/html/${_lang}/konversation/common
+  done
+}

Copied: konversation/repos/testing-x86_64/konversation.install (from rev 172039, konversation/trunk/konversation.install)
===================================================================
--- testing-x86_64/konversation.install	                        (rev 0)
+++ testing-x86_64/konversation.install	2012-11-27 00:33:22 UTC (rev 172040)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}




More information about the arch-commits mailing list