View | Details | Raw Unified | Return to bug 197943
Collapse All | Expand All

(-)worker/Makefile (-4 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/x11-fm/worker/Makefile 378683 2015-02-08 20:50:39Z bofh $
2
# $FreeBSD: head/x11-fm/worker/Makefile 378683 2015-02-08 20:50:39Z bofh $
3
3
4
PORTNAME=	worker
4
PORTNAME=	worker
5
PORTVERSION=	3.6.0
5
PORTVERSION=	3.6.1
6
CATEGORIES=	x11-fm
6
CATEGORIES=	x11-fm
7
MASTER_SITES=	http://www.boomerangsworld.de/cms/worker/downloads/
7
MASTER_SITES=	http://www.boomerangsworld.de/cms/worker/downloads/
8
8
Lines 31-39 Link Here
31
31
32
.if ${OSVERSION} < 1000024
32
.if ${OSVERSION} < 1000024
33
USE_GCC=	yes
33
USE_GCC=	yes
34
.else
35
CONFIGURE_ARGS+=	--disable-cxx-check
36
CXXFLAGS+=	-std=c++11
37
.endif
34
.endif
38
35
39
.include <bsd.port.post.mk>
36
.include <bsd.port.post.mk>
(-)worker/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (worker-3.6.0.tar.bz2) = 3b8f5451523fe73cd81317689ee61e3f8ed43a8f2087c945970cfb369110f735
1
SHA256 (worker-3.6.1.tar.bz2) = 8e50490a8c3b893f79d165f02cf8f1303f55fb870a09139d2e9f19864348b47e
2
SIZE (worker-3.6.0.tar.bz2) = 1495468
2
SIZE (worker-3.6.1.tar.bz2) = 1497820
(-)worker/files/patch-src_dmcacheentrynwc.hh (-10 lines)
Lines 1-10 Link Here
1
--- src/dmcacheentrynwc.hh.orig	2015-01-08 18:44:53.000000000 +0300
2
+++ src/dmcacheentrynwc.hh	2015-01-20 14:58:29.000000000 +0300
3
@@ -25,6 +25,7 @@
4
 #include "wdefines.h"
5
 #include "nwc_dir.hh"
6
 #include <aguix/refcount.hh>
7
+#include <functional>
8
 
9
 class DirBookmarksSettings;
10
 class DirFilterSettings;
(-)worker/files/patch-src_pathjumpui.hh (-11 lines)
Lines 1-11 Link Here
1
--- src/pathjumpui.hh.orig	2015-01-08 18:44:53.000000000 +0300
2
+++ src/pathjumpui.hh	2015-01-20 00:01:56.000000000 +0300
3
@@ -101,7 +101,7 @@
4
                                                     m_always_ignore( false )
5
         {}
6
 
7
-        bool operator<( const pathjump_entry &rhs )
8
+        bool operator<( const pathjump_entry &rhs ) const
9
         {
10
             if ( m_blockcount < rhs.m_blockcount ) return true;
11
             else if ( m_blockcount == rhs.m_blockcount ) {

Return to bug 197943