[arch-commits] Commit in krfb (trunk trunk trunk/PKGBUILD trunk/krfb-gcc6.patch)

Felix Yan felixonmars at archlinux.org
Sun Aug 21 03:40:11 UTC 2016


    Date: Sunday, August 21, 2016 @ 03:40:11
  Author: felixonmars
Revision: 274420

upgpkg: krfb 16.08.0-1

Upstream release

Added:
  krfb/trunk/
  krfb/trunk/PKGBUILD
  krfb/trunk/krfb-gcc6.patch
Deleted:
  krfb/trunk/

-----------------+
 PKGBUILD        |   42 ++++++++++++++++++++++++++++++++++++++++++
 krfb-gcc6.patch |   13 +++++++++++++
 2 files changed, 55 insertions(+)

Added: trunk/PKGBUILD
===================================================================
--- trunk/PKGBUILD	                        (rev 0)
+++ trunk/PKGBUILD	2016-08-21 03:40:11 UTC (rev 274420)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux,org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=krfb
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Desktop Sharing'
+url='http://www.kde.org/applications/system/krfb'
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(kdnssd kxmlgui kwallet libvncserver libxdamage)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdenetwork-krfb)
+replaces=(kdenetwork-krfb)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz" krfb-gcc6.patch)
+md5sums=('72d15d4809e2b2c89a334da99d5c1018'
+         'fc342abdbbac31a98c9839b2f61b88e7')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with GCC6 (Fedora)
+  cd $pkgname-$pkgver
+  patch -p1 -i ../krfb-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DKDE_INSTALL_LIBDIR=lib \
+    -DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: krfb/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: trunk/krfb-gcc6.patch
===================================================================
--- trunk/krfb-gcc6.patch	                        (rev 0)
+++ trunk/krfb-gcc6.patch	2016-08-21 03:40:11 UTC (rev 274420)
@@ -0,0 +1,13 @@
+diff -up krfb-15.12.2/krfb/rfb.h.than krfb-15.12.2/krfb/rfb.h
+--- krfb-15.12.2/krfb/rfb.h.than	2016-02-18 14:31:57.918262431 +0100
++++ krfb-15.12.2/krfb/rfb.h	2016-02-18 14:35:20.029628544 +0100
+@@ -8,6 +8,9 @@
+ 
+ #include "rfb/rfb.h"
+ 
++#ifdef max // fix conflict with max() macro using gcc6 
++#undef max
++#endif
+ #undef TRUE
+ #undef FALSE
+ 



More information about the arch-commits mailing list