View | Details | Raw Unified | Return to bug 186347 | Differences between
and this patch

Collapse All | Expand All

(-)www/newsbeuter/Makefile (-3 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	newsbeuter
4
PORTNAME=	newsbeuter
5
PORTVERSION=	2.8
5
PORTVERSION=	2.8
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	www
7
CATEGORIES=	www
8
MASTER_SITES=	http://newsbeuter.org/downloads/
8
MASTER_SITES=	http://newsbeuter.org/downloads/
9
9
Lines 22-32 OPTIONS_DEFAULT=PODCAST Link Here
22
OPTIONS_SUB=	yes
22
OPTIONS_SUB=	yes
23
PODCAST_DESC=	Podcast client (podbeuter)
23
PODCAST_DESC=	Podcast client (podbeuter)
24
24
25
USES=		gettext gmake iconv:translit ncurses perl5 pkgconfig
25
USES=		compiler:c++11-lang gettext gmake iconv:translit ncurses perl5 pkgconfig
26
USE_CXXSTD=	gnu++11
26
USE_PERL5=	build
27
USE_PERL5=	build
27
USE_SQLITE=	yes
28
USE_SQLITE=	yes
28
USE_GNOME=	libxml2
29
USE_GNOME=	libxml2
29
USE_GCC=	any
30
30
31
post-patch:
31
post-patch:
32
	${REINPLACE_CMD} -e "s,share/man,man,; \
32
	${REINPLACE_CMD} -e "s,share/man,man,; \
(-)www/newsbeuter/files/patch-include-matcher.h (+13 lines)
Line 0 Link Here
1
--- include/matcher.h.orig	2014-02-02 16:00:13.000000000 +0100
2
+++ include/matcher.h	2014-02-02 16:00:19.000000000 +0100
3
@@ -3,6 +3,10 @@
4
 
5
 #include <FilterParser.h>
6
 
7
+#ifdef _LIBCPP_VERSION
8
+namespace std { namespace tr1 = std; }
9
+#endif
10
+
11
 namespace newsbeuter {
12
 
13
 	class matchable {
(-)www/newsbeuter/files/patch-rss-rsspp_internatl.h (+13 lines)
Line 0 Link Here
1
--- rss/rsspp_internal.h.orig	2014-02-02 15:53:54.000000000 +0100
2
+++ rss/rsspp_internal.h	2014-02-02 15:52:36.000000000 +0100
3
@@ -9,6 +9,10 @@
4
 #include <rsspp.h>
5
 #include <tr1/memory>
6
 
7
+#ifdef _LIBCPP_VERSION
8
+namespace std { namespace tr1 = std; }
9
+#endif
10
+
11
 #define CONTENT_URI		"http://purl.org/rss/1.0/modules/content/"
12
 #define RDF_URI			"http://www.w3.org/1999/02/22-rdf-syntax-ns#"
13
 #define ITUNES_URI		"http://www.itunes.com/dtds/podcast-1.0.dtd"

Return to bug 186347