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

(-)/usr/ports/irc/weechat/Makefile (-37 / +36 lines)
Lines 1-35 Link Here
1
# New ports collection makefile for:	weechat
1
# New ports collection makefile for:    weechat
2
# Date created:				2003-03-07
2
# Date created:                         2003-03-07
3
# Whom:					clement
3
# Whom:                                 clement
4
#
4
#
5
# $FreeBSD: ports/irc/weechat/Makefile,v 1.43 2009/11/21 11:27:21 miwi Exp $
5
# $FreeBSD: ports/irc/weechat/Makefile,v 1.43 2009/11/21 11:27:21 miwi Exp $
6
#
6
#
7
7
8
PORTNAME=	weechat
8
PORTNAME=	weechat
9
PORTVERSION=	0.3.0
9
PORTVERSION=	0.3.1
10
PORTREVISION=	1
11
CATEGORIES=	irc
10
CATEGORIES=	irc
12
MASTER_SITES=	http://weechat.org/files/src/
11
MASTER_SITES=	http://weechat.org/files/src/
13
12
14
MAINTAINER=	miwi@FreeBSD.org
13
MAINTAINER=	miwi@FreeBSD.org
15
COMMENT=	A lightweight and user friendly ncurse based IRC client
14
COMMENT=	A lightweight and user friendly ncurse based IRC client
16
15
17
USE_BZIP2=	yes
18
USE_ICONV=	yes
16
USE_ICONV=	yes
19
USE_AUTOTOOLS=	autoconf:262
20
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
21
GNU_CONFIGURE=	yes
18
USE_CMAKE=	yes
22
CONFIGURE_ARGS=	--disable-lua
19
CMAKE_USE_PTHREAD=	yes
23
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS} ${PTHREAD_CFLAGS} -I${LOCALBASE}/include"\
20
CFLAGS+=	-I${LOCALBASE}/include -L${LOCALBASE}/lib
24
		LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS} -L${LOCALBASE}/lib"
25
WANT_GNOME=	yes
26
USE_GNOME=	gnomehack
27
WANT_PERL=	yes
21
WANT_PERL=	yes
28
22
29
OPTIONS=	RUBY		"Ruby scripting support."	Off	\
23
OPTIONS=	RUBY		"Ruby scripting support."	Off	\
30
		PYTHON		"Python scripting support."	Off	\
24
		PYTHON		"Python scripting support."	Off	\
31
		PERL		"Perl scripting support."	Off	\
25
		PERL		"Perl scripting support."	Off	\
32
		TCL		"TCL scripting support."	Off	\
26
		TCL		"TCL scripting support."	Off	\
27
		LUA		"Lua scripting support."	Off	\
33
		CHARSET		"Charset support."		On	\
28
		CHARSET		"Charset support."		On	\
34
		DEBUG		"Debugging."			Off	\
29
		DEBUG		"Debugging."			Off	\
35
		ASPELL		"Spell checking."		Off	\
30
		ASPELL		"Spell checking."		Off	\
Lines 40-134 Link Here
40
.include <bsd.port.options.mk>
35
.include <bsd.port.options.mk>
41
36
42
.if defined(WITH_DEBUG)
37
.if defined(WITH_DEBUG)
43
CONFIGURE_ARGS+=	--with-debug=2
38
CMAKE_BUILD_TYPE=	Debug
44
.else
45
CONFIGURE_ARGS+=	--with-debug=0
46
.endif
39
.endif
47
40
48
.if defined(WITHOUT_CHARSET)
41
.if defined(WITHOUT_CHARSET)
49
CONFIGURE_ARGS+=	--disable-charset
42
CMAKE_ARGS+=	-DDISABLE_CHARSET=yes
50
PLIST_SUB+=	CHARSET="@comment "
43
PLIST_SUB+=	CHARSET="@comment "
51
.else
44
.else
52
CONFIGURE_ARGS+=	--enable-charset
53
PLIST_SUB+=	CHARSET=""
45
PLIST_SUB+=	CHARSET=""
54
.endif
46
.endif
55
47
56
.if defined(WITHOUT_NLS)
48
.if defined(WITHOUT_NLS)
57
CONFIGURE_ARGS+=	--disable-nls
49
CMAKE_ARGS+=	-DDISABLE_NLS=yes
58
PLIST_SUB+=	NLS="@comment "
50
PLIST_SUB+=	NLS="@comment "
59
.else
51
.else
60
CONFIGURE_ARGS+=	--enable-nls
61
USE_GETTEXT=	yes
52
USE_GETTEXT=	yes
62
PLIST_SUB+=	NLS=""
53
PLIST_SUB+=	NLS=""
63
.endif
54
.endif
64
55
65
.if defined(WITH_ASPELL)
56
.if defined(WITH_ASPELL)
66
CONFIGURE_ARGS+=	--enable-aspell
67
BUILD_DEPENDS+=	aspell:${PORTSDIR}/textproc/aspell
57
BUILD_DEPENDS+=	aspell:${PORTSDIR}/textproc/aspell
68
PLIST_SUB+=	ASPELL=""
58
PLIST_SUB+=	ASPELL=""
69
.else
59
.else
70
CONFIGURE_ARGS+=	--disable-aspell
60
CMAKE_ARGS+=	-DDISABLE_ASPELL=yes
71
PLIST_SUB+=	ASPELL="@comment "
61
PLIST_SUB+=	ASPELL="@comment "
72
.endif
62
.endif
73
63
74
.if defined(WITH_PYTHON)
64
.if defined(WITH_PYTHON)
75
CONFIGURE_ARGS+=	--enable-python
76
USE_PYTHON=	yes
65
USE_PYTHON=	yes
77
PLIST_SUB+=	PYTHON=""
66
PLIST_SUB+=	PYTHON=""
78
.else
67
.else
79
CONFIGURE_ARGS+=	--disable-python
68
CMAKE_ARGS+=	-DDISABLE_PYTHON=yes
80
PLIST_SUB+=	PYTHON="@comment "
69
PLIST_SUB+=	PYTHON="@comment "
81
.endif
70
.endif
82
71
83
.if defined(WITH_RUBY)
72
.if defined(WITH_RUBY)
84
.include "${PORTSDIR}/Mk/bsd.ruby.mk"
73
.include "${PORTSDIR}/Mk/bsd.ruby.mk"
85
CONFIGURE_ARGS+=	--enable-ruby
86
USE_RUBY=	yes
74
USE_RUBY=	yes
87
PLIST_SUB+=	RUBY=""
75
PLIST_SUB+=	RUBY=""
88
.else
76
.else
89
CONFIGURE_ARGS+=	--disable-ruby
77
CMAKE_ARGS+=	-DDISABLE_RUBY=yes
90
PLIST_SUB+=	RUBY="@comment "
78
PLIST_SUB+=	RUBY="@comment "
91
.endif
79
.endif
92
80
93
.if defined(WITH_GNUTLS)
81
.if defined(WITH_GNUTLS)
94
CONFIGURE_ARGS+=	--enable-gnutls
95
LIB_DEPENDS+=	gnutls.40:${PORTSDIR}/security/gnutls
82
LIB_DEPENDS+=	gnutls.40:${PORTSDIR}/security/gnutls
96
.else
83
.else
97
CONFIGURE_ARGS+=	--disable-gnutls
84
CMAKE_ARGS+=	-DDISABLE_GNUTLS=yes
98
.endif
85
.endif
99
86
100
.if defined(WITH_PERL)
87
.if defined(WITH_PERL)
101
CONFIGURE_ARGS+=	--enable-perl
102
USE_PERL5=	yes
88
USE_PERL5=	yes
103
PLIST_SUB+=	PERL=""
89
PLIST_SUB+=	PERL=""
104
.else
90
.else
105
CONFIGURE_ARGS+=	--disable-perl
91
CMAKE_ARGS+=	-DDISABLE_PERL=yes
106
PLIST_SUB+=	PERL="@comment "
92
PLIST_SUB+=	PERL="@comment "
107
.endif
93
.endif
108
94
109
.if defined(WITH_TCL)
95
.if defined(WITH_TCL)
110
USE_TCL=	83+
96
USE_TCL=	83+
111
.include "${PORTSDIR}/Mk/bsd.tcl.mk"
97
.include "${PORTSDIR}/Mk/bsd.tcl.mk"
112
CONFIGURE_ARGS+=	--enable-tcl
113
CONFIGURE_ARGS+=	--with-tclconfig=${LOCALBASE}/lib/tcl${TCL_VER}
114
PLIST_SUB+=	TCL=""
98
PLIST_SUB+=	TCL=""
115
.else
99
.else
116
CONFIGURE_ARGS+=	--disable-tcl
100
CMAKE_ARGS+=	-DDISABLE_TCL=yes
117
PLIST_SUB+=	TCL="@comment "
101
PLIST_SUB+=	TCL="@comment "
118
.endif
102
.endif
119
103
104
.if defined(WITH_LUA)
105
USE_LUA=	5.0+
106
PLIST_SUB+=	LUA=""
107
.else
108
CMAKE_ARGS+=	-DDISABLE_LUA=yes
109
PLIST_SUB+=	LUA="@comment "
110
.endif
111
120
.if defined(WITH_DOCUMENTATION)
112
.if defined(WITH_DOCUMENTATION)
121
CONFIGURE_ARGS+=	--enable-doc
122
BUILD_DEPENDS+=	asciidoc:${PORTSDIR}/textproc/asciidoc
113
BUILD_DEPENDS+=	asciidoc:${PORTSDIR}/textproc/asciidoc
123
BUILD_DEPENDS+=	source-highlight:${PORTSDIR}/textproc/source-highlight
114
BUILD_DEPENDS+=	source-highlight:${PORTSDIR}/textproc/source-highlight
124
PLIST_SUB+=	DOCUMENTATION=""
115
PLIST_SUB+=	DOCUMENTATION=""
125
MAN1=		weechat-curses.1
126
.else
116
.else
127
CONFIGURE_ARGS+=	--disable-doc
117
CMAKE_ARGS+=	-DDISABLE_DOC=yes
128
PLIST_SUB+=	DOCUMENTATION="@comment "
118
PLIST_SUB+=	DOCUMENTATION="@comment "
129
.endif
119
.endif
130
120
121
MAN1=	weechat-curses.1
122
123
post-extract:
124
	@${CP} ${WRKSRC}/doc/weechat-curses.1 ${WRKSRC}/
125
131
post-patch:
126
post-patch:
132
	@${REINPLACE_CMD} -e 's|2.61|2.62|g' ${WRKSRC}/aclocal.m4
127
	@${REINPLACE_CMD} -e 's|$${LIBDIR}/../pkgconfig|$${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|' ${WRKSRC}/CMakeLists.txt
128
	@${REINPLACE_CMD} -e 's|INSTALL|#INSTALL|' ${WRKSRC}/doc/CMakeLists.txt
129
130
post-install:
131
	${INSTALL_MAN} ${WRKSRC}/doc/weechat-curses.1 ${MANPREFIX}/man/man1
133
132
134
.include <bsd.port.mk>
133
.include <bsd.port.mk>
(-)/usr/ports/irc/weechat/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (weechat-0.3.0.tar.bz2) = c31cfc229e964ff9257cc9c7f9e6c9bc
1
MD5 (weechat-0.3.1.tar.gz) = 748c6b5ec600cdb28224e90b6d8efd3b
2
SHA256 (weechat-0.3.0.tar.bz2) = 0064c647bd057a9e347deeb1a1ee397d23c0b52f42baf218c6313508bb3943d4
2
SHA256 (weechat-0.3.1.tar.gz) = 6529b6760912c66723a24382566fe250678953ab95211a00cb33fd4b7ebb10e9
3
SIZE (weechat-0.3.0.tar.bz2) = 1333413
3
SIZE (weechat-0.3.1.tar.gz) = 2262254
(-)/usr/ports/irc/weechat/files/patch-cmake-FindIconv_cmake (+12 lines)
Line 0 Link Here
1
--- cmake/FindIconv.cmake.orig	2010-01-20 17:31:05.000000000 +0000
2
+++ cmake/FindIconv.cmake	2010-01-20 17:31:30.000000000 +0000
3
@@ -30,6 +30,9 @@
4
    set(ICONV_FIND_QUIETLY TRUE)
5
 ENDIF(ICONV_FOUND)
6
 
7
+INCLUDE(CheckLibraryExists)
8
+INCLUDE(CheckFunctionExists)
9
+
10
 FIND_PATH(ICONV_INCLUDE_PATH
11
   NAMES iconv.h
12
   PATHS /usr/include /usr/local/include /usr/pkg/include
(-)/usr/ports/irc/weechat/files/patch-cmake-FindRuby_cmake (+26 lines)
Line 0 Link Here
1
--- cmake/FindRuby.cmake.orig	2010-01-05 21:12:22.000000000 +0000
2
+++ cmake/FindRuby.cmake	2010-01-05 21:14:40.000000000 +0000
3
@@ -35,7 +35,7 @@
4
 
5
 IF(RUBY_EXECUTABLE)
6
   EXECUTE_PROCESS(
7
-    COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['rubyhdrdir'] || Config::CONFIG['archdir']"
8
+    COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['topdir']"
9
     OUTPUT_VARIABLE RUBY_ARCH_DIR
10
     )
11
 
12
@@ -45,12 +45,12 @@
13
     )
14
 
15
   EXECUTE_PROCESS(
16
-    COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['libdir']"
17
+    COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::TOPDIR + '/lib'"
18
     OUTPUT_VARIABLE RUBY_POSSIBLE_LIB_PATH
19
     )
20
   
21
   EXECUTE_PROCESS(
22
-    COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['rubylibdir']"
23
+    COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::TOPDIR + '/lib/ruby/' + Config::CONFIG['ruby_version']"
24
     OUTPUT_VARIABLE RUBY_RUBY_LIB_PATH
25
     )
26
 
(-)/usr/ports/irc/weechat/files/patch-configure.in (-29 lines)
Lines 1-29 Link Here
1
--- configure.in.orig	2009-09-06 08:01:26.000000000 +0000
2
+++ configure.in	2009-11-12 14:46:30.000000000 +0000
3
@@ -137,6 +137,7 @@
4
 AC_ARG_WITH(lua-inc,        [  --with-lua-inc=DIR,     lua include files are in DIR (default=autodetect)],lua_inc=$withval,lua_inc='')
5
 AC_ARG_WITH(lua-lib,        [  --with-lua-lib=DIR,     lua library files are in DIR (default=autodetect)],lua_lib=$withval,lua_lib='')
6
 AC_ARG_WITH(lua-suffix,     [  --with-lua-suffix=ARG   lua is suffixed with ARG (default=autodetect)],lua_suffix=$withval,lua_suffix='')
7
+AC_ARG_WITH(tclconfig,      [  --with-tclconfig=DIR    directory containing tcl configuration (tclConfig.sh)],tclconfig=$withval,tclconfig='')
8
 AC_ARG_ENABLE(doc,          [  --disable-doc           turn off documentation (default=built)],enable_doc=$enableval,enable_doc=yes)
9
 AC_ARG_WITH(debug,          [  --with-debug            debugging: 0=no debug, 1=debug compilation (default=1)],debug=$withval,debug=1)
10
 
11
@@ -682,6 +683,9 @@
12
     AC_MSG_CHECKING(for tclConfig.sh)
13
     tcl_found="no"
14
     tcl_dirs="/lib /usr/lib /usr/tcl/lib /usr/lib/tcl8.5 /usr/lib/tcl8.4 /usr/lib/tcl8.3 /usr/local/lib /usr/local/tcl-8.5/lib /usr/local/tcl-8.4/lib /usr/local/tcl-8.3/lib /usr/local/tcl/lib /opt/lib"
15
+    if test "x$tclconfig" != "x" ; then
16
+        tcl_dirs="$tclconfig $tcl_dirs"
17
+    fi
18
     for tcl_dir in $tcl_dirs ; do
19
         if test -f ${tcl_dir}/tclConfig.sh ; then
20
             . ${tcl_dir}/tclConfig.sh
21
@@ -870,7 +874,7 @@
22
     AC_MSG_RESULT(no)
23
 fi
24
 
25
-CFLAGS=`echo $CFLAGS | sed 's/ -g //g'`
26
+CFLAGS=`echo $CFLAGS | sed 's/ -g / /g'`
27
 CFLAGS=`echo $CFLAGS | sed 's/^-g //g'`
28
 CFLAGS=`echo $CFLAGS | sed 's/ -g$//g'`
29
 CFLAGS=`echo $CFLAGS | sed 's/^-g$//g'`
(-)/usr/ports/irc/weechat/files/patch-src-plugins-scripts-script_c (-168 lines)
Lines 1-168 Link Here
1
--- src/plugins/scripts/script.c.orig	2009-09-04 08:25:47.000000000 +0000
2
+++ src/plugins/scripts/script.c	2009-11-16 12:08:54.000000000 +0000
3
@@ -439,24 +439,15 @@
4
 script_search_by_full_name (struct t_plugin_script *scripts,
5
                             const char *full_name)
6
 {
7
-    char *full_name_copy, *base_name;
8
+    char *base_name;
9
     struct t_plugin_script *ptr_script;
10
     
11
-    full_name_copy = strdup (full_name);
12
-    
13
-    if (full_name_copy)
14
+    for (ptr_script = scripts; ptr_script;
15
+         ptr_script = ptr_script->next_script)
16
     {
17
-        for (ptr_script = scripts; ptr_script;
18
-             ptr_script = ptr_script->next_script)
19
-        {
20
-            base_name = basename (ptr_script->filename);
21
-            if (strcmp (base_name, full_name) == 0)
22
-            {
23
-                free (full_name_copy);
24
-                return ptr_script;
25
-            }
26
-        }
27
-        free (full_name_copy);
28
+        base_name = basename (ptr_script->filename);
29
+        if (strcmp (base_name, full_name) == 0)
30
+            return ptr_script;
31
     }
32
     
33
     /* script not found */
34
@@ -915,7 +906,8 @@
35
                        int (*script_load)(const char *filename),
36
                        char **list)
37
 {
38
-    char **argv, *name, *base_name, *new_path, *autoload_path, *symlink_path;
39
+    char **argv, *name, *ptr_base_name, *base_name, *new_path, *autoload_path;
40
+    char *symlink_path;
41
     const char *dir_home, *dir_separator;
42
     int argc, i, length;
43
     struct t_plugin_script *ptr_script;
44
@@ -930,67 +922,71 @@
45
                 name = strdup (argv[i]);
46
                 if (name)
47
                 {
48
-                    base_name = basename (name);
49
-                    
50
-                    /* unload script, if script is loaded */
51
-                    ptr_script = script_search_by_full_name (scripts, base_name);
52
-                    if (ptr_script)
53
-                        (*script_unload) (ptr_script);
54
+                    ptr_base_name = basename (name);
55
+                    base_name = strdup (ptr_base_name);
56
+                    if (base_name)
57
+                    {
58
+                        /* unload script, if script is loaded */
59
+                        ptr_script = script_search_by_full_name (scripts, base_name);
60
+                        if (ptr_script)
61
+                            (*script_unload) (ptr_script);
62
                     
63
-                    /* remove script file(s) */
64
-                    script_remove_file (weechat_plugin, base_name, 0);
65
+                        /* remove script file(s) */
66
+                        script_remove_file (weechat_plugin, base_name, 0);
67
                     
68
-                    /* move file from install dir to language dir */
69
-                    dir_home = weechat_info_get ("weechat_dir", "");
70
-                    length = strlen (dir_home) + strlen (weechat_plugin->name) +
71
-                        strlen (base_name) + 16;
72
-                    new_path = malloc (length);
73
-                    if (new_path)
74
-                    {
75
-                        snprintf (new_path, length, "%s/%s/%s",
76
-                                  dir_home, weechat_plugin->name, base_name);
77
-                        if (rename (name, new_path) == 0)
78
+                        /* move file from install dir to language dir */
79
+                        dir_home = weechat_info_get ("weechat_dir", "");
80
+                        length = strlen (dir_home) + strlen (weechat_plugin->name) +
81
+                            strlen (base_name) + 16;
82
+                        new_path = malloc (length);
83
+                        if (new_path)
84
                         {
85
-                            /* make link in autoload dir */
86
-                            length = strlen (dir_home) +
87
-                                strlen (weechat_plugin->name) + 8 +
88
-                                strlen (base_name) + 16;
89
-                            autoload_path = malloc (length);
90
-                            if (autoload_path)
91
+                            snprintf (new_path, length, "%s/%s/%s",
92
+                                      dir_home, weechat_plugin->name, base_name);
93
+                            if (rename (name, new_path) == 0)
94
                             {
95
-                                snprintf (autoload_path, length,
96
-                                          "%s/%s/autoload/%s",
97
-                                          dir_home, weechat_plugin->name,
98
-                                          base_name);
99
-                                dir_separator = weechat_info_get ("dir_separator", "");
100
-                                length = 2 + strlen (dir_separator) +
101
-                                    strlen (base_name) + 1;
102
-                                symlink_path = malloc (length);
103
-                                if (symlink_path)
104
+                                /* make link in autoload dir */
105
+                                length = strlen (dir_home) +
106
+                                    strlen (weechat_plugin->name) + 8 +
107
+                                    strlen (base_name) + 16;
108
+                                autoload_path = malloc (length);
109
+                                if (autoload_path)
110
                                 {
111
-                                    snprintf (symlink_path, length, "..%s%s",
112
-                                              dir_separator, base_name);
113
-                                    symlink (symlink_path, autoload_path);
114
-                                    free (symlink_path);
115
-                                }
116
+                                    snprintf (autoload_path, length,
117
+                                              "%s/%s/autoload/%s",
118
+                                              dir_home, weechat_plugin->name,
119
+                                              base_name);
120
+                                    dir_separator = weechat_info_get ("dir_separator", "");
121
+                                    length = 2 + strlen (dir_separator) +
122
+                                        strlen (base_name) + 1;
123
+                                    symlink_path = malloc (length);
124
+                                    if (symlink_path)
125
+                                    {
126
+                                        snprintf (symlink_path, length, "..%s%s",
127
+                                                  dir_separator, base_name);
128
+                                        symlink (symlink_path, autoload_path);
129
+                                        free (symlink_path);
130
+                                    }
131
                                 free (autoload_path);
132
-                            }
133
+                                }
134
                             
135
-                            /* load script */
136
-                            (*script_load) (new_path);
137
-                        }
138
-                        else
139
-                        {
140
-                            weechat_printf (NULL,
141
-                                            _("%s%s: failed to move script %s "
142
-                                              "to %s (%s)"),
143
-                                            weechat_prefix ("error"),
144
-                                            weechat_plugin->name,
145
-                                            name,
146
-                                            new_path,
147
-                                            strerror (errno));
148
+                                /* load script */
149
+                                (*script_load) (new_path);
150
+                            }
151
+                            else
152
+                            {
153
+                                weechat_printf (NULL,
154
+                                                _("%s%s: failed to move script %s "
155
+                                                  "to %s (%s)"),
156
+                                                weechat_prefix ("error"),
157
+                                                weechat_plugin->name,
158
+                                                name,
159
+                                                new_path,
160
+                                                strerror (errno));
161
+                            }
162
+                            free (new_path);
163
                         }
164
-                        free (new_path);
165
+                        free (base_name);
166
                     }
167
                     free (name);
168
                 }
(-)/usr/ports/irc/weechat/pkg-descr (-1 / +4 lines)
Lines 3-6 Link Here
3
and extensible with scripts. For the moment, only ncurse GUI is
3
and extensible with scripts. For the moment, only ncurse GUI is
4
supported by this port.
4
supported by this port.
5
5
6
WWW: http://weechat.org
6
Note: this is not the official release version, this is a git snapshot, which
7
may in some cases be unstable.
8
9
WWW: http://git.savannah.gnu.org/gitweb/?p=weechat.git
(-)/usr/ports/irc/weechat/pkg-plist (-48 / +25 lines)
Lines 1-73 Link Here
1
bin/weechat-curses
1
bin/weechat-curses
2
include/weechat/weechat-plugin.h
2
include/weechat/weechat-plugin.h
3
lib/weechat/plugins/alias.a
4
lib/weechat/plugins/alias.la
5
lib/weechat/plugins/alias.so
3
lib/weechat/plugins/alias.so
6
lib/weechat/plugins/alias.so.0
7
%%ASPELL%%lib/weechat/plugins/aspell.a
8
%%ASPELL%%lib/weechat/plugins/aspell.la
9
%%ASPELL%%lib/weechat/plugins/aspell.so
10
%%ASPELL%%lib/weechat/plugins/aspell.so.0
11
%%CHARSET%%lib/weechat/plugins/charset.a
12
%%CHARSET%%lib/weechat/plugins/charset.la
13
%%CHARSET%%lib/weechat/plugins/charset.so
14
%%CHARSET%%lib/weechat/plugins/charset.so.0
15
lib/weechat/plugins/fifo.a
16
lib/weechat/plugins/fifo.la
17
lib/weechat/plugins/fifo.so
4
lib/weechat/plugins/fifo.so
18
lib/weechat/plugins/fifo.so.0
19
lib/weechat/plugins/irc.a
20
lib/weechat/plugins/irc.la
21
lib/weechat/plugins/irc.so
5
lib/weechat/plugins/irc.so
22
lib/weechat/plugins/irc.so.0
23
lib/weechat/plugins/logger.a
24
lib/weechat/plugins/logger.la
25
lib/weechat/plugins/logger.so
6
lib/weechat/plugins/logger.so
26
lib/weechat/plugins/logger.so.0
7
lib/weechat/plugins/xfer.so
27
%%PERL%%lib/weechat/plugins/perl.a
8
libdata/pkgconfig/weechat.pc
28
%%PERL%%lib/weechat/plugins/perl.la
9
%%ASPELL%%lib/weechat/plugins/aspell.so
10
%%CHARSET%%lib/weechat/plugins/charset.so
11
%%LUA%%lib/weechat/plugins/lua.so
29
%%PERL%%lib/weechat/plugins/perl.so
12
%%PERL%%lib/weechat/plugins/perl.so
30
%%PERL%%lib/weechat/plugins/perl.so.0
31
%%PYTHON%%lib/weechat/plugins/python.a
32
%%PYTHON%%lib/weechat/plugins/python.la
33
%%PYTHON%%lib/weechat/plugins/python.so
13
%%PYTHON%%lib/weechat/plugins/python.so
34
%%PYTHON%%lib/weechat/plugins/python.so.0
35
%%RUBY%%lib/weechat/plugins/ruby.a
36
%%RUBY%%lib/weechat/plugins/ruby.la
37
%%RUBY%%lib/weechat/plugins/ruby.so
14
%%RUBY%%lib/weechat/plugins/ruby.so
38
%%RUBY%%lib/weechat/plugins/ruby.so.0
39
%%TCL%%lib/weechat/plugins/tcl.so.0
40
%%TCL%%lib/weechat/plugins/tcl.so
15
%%TCL%%lib/weechat/plugins/tcl.so
41
%%TCL%%lib/weechat/plugins/tcl.la
16
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.de.html
42
%%TCL%%lib/weechat/plugins/tcl.a
43
lib/weechat/plugins/xfer.a
44
lib/weechat/plugins/xfer.la
45
lib/weechat/plugins/xfer.so
46
lib/weechat/plugins/xfer.so.0
47
libdata/pkgconfig/weechat.pc
48
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.en.html
17
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.en.html
49
%%DOCUMENTATION%%share/doc/weechat/weechat_plugin_api.en.html
50
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.en.html
51
%%DOCUMENTATION%%share/doc/weechat/weechat_scripting.en.html
52
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.en.html
53
%%DOCUMENTATION%%share/doc/weechat/weechat_user.en.html
54
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.fr.html
18
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.fr.html
19
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.it.html
20
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.pl.html
21
%%DOCUMENTATION%%share/doc/weechat/weechat_plugin_api.en.html
55
%%DOCUMENTATION%%share/doc/weechat/weechat_plugin_api.fr.html
22
%%DOCUMENTATION%%share/doc/weechat/weechat_plugin_api.fr.html
23
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.de.html
24
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.en.html
56
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.fr.html
25
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.fr.html
26
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.ja.html
27
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.it.html
28
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.pl.html
29
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.ru.html
30
%%DOCUMENTATION%%share/doc/weechat/weechat_scripting.en.html
57
%%DOCUMENTATION%%share/doc/weechat/weechat_scripting.fr.html
31
%%DOCUMENTATION%%share/doc/weechat/weechat_scripting.fr.html
32
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.de.html
33
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.en.html
58
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.fr.html
34
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.fr.html
59
%%DOCUMENTATION%%share/doc/weechat/weechat_user.fr.html
35
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.it.html
60
%%DOCUMENTATION%%share/doc/weechat/weechat_faq.pl.html
61
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.pl.html
62
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.pl.html
36
%%DOCUMENTATION%%share/doc/weechat/weechat_tester.pl.html
63
%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.de.html
37
%%DOCUMENTATION%%share/doc/weechat/weechat_user.en.html
38
%%DOCUMENTATION%%share/doc/weechat/weechat_user.fr.html
39
%%DOCUMENTATION%%share/doc/weechat/weechat_user.it.html
40
%%NLS%%share/locale/cs/LC_MESSAGES/weechat.mo
64
%%NLS%%share/locale/de/LC_MESSAGES/weechat.mo
41
%%NLS%%share/locale/de/LC_MESSAGES/weechat.mo
65
%%NLS%%share/locale/es/LC_MESSAGES/weechat.mo
42
%%NLS%%share/locale/es/LC_MESSAGES/weechat.mo
66
%%NLS%%share/locale/fr/LC_MESSAGES/weechat.mo
43
%%NLS%%share/locale/fr/LC_MESSAGES/weechat.mo
67
%%NLS%%share/locale/hu/LC_MESSAGES/weechat.mo
44
%%NLS%%share/locale/hu/LC_MESSAGES/weechat.mo
68
%%NLS%%share/locale/ru/LC_MESSAGES/weechat.mo
45
%%NLS%%share/locale/it/LC_MESSAGES/weechat.mo
69
%%NLS%%share/locale/cs/LC_MESSAGES/weechat.mo
70
%%NLS%%share/locale/pl/LC_MESSAGES/weechat.mo
46
%%NLS%%share/locale/pl/LC_MESSAGES/weechat.mo
47
%%NLS%%share/locale/ru/LC_MESSAGES/weechat.mo
71
@dirrmtry lib/weechat/plugins
48
@dirrmtry lib/weechat/plugins
72
@dirrmtry lib/weechat
49
@dirrmtry lib/weechat
73
@dirrmtry share/doc/weechat
50
@dirrmtry share/doc/weechat

Return to bug 143128