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

Collapse All | Expand All

(-)/usr/ports/irc/weechat-devel/Makefile (-4 / +8 lines)
Lines 6-24 Link Here
6
#
6
#
7
7
8
PORTNAME=	weechat
8
PORTNAME=	weechat
9
PORTVERSION=	20110714
9
PORTVERSION=	20110817
10
CATEGORIES=	irc
10
CATEGORIES=	irc
11
MASTER_SITES=	http://perturb.me.uk/distfiles/
11
MASTER_SITES=	http://perturb.me.uk/distfiles/
12
PKGNAMESUFFIX=	-devel
12
PKGNAMESUFFIX=	-devel
13
DISTNAME=	weechat-devel-35a3df0a7a09f00863be917f8181d5363c0a8302
13
DISTNAME=	weechat-devel-885e0d93742e647ae58964a1d2cebcaaaaccd609
14
14
15
MAINTAINER=	freebsd@beardz.net
15
MAINTAINER=	freebsd@beardz.net
16
COMMENT=	A lightweight and user friendly ncurse based IRC client
16
COMMENT=	A lightweight and user friendly ncurse based IRC client
17
17
18
LICENSE=	GPLv3
19
18
CONFLICTS=	weechat-0.3*
20
CONFLICTS=	weechat-0.3*
19
21
20
USE_ICONV=	yes
22
USE_ICONV=	yes
21
USE_LDCONFIG=	yes
23
USE_LDCONFIG=	yes
24
USE_NCURSES=	yes
25
WITH_NCURSES_BASE=	yes
22
USE_CMAKE=	yes
26
USE_CMAKE=	yes
23
CMAKE_USE_PTHREAD=	yes
27
CMAKE_USE_PTHREAD=	yes
24
CFLAGS+=	-I${LOCALBASE}/include -L${LOCALBASE}/lib
28
CFLAGS+=	-I${LOCALBASE}/include -L${LOCALBASE}/lib
Lines 30-43 Link Here
30
		TCL		"TCL scripting support."	Off	\
34
		TCL		"TCL scripting support."	Off	\
31
		LUA		"Lua scripting support."	Off	\
35
		LUA		"Lua scripting support."	Off	\
32
		CHARSET		"Charset support."		On	\
36
		CHARSET		"Charset support."		On	\
33
		BACKTRACE	"Backtraces."			Off	\
37
		BACKTRACE	"Backtraces."			On	\
34
		DEBUG		"Debugging."			On	\
38
		DEBUG		"Debugging."			On	\
35
		ASPELL		"Spell checking."		Off	\
39
		ASPELL		"Spell checking."		Off	\
36
		GNUTLS		"GNU TLS."			Off	\
40
		GNUTLS		"GNU TLS."			Off	\
37
		NLS		"NLS support."			On	\
41
		NLS		"NLS support."			On	\
38
		DOCUMENTATION	"Build documentation."		Off
42
		DOCUMENTATION	"Build documentation."		Off
39
43
40
WRKSRC=	${WRKDIR}/${PORTNAME}-35a3df0
44
WRKSRC=	${WRKDIR}/${PORTNAME}-885e0d9
41
45
42
.include <bsd.port.options.mk>
46
.include <bsd.port.options.mk>
43
47
(-)/usr/ports/irc/weechat-devel/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (weechat-devel-35a3df0a7a09f00863be917f8181d5363c0a8302.tar.gz) = ca52872388cfffac7426ea2bba177a5051719e9209e4f4300318a91bbeeb6229
1
SHA256 (weechat-devel-885e0d93742e647ae58964a1d2cebcaaaaccd609.tar.gz) = d17085673b32504322634f0fa5f227c68667cea4c399d7ce6f77c3d30f8f4325
2
SIZE (weechat-devel-35a3df0a7a09f00863be917f8181d5363c0a8302.tar.gz) = 1839915
2
SIZE (weechat-devel-885e0d93742e647ae58964a1d2cebcaaaaccd609.tar.gz) = 1912719
(-)/usr/ports/irc/weechat-devel/files/patch-src-gui-curses-CMakeLists_txt (+11 lines)
Line 0 Link Here
1
--- src/gui/curses/CMakeLists.txt.orig	2011-08-18 04:19:10.997333389 +0100
2
+++ src/gui/curses/CMakeLists.txt	2011-08-18 04:19:56.348074585 +0100
3
@@ -38,7 +38,7 @@
4
 
5
 FIND_PACKAGE(Ncurses)
6
 IF(NCURSES_FOUND)
7
-  CHECK_INCLUDE_FILES(ncursesw/ncurses.h NCURSESW_HEADERS)
8
+  CHECK_INCLUDE_FILES(ncurses.h NCURSESW_HEADERS)
9
   IF(NCURSESW_HEADERS)
10
     ADD_DEFINITIONS(-DHAVE_NCURSESW_CURSES_H)
11
   ELSE(NCURSESW_HEADERS)
(-)/usr/ports/irc/weechat-devel/files/patch-src-gui-curses-gui_curses_h (+12 lines)
Line 0 Link Here
1
--- src/gui/curses/gui-curses.h.orig	2011-08-17 14:08:18.000000000 +0100
2
+++ src/gui/curses/gui-curses.h	2011-08-18 05:02:47.647960373 +0100
3
@@ -23,7 +23,8 @@
4
 #include <time.h>
5
 
6
 #ifdef HAVE_NCURSESW_CURSES_H
7
-#include <ncursesw/ncurses.h>
8
+#define _XOPEN_SOURCE_EXTENDED 1
9
+#include <ncurses.h>
10
 #elif HAVE_NCURSES_H
11
 #include <ncurses.h>
12
 #else
(-)/usr/ports/irc/weechat-devel/files/patch-src-gui-curses-gui_curses_term_c (+11 lines)
Line 0 Link Here
1
--- src/gui/curses/gui-curses-term.c.orig	2011-08-18 04:25:40.510233646 +0100
2
+++ src/gui/curses/gui-curses-term.c	2011-08-18 04:25:55.436405801 +0100
3
@@ -26,7 +26,7 @@
4
 #endif
5
 
6
 #ifdef HAVE_NCURSESW_CURSES_H
7
-#include <ncursesw/term.h>
8
+#include <term.h>
9
 #else
10
 #include <term.h>
11
 #endif

Return to bug 159850