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

(-)/home/corn/devel/ekg2/Makefile (-20 / +108 lines)
Lines 5-52 Link Here
5
# $FreeBSD: ports/polish/ekg2/Makefile,v 1.15 2010/05/31 02:00:39 ade Exp $
5
# $FreeBSD: ports/polish/ekg2/Makefile,v 1.15 2010/05/31 02:00:39 ade Exp $
6
6
7
PORTNAME=	ekg2
7
PORTNAME=	ekg2
8
PORTVERSION=	0.1.1
8
PORTVERSION=	0.3.0
9
PORTREVISION=	2
10
PORTEPOCH=	1
9
PORTEPOCH=	1
11
CATEGORIES=	polish net-im
10
CATEGORIES=	polish net-im
12
MASTER_SITES=	http://pl.ekg2.org/
11
MASTER_SITES=	http://pl.ekg2.org/
13
12
14
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	c0rn@o2.pl
15
COMMENT=	Text-mode Gadu-Gadu, Jabber and IRC client
14
COMMENT=	Text-mode Gadu-Gadu, Jabber and IRC client
16
15
17
LIB_DEPENDS=	gadu.3:${PORTSDIR}/polish/libgadu \
16
LIB_DEPENDS=	gadu.3:${PORTSDIR}/polish/libgadu \
18
		expat.6:${PORTSDIR}/textproc/expat2
17
		expat.6:${PORTSDIR}/textproc/expat2
19
18
19
LICENSE=	GPLv2
20
20
USE_GMAKE=	yes
21
USE_GMAKE=	yes
21
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
22
USE_GNOME=	gnomehack pkgconfig
23
USE_GNOME=	gnomehack pkgconfig
23
USE_GETTEXT=	yes
24
USE_ICONV=	yes
25
MAKE_JOBS_SAFE=	yes
26
27
OPTIONS=	ASPELL		"Enable spell checking support"	on \
28
		GPG		"Enable gpg plugin"		off \
29
		GSM		"Enable gsm audio plugin"	off \
30
		GTK2		"Enable gtk plugin"		off \
31
		PERL		"Enable perl plugin"		off \
32
		PYTHON		"Enable python plugin"		off \
33
		SQLITE		"Enable sqlite plugin"		off \
34
		XOSD		"Enable xosd plugin"		off
24
35
25
CONFIGURE_ARGS+=	--enable-shared \
36
CONFIGURE_ARGS+=	--enable-shared \
26
			--disable-static \
37
			--disable-static \
27
			--enable-dynamic \
38
			--enable-dynamic \
28
			--with-expat \
39
			--with-expat \
29
			--without-aspell \
30
			--without-gtk \
31
			--without-libgsm \
32
			--without-libxosd \
33
			--without-perl \
34
			--without-python \
35
			--without-sqlite3 \
36
			--without-sqlite \
40
			--without-sqlite \
37
			--without-gpm-mouse \
41
			--without-gpm-mouse \
38
			--with-libgadu
42
			--with-libgadu \
43
			--without-libgnutls \
44
			--without-gif \
45
			--without-libjpeg
39
46
40
CONFIGURE_ENV=		CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
47
CONFIGURE_ENV=		LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -lintl"
41
			CFLAGS="${CFLAGS}" \
42
			LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -lintl ${PTHREAD_LIBS}"
43
MAKE_ENV=		CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
44
			LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
45
CFLAGS+=		-I${LOCALBASE}/include
48
CFLAGS+=		-I${LOCALBASE}/include
46
49
47
USE_LDCONFIG=		yes
50
.include <bsd.port.pre.mk>
51
52
.if defined(WITH_ASPELL)
53
LIB_DEPENDS+=		aspell:${PORTSDIR}/textproc/aspell
54
RUN_DEPENDS+=		${LOCALBASE}/share/aspell/pl.rws:${PORTSDIR}/polish/aspell
55
CONFIGURE_ARGS+=	--with-aspell
56
.else
57
CONFIGURE_ARGS+=	--without-aspell
58
.endif
59
60
.if defined(WITH_GPG)
61
LIB_DEPENDS+=		gpgme:${PORTSDIR}/security/gpgme \
62
			gpg-error:${PORTSDIR}/security/libgpg-error
63
RUN_DEPENDS+=		gpg:${PORTSDIR}/security/gnupg
64
CONFIGURE_ARGS+=	--with-gpg
65
PLIST_SUB+=		GPG_PLUGIN=""
66
.else
67
CONFIGURE_ARGS+=	--without-gpg
68
PLIST_SUB+=		GPG_PLUGIN="@comment "
69
.endif
70
71
.if defined(WITH_GSM)
72
LIB_DEPENDS+=		gsm:${PORTSDIR}/audio/gsm
73
CONFIGURE_ARGS+=	--with-libgsm
74
PLIST_SUB+=		GSM_PLUGIN=""
75
.else
76
CONFIGURE_ARGS+=	--without-libgsm
77
PLIST_SUB+=		GSM_PLUGIN="@comment "
78
.endif
79
80
.if defined(WITH_GTK2)
81
USE_GNOME+=		gtk20
82
CONFIGURE_ARGS+=	--with-gtk
83
PLIST_SUB+=		GTK2_PLUGIN=""
84
.else
85
CONFIGURE_ARGS+=	--without-gtk
86
PLIST_SUB+=		GTK2_PLUGIN="@comment "
87
.endif
88
89
.if defined(WITHOUT_NLS)
90
CONFIGURE_ARGS+=	--disable-nls
91
PLIST_SUB+=		NLS="@comment "
92
.else
93
USE_GETTEXT=		yes
94
CONFIGURE_ARGS+=	--enable-nls
95
PLIST_SUB+=		NLS=""
96
.endif
97
98
.if defined(WITH_PERL)
99
USE_PERL5=		yes
100
CONFIGURE_ARGS+=	--with-perl
101
PLIST_SUB+=		PERL_PLUGIN=""
102
.else
103
CONFIGURE_ARGS+=	--without-perl
104
PLIST_SUB+=		PERL_PLUGIN="@comment "
105
.endif
106
107
.if defined(WITH_PYTHON)
108
USE_PYTHON=		yes
109
CONFIGURE_ARGS+=	--with-python
110
PLIST_SUB+=		PYTHON_PLUGIN=""
111
.else
112
CONFIGURE_ARGS+=	--without-python
113
PLIST_SUB+=		PYTHON_PLUGIN="@comment "
114
.endif
115
116
.if defined(WITH_SQLITE)
117
LIB_DEPENDS+=		sqlite3:${PORTSDIR}/databases/sqlite3
118
CONFIGURE_ARGS+=	--with-sqlite3
119
PLIST_SUB+=		SQLITE_PLUGIN=""
120
.else
121
CONFIGURE_ARGS+=	--without-sqlite3
122
PLIST_SUB+=		SQLITE_PLUGIN="@comment "
123
.endif
124
125
.if defined(WITH_XOSD)
126
LIB_DEPENDS+=		xosd:${PORTSDIR}/misc/xosd
127
CONFIGURE_ARGS+=	--with-libxosd
128
PLIST_SUB+=		XOSD_PLUGIN=""
129
.else
130
CONFIGURE_ARGS+=	--without-libxosd
131
PLIST_SUB+=		XOSD_PLUGIN="@comment "
132
.endif
48
133
49
post-patch:
134
post-patch:
50
	@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
135
.if defined(WITH_PYTHON)
136
	${REINPLACE_CMD} -e 's|/usr/bin/python|${PYTHON_CMD}|' \
137
		${WRKSRC}/contrib/python/notify-bubble.py
138
.endif
51
139
52
.include <bsd.port.mk>
140
.include <bsd.port.post.mk>
(-)/home/corn/devel/ekg2/distinfo (-3 / +2 lines)
Lines 1-3 Link Here
1
MD5 (ekg2-0.1.1.tar.gz) = 8c64ab909687b9ac3798caa7736d7b2a
1
SHA256 (ekg2-0.3.0.tar.gz) = 07d460b171c266c3375a3d9ca4c9c19fa001d986cbb73fcd8611900f65382dcd
2
SHA256 (ekg2-0.1.1.tar.gz) = 563ad926becaa634c7004d309d4bcf5fccdf385cf2bba779b38679e511005400
2
SIZE (ekg2-0.3.0.tar.gz) = 1701061
3
SIZE (ekg2-0.1.1.tar.gz) = 1218364
(-)/home/corn/devel/ekg2/files/patch-plugins-rc-inputs.c (-12 lines)
Lines 1-12 Link Here
1
--- plugins/rc/inputs.c.orig	Wed Apr  4 19:58:55 2007
2
+++ plugins/rc/inputs.c	Wed Apr  4 20:03:38 2007
3
@@ -8,6 +8,9 @@
4
 #include <sys/un.h>
5
 #endif
6
 
7
+#include <sys/types.h>
8
+#include <sys/socket.h>
9
+
10
 #include <sys/stat.h>
11
 
12
 #include <stdlib.h>
(-)/home/corn/devel/ekg2/pkg-plist (-112 / +113 lines)
Lines 1-156 Link Here
1
bin/ekg2
1
bin/ekg2
2
bin/ekg2-config
2
lib/ekg2/plugins/autoresponder.la
3
include/ekg2/audio.h
3
lib/ekg2/plugins/autoresponder.so
4
include/ekg2/commands.h
4
lib/ekg2/plugins/feed.so
5
include/ekg2/configfile.h
5
lib/ekg2/plugins/feed.la
6
include/ekg2/debug.h
7
include/ekg2/dynstuff.h
8
include/ekg2/ekg2-config.h
9
include/ekg2/emoticons.h
10
include/ekg2/events.h
11
include/ekg2/gettext.h
12
include/ekg2/log.h
13
include/ekg2/metacontacts.h
14
include/ekg2/msgqueue.h
15
include/ekg2/objects.h
16
include/ekg2/plugins.h
17
include/ekg2/protocol.h
18
include/ekg2/scripts.h
19
include/ekg2/sessions.h
20
include/ekg2/stuff.h
21
include/ekg2/themes.h
22
include/ekg2/userlist.h
23
include/ekg2/vars.h
24
include/ekg2/windows.h
25
include/ekg2/xmalloc.h
26
include/ekg2/queries.h
27
include/ekg2/win32.h
28
lib/ekg2/plugins/gg.la
29
lib/ekg2/plugins/gg.so
6
lib/ekg2/plugins/gg.so
7
lib/ekg2/plugins/gg.la
8
%%GPG_PLUGIN%%lib/ekg2/plugins/gpg.la
9
%%GPG_PLUGIN%%lib/ekg2/plugins/gpg.so
10
%%GSM_PLUGIN%%lib/ekg2/plugins/gsm.so
11
%%GSM_PLUGIN%%lib/ekg2/plugins/gsm.la
12
%%GTK2_PLUGIN%%lib/ekg2/plugins/gtk.so
13
%%GTK2_PLUGIN%%lib/ekg2/plugins/gtk.la
14
lib/ekg2/plugins/httprc_xajax.la
15
lib/ekg2/plugins/httprc_xajax.so
16
lib/ekg2/plugins/icq.la
17
lib/ekg2/plugins/icq.so
30
lib/ekg2/plugins/ioctld.la
18
lib/ekg2/plugins/ioctld.la
31
lib/ekg2/plugins/ioctld.so
19
lib/ekg2/plugins/ioctld.so
32
lib/ekg2/plugins/irc.la
20
lib/ekg2/plugins/irc.la
33
lib/ekg2/plugins/irc.so
21
lib/ekg2/plugins/irc.so
34
lib/ekg2/plugins/jabber.la
35
lib/ekg2/plugins/jabber.so
22
lib/ekg2/plugins/jabber.so
23
lib/ekg2/plugins/jabber.la
24
lib/ekg2/plugins/jogger.la
25
lib/ekg2/plugins/jogger.so
36
lib/ekg2/plugins/logs.la
26
lib/ekg2/plugins/logs.la
37
lib/ekg2/plugins/logs.so
27
lib/ekg2/plugins/logs.so
28
%%SQLITE_PLUGIN%%lib/ekg2/plugins/logsqlite.so
29
%%SQLITE_PLUGIN%%lib/ekg2/plugins/logsqlite.la
38
lib/ekg2/plugins/mail.la
30
lib/ekg2/plugins/mail.la
39
lib/ekg2/plugins/mail.so
31
lib/ekg2/plugins/mail.so
40
lib/ekg2/plugins/ncurses.la
32
lib/ekg2/plugins/ncurses.la
41
lib/ekg2/plugins/ncurses.so
33
lib/ekg2/plugins/ncurses.so
34
%%PERL_PLUGIN%%lib/ekg2/plugins/perl.so
35
%%PERL_PLUGIN%%lib/ekg2/plugins/perl.la
42
lib/ekg2/plugins/pcm.la
36
lib/ekg2/plugins/pcm.la
43
lib/ekg2/plugins/pcm.so
37
lib/ekg2/plugins/pcm.so
38
lib/ekg2/plugins/polchat.la
39
lib/ekg2/plugins/polchat.so
40
%%PYTHON_PLUGIN%%lib/ekg2/plugins/python.so
41
%%PYTHON_PLUGIN%%lib/ekg2/plugins/python.la
44
lib/ekg2/plugins/rc.la
42
lib/ekg2/plugins/rc.la
45
lib/ekg2/plugins/rc.so
43
lib/ekg2/plugins/rc.so
44
lib/ekg2/plugins/readline.la
45
lib/ekg2/plugins/readline.so
46
lib/ekg2/plugins/remote.la
47
lib/ekg2/plugins/remote.so
48
lib/ekg2/plugins/rivchat.la
49
lib/ekg2/plugins/rivchat.so
50
lib/ekg2/plugins/rot13.la
51
lib/ekg2/plugins/rot13.so
46
lib/ekg2/plugins/sim.la
52
lib/ekg2/plugins/sim.la
47
lib/ekg2/plugins/sim.so
53
lib/ekg2/plugins/sim.so
48
lib/ekg2/plugins/sms.la
54
lib/ekg2/plugins/sms.la
49
lib/ekg2/plugins/sms.so
55
lib/ekg2/plugins/sms.so
50
lib/ekg2/plugins/rot13.so
51
lib/ekg2/plugins/rot13.la
52
lib/ekg2/plugins/httprc_xajax.so
53
lib/ekg2/plugins/httprc_xajax.la
54
lib/ekg2/plugins/xmsg.so
55
lib/ekg2/plugins/xmsg.la
56
lib/ekg2/plugins/xmsg.la
56
lib/ekg2/plugins/readline.so
57
lib/ekg2/plugins/xmsg.so
57
lib/ekg2/plugins/readline.la
58
%%XOSD_PLUGIN%%lib/ekg2/plugins/xosd.so
58
lib/ekg2/plugins/autoresponder.so
59
%%XOSD_PLUGIN%%lib/ekg2/plugins/xosd.la
59
lib/ekg2/plugins/autoresponder.la
60
%%PERL_PLUGIN%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/perllocal.pod
61
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2/Ekg2.bs
62
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2/Ekg2.so
63
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2/.packlist
64
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2/Irc/Irc.bs
65
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2/Irc/Irc.so
66
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2/Irc/.packlist
67
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/Ekg2.pm
68
%%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/Ekg2/Irc.pm
60
libexec/ioctld
69
libexec/ioctld
61
%%DATADIR%%/plugins/logs/vars-pl.txt
70
%%DATADIR%%/commands-pl.txt
62
%%DATADIR%%/plugins/logs/vars-pl-utf.txt
63
%%DATADIR%%/plugins/mail/vars-pl.txt
64
%%DATADIR%%/plugins/mail/vars-pl-utf.txt
65
%%DATADIR%%/plugins/rc/vars-pl.txt
66
%%DATADIR%%/plugins/rc/vars-pl-utf.txt
67
%%DATADIR%%/plugins/sms/vars-pl.txt
68
%%DATADIR%%/plugins/sms/commands-pl.txt
69
%%DATADIR%%/plugins/sms/vars-pl-utf.txt
70
%%DATADIR%%/plugins/sms/commands-pl-utf.txt
71
%%DATADIR%%/plugins/irc/commands-pl.txt
72
%%DATADIR%%/plugins/irc/session-pl.txt
73
%%DATADIR%%/plugins/irc/commands-pl-utf.txt
74
%%DATADIR%%/plugins/irc/session-pl-utf.txt
75
%%DATADIR%%/plugins/httprc_xajax/xajax_0.2.4.js
76
%%DATADIR%%/plugins/httprc_xajax/ekg2.js
77
%%DATADIR%%/plugins/httprc_xajax/ekg2.css
78
%%DATADIR%%/plugins/httprc_xajax/xajax_0.2.4.js-utf.txt
79
%%DATADIR%%/plugins/httprc_xajax/ekg2.js-utf.txt
80
%%DATADIR%%/plugins/httprc_xajax/ekg2.css-utf.txt
81
%%DATADIR%%/plugins/xmsg/session-pl.txt
82
%%DATADIR%%/plugins/xmsg/session-en.txt
83
%%DATADIR%%/plugins/xmsg/vars-pl.txt
84
%%DATADIR%%/plugins/xmsg/vars-en.txt
85
%%DATADIR%%/plugins/xmsg/session-pl-utf.txt
86
%%DATADIR%%/plugins/xmsg/session-en-utf.txt
87
%%DATADIR%%/plugins/xmsg/vars-pl-utf.txt
88
%%DATADIR%%/plugins/xmsg/vars-en-utf.txt
89
%%DATADIR%%/plugins/autoresponder/vars-pl.txt
90
%%DATADIR%%/plugins/autoresponder/vars-en.txt
71
%%DATADIR%%/plugins/autoresponder/vars-en.txt
91
%%DATADIR%%/plugins/autoresponder/vars-pl-utf.txt
72
%%DATADIR%%/plugins/autoresponder/vars-pl.txt
92
%%DATADIR%%/plugins/autoresponder/vars-en-utf.txt
73
%%DATADIR%%/plugins/gg/commands-en.txt
93
%%DATADIR%%/plugins/ioctld/commands-pl.txt
94
%%DATADIR%%/plugins/ioctld/commands-pl-utf.txt
95
%%DATADIR%%/plugins/gg/vars-pl.txt
96
%%DATADIR%%/plugins/gg/commands-pl.txt
74
%%DATADIR%%/plugins/gg/commands-pl.txt
75
%%DATADIR%%/plugins/gg/session-en.txt
97
%%DATADIR%%/plugins/gg/session-pl.txt
76
%%DATADIR%%/plugins/gg/session-pl.txt
98
%%DATADIR%%/plugins/gg/commands-en.txt
99
%%DATADIR%%/plugins/gg/vars-en.txt
77
%%DATADIR%%/plugins/gg/vars-en.txt
100
%%DATADIR%%/plugins/gg/session-en.txt
78
%%DATADIR%%/plugins/gg/vars-pl.txt
101
%%DATADIR%%/plugins/gg/vars-pl-utf.txt
79
%%GPG_PLUGIN%%%%DATADIR%%/plugins/gpg/commands-en.txt
102
%%DATADIR%%/plugins/gg/commands-pl-utf.txt
80
%%GPG_PLUGIN%%%%DATADIR%%/plugins/gpg/commands-pl.txt
103
%%DATADIR%%/plugins/gg/session-pl-utf.txt
81
%%DATADIR%%/plugins/httprc_xajax/ekg2.css
104
%%DATADIR%%/plugins/gg/commands-en-utf.txt
82
%%DATADIR%%/plugins/httprc_xajax/ekg2.js
105
%%DATADIR%%/plugins/gg/vars-en-utf.txt
83
%%DATADIR%%/plugins/httprc_xajax/xajax_0.2.4.js
106
%%DATADIR%%/plugins/gg/session-en-utf.txt
84
%%DATADIR%%/plugins/ioctld/commands-pl.txt
107
%%DATADIR%%/plugins/sim/vars-pl.txt
85
%%DATADIR%%/plugins/irc/commands-pl.txt
108
%%DATADIR%%/plugins/sim/commands-pl.txt
86
%%DATADIR%%/plugins/irc/session-pl.txt
109
%%DATADIR%%/plugins/sim/vars-pl-utf.txt
110
%%DATADIR%%/plugins/sim/commands-pl-utf.txt
111
%%DATADIR%%/plugins/jabber/commands-pl.txt
112
%%DATADIR%%/plugins/jabber/session-pl.txt
113
%%DATADIR%%/plugins/jabber/commands-en.txt
87
%%DATADIR%%/plugins/jabber/commands-en.txt
88
%%DATADIR%%/plugins/jabber/commands-pl.txt
114
%%DATADIR%%/plugins/jabber/session-en.txt
89
%%DATADIR%%/plugins/jabber/session-en.txt
115
%%DATADIR%%/plugins/jabber/commands-pl-utf.txt
90
%%DATADIR%%/plugins/jabber/session-pl.txt
116
%%DATADIR%%/plugins/jabber/session-pl-utf.txt
91
%%DATADIR%%/plugins/logs/vars-pl.txt
117
%%DATADIR%%/plugins/jabber/commands-en-utf.txt
92
%%SQLITE_PLUGIN%%%%DATADIR%%/plugins/logsqlite/vars-en.txt
118
%%DATADIR%%/plugins/jabber/session-en-utf.txt
93
%%SQLITE_PLUGIN%%%%DATADIR%%/plugins/logsqlite/vars-pl.txt
119
%%DATADIR%%/plugins/ncurses/vars-pl.txt
94
%%SQLITE_PLUGIN%%%%DATADIR%%/plugins/logsqlite/commands-en.txt
95
%%SQLITE_PLUGIN%%%%DATADIR%%/plugins/logsqlite/commands-pl.txt
96
%%DATADIR%%/plugins/mail/vars-pl.txt
97
%%DATADIR%%/plugins/ncurses/commands-pl.txt
120
%%DATADIR%%/plugins/ncurses/vars-en.txt
98
%%DATADIR%%/plugins/ncurses/vars-en.txt
121
%%DATADIR%%/plugins/ncurses/vars-pl-utf.txt
99
%%DATADIR%%/plugins/ncurses/vars-pl.txt
122
%%DATADIR%%/plugins/ncurses/vars-en-utf.txt
100
%%PYTHON_PLUGIN%%%%DATADIR%%/plugins/python/commands-en.txt
101
%%PYTHON_PLUGIN%%%%DATADIR%%/plugins/python/commands-pl.txt
102
%%DATADIR%%/plugins/rc/vars-pl.txt
103
%%DATADIR%%/plugins/readline/vars-en.txt
123
%%DATADIR%%/plugins/readline/vars-pl.txt
104
%%DATADIR%%/plugins/readline/vars-pl.txt
124
%%DATADIR%%/plugins/readline/vars-pl-utf.txt
105
%%DATADIR%%/plugins/sim/commands-pl.txt
125
%%DATADIR%%/vars-pl.txt
106
%%DATADIR%%/plugins/sim/vars-pl.txt
126
%%DATADIR%%/commands-pl.txt
107
%%DATADIR%%/plugins/sms/commands-pl.txt
127
%%DATADIR%%/session-pl.txt
108
%%DATADIR%%/plugins/sms/vars-pl.txt
109
%%DATADIR%%/plugins/xmsg/session-en.txt
110
%%DATADIR%%/plugins/xmsg/session-pl.txt
111
%%DATADIR%%/plugins/xmsg/vars-en.txt
112
%%DATADIR%%/plugins/xmsg/vars-pl.txt
113
%%XOSD_PLUGIN%%%%DATADIR%%/plugins/xosd/commands-pl.txt
114
%%XOSD_PLUGIN%%%%DATADIR%%/plugins/xosd/vars-pl.txt
115
%%PERL_PLUGIN%%%%DATADIR%%/scripts/audioscrobbler_bot.pl
116
%%PERL_PLUGIN%%%%DATADIR%%/scripts/dns.pl
117
%%PERL_PLUGIN%%%%DATADIR%%/scripts/ggbe.pl
118
%%PYTHON_PLUGIN%%%%DATADIR%%/scripts/notify-bubble.py
119
%%PERL_PLUGIN%%%%DATADIR%%/scripts/slownik.pl
120
%%PERL_PLUGIN%%%%DATADIR%%/scripts/xmms.pl
128
%%DATADIR%%/session-en.txt
121
%%DATADIR%%/session-en.txt
129
%%DATADIR%%/vars-pl-utf.txt
122
%%DATADIR%%/session-pl.txt
130
%%DATADIR%%/commands-pl-utf.txt
131
%%DATADIR%%/session-pl-utf.txt
132
%%DATADIR%%/session-en-utf.txt
133
%%DATADIR%%/themes/blue_sea_dragon.theme
123
%%DATADIR%%/themes/blue_sea_dragon.theme
124
%%DATADIR%%/themes/dmilith.theme
134
%%DATADIR%%/themes/irc-irssi.theme
125
%%DATADIR%%/themes/irc-irssi.theme
135
share/locale/pl/LC_MESSAGES/ekg2.mo
126
%%DATADIR%%/themes/peres.theme
136
share/locale/de/LC_MESSAGES/ekg2.mo
127
%%DATADIR%%/vars-en.txt
128
%%DATADIR%%/vars-pl.txt
129
%%NLS%%share/locale/de/LC_MESSAGES/ekg2.mo
130
%%NLS%%share/locale/pl/LC_MESSAGES/ekg2.mo
137
@dirrm %%DATADIR%%/themes
131
@dirrm %%DATADIR%%/themes
138
@dirrm %%DATADIR%%/plugins/logs
132
@dirrmtry %%DATADIR%%/scripts
139
@dirrm %%DATADIR%%/plugins/mail
140
@dirrm %%DATADIR%%/plugins/rc
141
@dirrm %%DATADIR%%/plugins/sms
142
@dirrm %%DATADIR%%/plugins/irc
143
@dirrm %%DATADIR%%/plugins/httprc_xajax
144
@dirrm %%DATADIR%%/plugins/xmsg
145
@dirrm %%DATADIR%%/plugins/autoresponder
133
@dirrm %%DATADIR%%/plugins/autoresponder
146
@dirrm %%DATADIR%%/plugins/ioctld
147
@dirrm %%DATADIR%%/plugins/gg
134
@dirrm %%DATADIR%%/plugins/gg
148
@dirrm %%DATADIR%%/plugins/sim
135
%%GPG_PLUGIN%%@dirrm %%DATADIR%%/plugins/gpg
136
@dirrm %%DATADIR%%/plugins/httprc_xajax
137
@dirrm %%DATADIR%%/plugins/ioctld
138
@dirrm %%DATADIR%%/plugins/irc
149
@dirrm %%DATADIR%%/plugins/jabber
139
@dirrm %%DATADIR%%/plugins/jabber
140
@dirrm %%DATADIR%%/plugins/logs
141
%%SQLITE_PLUGIN%%@dirrm %%DATADIR%%/plugins/logsqlite
142
@dirrm %%DATADIR%%/plugins/mail
150
@dirrm %%DATADIR%%/plugins/ncurses
143
@dirrm %%DATADIR%%/plugins/ncurses
144
%%PYTHON_PLUGIN%%@dirrm %%DATADIR%%/plugins/python
145
@dirrm %%DATADIR%%/plugins/rc
151
@dirrm %%DATADIR%%/plugins/readline
146
@dirrm %%DATADIR%%/plugins/readline
147
@dirrm %%DATADIR%%/plugins/sim
148
@dirrm %%DATADIR%%/plugins/sms
149
@dirrm %%DATADIR%%/plugins/xmsg
150
%%XOSD_PLUGIN%%@dirrm %%DATADIR%%/plugins/xosd
152
@dirrm %%DATADIR%%/plugins
151
@dirrm %%DATADIR%%/plugins
153
@dirrm %%DATADIR%%
152
@dirrm %%DATADIR%%
153
%%PERL_PLUGIN%%@dirrm %%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2/Irc
154
%%PERL_PLUGIN%%@dirrm %%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Ekg2
155
%%PERL_PLUGIN%%@dirrm %%PERL_PLUGIN%%%%SITE_PERL%%/%%PERL_ARCH%%/Ekg2
154
@dirrm lib/ekg2/plugins
156
@dirrm lib/ekg2/plugins
155
@dirrm lib/ekg2
157
@dirrm lib/ekg2
156
@dirrm include/ekg2

Return to bug 154919