svn commit: r459626 - in head/multimedia/k9copy-kde4: . files

Tobias C. Berner tcberner at FreeBSD.org
Sun Jan 21 20:02:00 UTC 2018


Author: tcberner
Date: Sun Jan 21 20:01:59 2018
New Revision: 459626
URL: https://svnweb.freebsd.org/changeset/ports/459626

Log:
  multimedia/k9copy-kde4: Fix build on 10.3
  
  * the fix to build with clang6 was not compatible with 10.3
  
  Pointy-hat to:	tcberner
  Reported by:	antoine

Modified:
  head/multimedia/k9copy-kde4/Makefile
  head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp

Modified: head/multimedia/k9copy-kde4/Makefile
==============================================================================
--- head/multimedia/k9copy-kde4/Makefile	Sun Jan 21 19:50:46 2018	(r459625)
+++ head/multimedia/k9copy-kde4/Makefile	Sun Jan 21 20:01:59 2018	(r459626)
@@ -3,7 +3,7 @@
 
 PORTNAME=	k9copy
 PORTVERSION=	2.3.4
-PORTREVISION=	16
+PORTREVISION=	17
 CATEGORIES=	multimedia kde
 MASTER_SITES=	LOCAL/rakuco
 DISTNAME=	${PORTNAME}-${PORTVERSION}-Source

Modified: head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp
==============================================================================
--- head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp	Sun Jan 21 19:50:46 2018	(r459625)
+++ head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp	Sun Jan 21 20:01:59 2018	(r459626)
@@ -9,7 +9,7 @@ src/core/k9tools.cpp:59:54: error: no viable conversio
      return false;
  #else
 -    bool res= KStandardDirs::findExe( _progName,NULL,false) !=NULL ;
-+    bool res= KStandardDirs::findExe( _progName,NULL, KStandardDirs::SearchOption::NoSearchOptions) !=NULL ;
++    bool res= KStandardDirs::findExe( _progName,NULL, KStandardDirs::NoSearchOptions) !=NULL ;
      if (_msg && !res)
          k9Dialogs::error(i18n("Error starting program %1").arg(_progName),i18n("Running program"));
      return res;


More information about the svn-ports-head mailing list