summaryrefslogtreecommitdiff
path: root/polish/gnugadu2
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-10-07 23:21:12 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-10-07 23:21:12 +0000
commitda599f9b64409cddd2bbaaeb4b553adc66085a92 (patch)
treece848253fb7ec1d242b6a26d18096d46b07827f1 /polish/gnugadu2
parentUnbreak last commit: remove the grouping information from (diff)
- Update to 2.2.8
Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=144543
Diffstat (limited to 'polish/gnugadu2')
-rw-r--r--polish/gnugadu2/Makefile145
-rw-r--r--polish/gnugadu2/distinfo4
-rw-r--r--polish/gnugadu2/files/patch-src_plugins_GUI_gui__preferences.c21
-rw-r--r--polish/gnugadu2/files/patch-src_plugins_GUI_gui__userview.c24
-rw-r--r--polish/gnugadu2/files/patch-src_plugins_aaway_aaway.c14
-rw-r--r--polish/gnugadu2/files/patch-src_plugins_jabber_jabber__login.c37
-rw-r--r--polish/gnugadu2/files/patch-src_plugins_jabber_jabber__plugin.c20
-rw-r--r--polish/gnugadu2/pkg-descr11
-rw-r--r--polish/gnugadu2/pkg-plist31
9 files changed, 215 insertions, 92 deletions
diff --git a/polish/gnugadu2/Makefile b/polish/gnugadu2/Makefile
index 9f7ebc128607..5857b0de4220 100644
--- a/polish/gnugadu2/Makefile
+++ b/polish/gnugadu2/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= gnugadu2
-PORTVERSION= 2.2.5
+PORTVERSION= 2.2.8
CATEGORIES= polish net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ggadu
@@ -30,79 +30,126 @@ WANT_GNOME= yes
CONFLICTS= qhacc-[0-9]*
CONFIGURE_ARGS= \
+ --disable-esdtest \
--with-external-libgadu \
--with-static=no \
+ --with-aaway \
+ --with-external \
+ --with-gghist \
+ --with-gui \
+ --with-ignore \
+ --with-oss \
+ --with-sms \
+ --with-update \
--without-dbus \
+ --without-gnutls \
+ --without-perl \
--without-remote
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
+OPTIONS= TLEN "Enable Tlen.pl network plugin" off \
+ JABBER "Enable Jabber loudmouth plugin" off \
+ DOCKLET "Enable fd.o docklet plugin" on \
+ DOCKAPP "Enable WindowMaker dockapp plugin" off \
+ GTKSPELL "Enable GTKSpell checker" off \
+ XOSD "Enable On-Screen-Display messages" off \
+ ARTS "Build with aRts sound server" off \
+ ESOUND "Build with esound sound server" off
+
.include <bsd.port.pre.mk>
.if (${HAVE_GNOME:Mesound}!="")
WITH_ESOUND= yes
.endif
-.if !defined(WITH_GTKSPELL)
-CONFIGURE_ARGS+= --without-gtkspell
+# does not work with newer dbus versions
+#.if exists(${LOCALBASE}/lib/libdbus-1.so)
+#WITH_DBUS= yes
+#.endif
+
+.if exists(${X11BASE}/lib/libgtkspell.so)
+WITH_GTKSPELL= yes
+.endif
+
+.if defined(WITH_TLEN)
+LIB_DEPENDS+= tlen.1:${PORTSDIR}/polish/libtlen
+CONFIGURE_ARGS+= --with-tlen
+PLIST_SUB+= TLEN:=""
.else
-LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2
+CONFIGURE_ARGS+= --without-tlen
+PLIST_SUB+= TLEN:="@comment "
.endif
-.if !defined(WITH_DOCKLET)
+.if defined(WITH_JABBER)
+LIB_DEPENDS+= loudmouth-1.0:${PORTSDIR}/net/loudmouth
+CONFIGURE_ARGS+= --with-jabber
+PLIST_SUB+= JABBER:=""
+.else
+CONFIGURE_ARGS+= --without-jabber
+PLIST_SUB+= JABBER:="@comment "
+.endif
+
+.if defined(WITHOUT_DOCKLET)
CONFIGURE_ARGS+= --without-docklet-system-tray
PLIST_SUB+= DOCKLET:="@comment "
.else
+CONFIGURE_ARGS+= --with-docklet-system-tray
PLIST_SUB+= DOCKLET:=""
.endif
-.if !defined(WITH_DOCKAPP)
+.if defined(WITH_DOCKAPP)
+CONFIGURE_ARGS+= --with-docklet_dockapp
+PLIST_SUB+= DOCKAPP:=""
+.else
CONFIGURE_ARGS+= --without-docklet_dockapp
PLIST_SUB+= DOCKAPP:="@comment "
-.else
-PLIST_SUB+= DOCKAPP:=""
.endif
-.if !defined(WITH_TLEN)
-CONFIGURE_ARGS+= --without-tlen
-PLIST_SUB+= TLEN:="@comment "
+.if defined(WITH_GTKSPELL)
+LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2
+CONFIGURE_ARGS+= --with-gtkspell
.else
-LIB_DEPENDS+= tlen.1:${PORTSDIR}/polish/libtlen
-PLIST_SUB+= TLEN:=""
+CONFIGURE_ARGS+= --without-gtkspell
.endif
-.if !defined(WITH_JABBER)
-CONFIGURE_ARGS+= --without-jabber
-PLIST_SUB+= JABBER:="@comment "
-.else
-LIB_DEPENDS+= loudmouth-1.0:${PORTSDIR}/net/loudmouth
-PLIST_SUB+= JABBER:=""
-.endif
+#.if defined(WITH_DBUS)
+#LIB_DEPENDS+= dbus-1.1:${PORTSDIR}/devel/dbus
+#CONFIGURE_ARGS+= --with-dbus \
+# --with-dbus-dir=${LOCALBASE}/share/dbus-1/services
+#PLIST_SUB+= DBUS:=""
+#.else
+#CONFIGURE_ARGS+= --without-dbus
+#PLIST_SUB+= DBUS:="@comment "
+#.endif
-.if !defined(WITH_ESOUND)
-CONFIGURE_ARGS+= --without-esd
-PLIST_SUB+= ESOUND:="@comment "
-.else
+.if defined(WITH_ESOUND)
PKGNAMESUFFIX= -esound
USE_GNOME+= esound
+CONFIGURE_ARGS+= --with-esd
PLIST_SUB+= ESOUND:=""
+.else
+CONFIGURE_ARGS+= --without-esd
+PLIST_SUB+= ESOUND:="@comment "
.endif
-.if !defined(WITH_ARTS)
-CONFIGURE_ARGS+= --without-arts
-PLIST_SUB+= ARTS:="@comment "
-.else
+.if defined(WITH_ARTS)
LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts
+CONFIGURE_ARGS+= --with-arts
PLIST_SUB+= ARTS:=""
+.else
+CONFIGURE_ARGS+= --without-arts
+PLIST_SUB+= ARTS:="@comment "
.endif
-.if !defined(WITH_XOSD)
-CONFIGURE_ARGS+= --without-xosd
-PLIST_SUB+= XOSD:="@comment "
-.else
+.if defined(WITH_XOSD)
LIB_DEPENDS+= xosd.4:${PORTSDIR}/misc/xosd
+CONFIGURE_ARGS+= --with-xosd
PLIST_SUB+= XOSD:=""
+.else
+CONFIGURE_ARGS+= --without-xosd
+PLIST_SUB+= XOSD:="@comment "
.endif
.if (${HAVE_GNOME:Mgnomehier}!="")
@@ -116,40 +163,6 @@ PLIST_SUB+= KDE:=""
PLIST_SUB+= KDE:="@comment "
.endif
-pre-everything::
-.if defined(WITH_TLEN) || defined(WITH_JABBER) || defined(WITH_XOSD) || \
- defined(WITH_DOCKLET) || defined(WITH_DOCKAPP) || defined(WITH_GTKSPELL) || \
- defined(WITH_ARTS) || defined(WITH_ESOUND)
- @${ECHO_MSG}
- @${ECHO_MSG} " You can define following build options:"
- @${ECHO_MSG}
-.endif
-.if !defined(WITH_TLEN)
- @${ECHO_MSG} " WITH_TLEN to enable Tlen.pl network plugin"
-.endif
-.if !defined(WITH_JABBER)
- @${ECHO_MSG} " WITH_JABBER to enable Jabber loudmouth plugin"
-.endif
-.if !defined(WITH_XOSD)
- @${ECHO_MSG} " WITH_XOSD to enable On-Screen-Display messages"
-.endif
-.if !defined(WITH_DOCKLET)
- @${ECHO_MSG} " WITH_DOCKLET to enable freedesktop.org docklet plugin"
-.endif
-.if !defined(WITH_DOCKAPP)
- @${ECHO_MSG} " WITH_DOCKAPP to enable WindowMaker dockapp plugin"
-.endif
-.if !defined(WITH_ARTS)
- @${ECHO_MSG} " WITH_ARTS to build with aRts sound server"
-.endif
-.if !defined(WITH_ESOUND)
- @${ECHO_MSG} " WITH_ESOUND to build with esound sound server"
-.endif
-.if !defined(WITH_GTKSPELL)
- @${ECHO_MSG} " WITH_GTKSPELL to enable GTKSpell checker"
-.endif
- @${ECHO_MSG}
-
post-patch:
@${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},' ${WRKSRC}/gg2.desktop
@${REINPLACE_CMD} -e 's| -ldl|| ; s|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/lib/Makefile.in
diff --git a/polish/gnugadu2/distinfo b/polish/gnugadu2/distinfo
index b464088f5d1f..b519b2bb4b16 100644
--- a/polish/gnugadu2/distinfo
+++ b/polish/gnugadu2/distinfo
@@ -1,2 +1,2 @@
-MD5 (gg2-2.2.5.tar.bz2) = 9eff427afebf00e7a17350846775effd
-SIZE (gg2-2.2.5.tar.bz2) = 1087478
+MD5 (gg2-2.2.8.tar.bz2) = 6896f8b5d18004976952c8e5358d60ee
+SIZE (gg2-2.2.8.tar.bz2) = 1091976
diff --git a/polish/gnugadu2/files/patch-src_plugins_GUI_gui__preferences.c b/polish/gnugadu2/files/patch-src_plugins_GUI_gui__preferences.c
index ee388808ef6d..40f7bd7b0907 100644
--- a/polish/gnugadu2/files/patch-src_plugins_GUI_gui__preferences.c
+++ b/polish/gnugadu2/files/patch-src_plugins_GUI_gui__preferences.c
@@ -1,18 +1,25 @@
-
-$FreeBSD$
-
---- src/plugins/GUI/gui_preferences.c.orig
-+++ src/plugins/GUI/gui_preferences.c
-@@ -1315,6 +1315,8 @@
+--- src/plugins/GUI/gui_preferences.c.orig Fri Aug 12 10:21:26 2005
++++ src/plugins/GUI/gui_preferences.c Fri Oct 7 12:38:50 2005
+@@ -1329,6 +1329,9 @@
{
GSList *combo_theme_slist;
GSList *combo_icons_slist;
+ GSList *combo_skins_slist;
++ GSList *dict_slist;
+
if (plugins_updated)
{
GIOChannel *ch = g_io_channel_new_file(g_build_filename(config->configdir, "modules.load", NULL), "w",
-@@ -1433,7 +1435,7 @@
+@@ -1362,7 +1365,7 @@
+ ggadu_config_var_set(gui_handler, "use_spell", (gpointer) gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(entry)));
+
+ entry = g_object_get_data(G_OBJECT(chat_vbox), "combo_spell");
+- GSList *dict_slist = g_object_get_data(G_OBJECT(entry), "dictionary_slist");
++ dict_slist = g_object_get_data(G_OBJECT(entry), "dictionary_slist");
+
+ g_return_if_fail(entry != NULL);
+
+@@ -1448,7 +1451,7 @@
entry = g_object_get_data(G_OBJECT(adv_vbox), "combo_skins");
g_return_if_fail(entry != NULL);
diff --git a/polish/gnugadu2/files/patch-src_plugins_GUI_gui__userview.c b/polish/gnugadu2/files/patch-src_plugins_GUI_gui__userview.c
new file mode 100644
index 000000000000..ac00a5729ba5
--- /dev/null
+++ b/polish/gnugadu2/files/patch-src_plugins_GUI_gui__userview.c
@@ -0,0 +1,24 @@
+--- src/plugins/GUI/gui_userview.c.orig Fri Oct 7 12:31:16 2005
++++ src/plugins/GUI/gui_userview.c Fri Oct 7 12:34:25 2005
+@@ -88,6 +88,8 @@
+ GtkTreeIter * iter, gpointer data)
+ {
+ GGaduContact *k = NULL;
++ gchar *markup_descr;
++ gchar *markup;
+
+ gtk_tree_model_get(model, iter, 2, &k, -1);
+
+@@ -165,10 +167,10 @@
+ }
+ }
+
+- gchar *markup_descr = ggadu_config_var_get(gui_handler, "wrap_descr") ?
++ markup_descr = ggadu_config_var_get(gui_handler, "wrap_descr") ?
+ g_markup_escape_text(descr, strlen(descr)) :
+ g_markup_escape_text(k->status_descr, strlen(k->status_descr));
+- gchar *markup = g_strdup_printf("%s\n<small>%s</small>", k->nick, markup_descr);
++ markup = g_strdup_printf("%s\n<small>%s</small>", k->nick, markup_descr);
+ g_object_set(G_OBJECT(renderer), "text", NULL, "markup", markup, NULL);
+ g_free(markup_descr);
+ g_free(markup);
diff --git a/polish/gnugadu2/files/patch-src_plugins_aaway_aaway.c b/polish/gnugadu2/files/patch-src_plugins_aaway_aaway.c
new file mode 100644
index 000000000000..112a5c442903
--- /dev/null
+++ b/polish/gnugadu2/files/patch-src_plugins_aaway_aaway.c
@@ -0,0 +1,14 @@
+--- src/plugins/aaway/aaway.c.orig Fri Oct 7 13:04:11 2005
++++ src/plugins/aaway/aaway.c Fri Oct 7 13:06:34 2005
+@@ -250,8 +250,10 @@
+ static gpointer aaway_preferences(gpointer user_data)
+ {
+ GGaduDialog *d = ggadu_dialog_new(GGADU_DIALOG_CONFIG, _("Auto-Away Preferences"), "update config");
++ gchar *utf;
++
+ print_debug("%s: Preferences\n", "aaway");
+- gchar *utf = NULL;
++ utf = NULL;
+ ggadu_dialog_add_entry(d, GGADU_AAWAY_CONFIG_ENABLE_AUTOAWAY, _("Enable auto-away"), VAR_BOOL, (gpointer) ggadu_config_var_get(handler, "enable"), VAR_FLAG_ADVANCED);
+ ggadu_dialog_add_entry(d, GGADU_AAWAY_CONFIG_INTERVAL, _("Auto away after time (minutes)"), VAR_INT, (gpointer) ggadu_config_var_get(handler, "interval"), VAR_FLAG_NONE);
+ ggadu_dialog_add_entry(d, GGADU_AAWAY_CONFIG_ENABLE_AWAY_MSG, _("Enable away message"), VAR_BOOL,
diff --git a/polish/gnugadu2/files/patch-src_plugins_jabber_jabber__login.c b/polish/gnugadu2/files/patch-src_plugins_jabber_jabber__login.c
new file mode 100644
index 000000000000..cef565be92bc
--- /dev/null
+++ b/polish/gnugadu2/files/patch-src_plugins_jabber_jabber__login.c
@@ -0,0 +1,37 @@
+--- src/plugins/jabber/jabber_login.c.orig Fri Oct 7 12:45:32 2005
++++ src/plugins/jabber/jabber_login.c Fri Oct 7 13:08:49 2005
+@@ -42,6 +42,13 @@
+ gchar *jid = g_strdup(ggadu_config_var_get(jabber_handler, "jid"));
+ gchar *server = NULL;
+ gchar *portstr = NULL;
++ gchar **proxy_userpass;
++ gchar **proxy_hostport;
++ gchar **auth;
++ /* proxy setting taken from EKG project */
++ gint jabber_proxy_enabled;
++ gchar jabber_proxy_host;
++ gint jabber_proxy_port;
+
+ g_static_mutex_lock(&connect_mutex);
+
+@@ -98,15 +105,14 @@
+ lm_connection_set_keep_alive_rate(jabber_data.connection,30);
+
+ /* proxy setting taken from EKG project */
+- gint jabber_proxy_enabled = 0;
+- gchar *jabber_proxy_host = NULL;
+- gint jabber_proxy_port;
++ jabber_proxy_enabled = 0;
++ jabber_proxy_host = NULL;
+
+ if (ggadu_config_var_check(jabber_handler, "proxy"))
+ {
+- gchar **auth = array_make((gchar *) ggadu_config_var_get(jabber_handler, "proxy"), "@", 0, 0, 0);
+- gchar **proxy_userpass = NULL;
+- gchar **proxy_hostport = NULL;
++ auth = array_make((gchar *) ggadu_config_var_get(jabber_handler, "proxy"), "@", 0, 0, 0);
++ proxy_userpass = NULL;
++ proxy_hostport = NULL;
+
+ jabber_proxy_enabled = 1;
+
diff --git a/polish/gnugadu2/files/patch-src_plugins_jabber_jabber__plugin.c b/polish/gnugadu2/files/patch-src_plugins_jabber_jabber__plugin.c
new file mode 100644
index 000000000000..bb810098b2a2
--- /dev/null
+++ b/polish/gnugadu2/files/patch-src_plugins_jabber_jabber__plugin.c
@@ -0,0 +1,20 @@
+--- src/plugins/jabber/jabber_plugin.c.orig Fri Oct 7 12:41:09 2005
++++ src/plugins/jabber/jabber_plugin.c Fri Oct 7 12:44:32 2005
+@@ -1458,6 +1458,8 @@
+
+ void start_plugin()
+ {
++ GGaduStatusPrototype *sp;
++
+ p = g_new0(GGaduProtocol, 1);
+ p->display_name = g_strdup("Jabber");
+ p->protocol_uri = g_strdup("xmpp:");
+@@ -1505,7 +1507,7 @@
+ {
+ gint auto_status = (gint) ggadu_config_var_get(jabber_handler, "auto_status");
+ print_debug("jabber: autoconneting");
+- GGaduStatusPrototype *sp = ggadu_find_status_prototype(p, auto_status ? auto_status : JABBER_STATUS_AVAILABLE);
++ sp = ggadu_find_status_prototype(p, auto_status ? auto_status : JABBER_STATUS_AVAILABLE);
+ jabber_change_status(sp, FALSE);
+ GGaduStatusPrototype_free(sp);
+ }
diff --git a/polish/gnugadu2/pkg-descr b/polish/gnugadu2/pkg-descr
index 356273c4cc5f..9287659d29b2 100644
--- a/polish/gnugadu2/pkg-descr
+++ b/polish/gnugadu2/pkg-descr
@@ -1,9 +1,8 @@
-Gadu-Gadu protocol client for X11/GTK+, instant messenger
-targeting mainly users of Poland's based propietary IM network.
+Gnugadu2 is a modular instant messenger written with GTK+ targeted
+mainly at Polish users of propietary Gadu-Gadu network.
-GnuGadu2 is a complete rewrite featuring a plugin extensible
-architecture, that has opened it to the multiprotocol world.
-Transport plugins exist for Jabber, Tlen.pl, also for various
-sound servers and others.
+GnuGadu2 sports a plugin extensible architecture. Beside Gadu-Gadu
+it also supports Jabber, Tlen.pl, sending smses to Polish mobile
+phones, spell checking, works with several sound servers.
WWW: http://www.gnugadu.org
diff --git a/polish/gnugadu2/pkg-plist b/polish/gnugadu2/pkg-plist
index a03bb5737a0e..3c18b9be26e1 100644
--- a/polish/gnugadu2/pkg-plist
+++ b/polish/gnugadu2/pkg-plist
@@ -197,6 +197,7 @@ share/gg2/pixmaps/icons/bubble/gadu-gadu-offline-descr.png
share/gg2/pixmaps/icons/bubble/gadu-gadu-offline.png
share/gg2/pixmaps/icons/bubble/gadu-gadu-online-descr.png
share/gg2/pixmaps/icons/bubble/gadu-gadu-online.png
+share/gg2/pixmaps/icons/bubble/gadu-gadu.png
share/gg2/pixmaps/icons/bubble/icon.png
share/gg2/pixmaps/icons/classic/README
share/gg2/pixmaps/icons/classic/gadu-gadu-away-descr.png
@@ -207,7 +208,24 @@ share/gg2/pixmaps/icons/classic/gadu-gadu-offline-descr.png
share/gg2/pixmaps/icons/classic/gadu-gadu-offline.png
share/gg2/pixmaps/icons/classic/gadu-gadu-online-descr.png
share/gg2/pixmaps/icons/classic/gadu-gadu-online.png
+share/gg2/pixmaps/icons/classic/gadu-gadu.png
share/gg2/pixmaps/icons/classic/icon.png
+share/gg2/pixmaps/icons/classic/jabber-auth-from.png
+share/gg2/pixmaps/icons/classic/jabber-away.png
+share/gg2/pixmaps/icons/classic/jabber-dnd.png
+share/gg2/pixmaps/icons/classic/jabber-error.png
+share/gg2/pixmaps/icons/classic/jabber-noauth.png
+share/gg2/pixmaps/icons/classic/jabber-offline.png
+share/gg2/pixmaps/icons/classic/jabber-online.png
+share/gg2/pixmaps/icons/classic/jabber-xa.png
+share/gg2/pixmaps/icons/classic/jabber.png
+share/gg2/pixmaps/icons/classic/tlen-away.png
+share/gg2/pixmaps/icons/classic/tlen-beback.png
+share/gg2/pixmaps/icons/classic/tlen-chat.png
+share/gg2/pixmaps/icons/classic/tlen-invisible.png
+share/gg2/pixmaps/icons/classic/tlen-occupied.png
+share/gg2/pixmaps/icons/classic/tlen-offline.png
+share/gg2/pixmaps/icons/classic/tlen-online.png
share/gg2/pixmaps/icons/ghosts/README
share/gg2/pixmaps/icons/ghosts/gadu-gadu-away-descr.png
share/gg2/pixmaps/icons/ghosts/gadu-gadu-away.png
@@ -217,6 +235,7 @@ share/gg2/pixmaps/icons/ghosts/gadu-gadu-offline-descr.png
share/gg2/pixmaps/icons/ghosts/gadu-gadu-offline.png
share/gg2/pixmaps/icons/ghosts/gadu-gadu-online-descr.png
share/gg2/pixmaps/icons/ghosts/gadu-gadu-online.png
+share/gg2/pixmaps/icons/ghosts/gadu-gadu.png
share/gg2/pixmaps/icons/ghosts/icon.png
share/gg2/pixmaps/icons/modern/README
share/gg2/pixmaps/icons/modern/gadu-gadu-away-descr.png
@@ -227,6 +246,7 @@ share/gg2/pixmaps/icons/modern/gadu-gadu-offline-descr.png
share/gg2/pixmaps/icons/modern/gadu-gadu-offline.png
share/gg2/pixmaps/icons/modern/gadu-gadu-online-descr.png
share/gg2/pixmaps/icons/modern/gadu-gadu-online.png
+share/gg2/pixmaps/icons/modern/gadu-gadu.png
share/gg2/pixmaps/icons/modern/icon.png
share/gg2/pixmaps/icons/modern/tlen-away.png
share/gg2/pixmaps/icons/modern/tlen-beback.png
@@ -244,17 +264,7 @@ share/gg2/pixmaps/icons/rozgwiazda/gadu-gadu-offline.png
share/gg2/pixmaps/icons/rozgwiazda/gadu-gadu-online-descr.png
share/gg2/pixmaps/icons/rozgwiazda/gadu-gadu-online.png
share/gg2/pixmaps/icons/rozgwiazda/icon.png
-share/gg2/pixmaps/icons/rozgwiazda/jabber.png
share/gg2/pixmaps/icons/rozgwiazda/license.txt
-share/gg2/pixmaps/icons/rozgwiazda/sms.png
-share/gg2/pixmaps/icons/rozgwiazda/tlen.png
-share/gg2/pixmaps/icons/tlen-classic/tlen-away.png
-share/gg2/pixmaps/icons/tlen-classic/tlen-beback.png
-share/gg2/pixmaps/icons/tlen-classic/tlen-chat.png
-share/gg2/pixmaps/icons/tlen-classic/tlen-invisible.png
-share/gg2/pixmaps/icons/tlen-classic/tlen-occupied.png
-share/gg2/pixmaps/icons/tlen-classic/tlen-offline.png
-share/gg2/pixmaps/icons/tlen-classic/tlen-online.png
share/gg2/pixmaps/icq-away.png
share/gg2/pixmaps/icq-dnd.png
share/gg2/pixmaps/icq-freechat.png
@@ -315,7 +325,6 @@ share/locale/pl/LC_MESSAGES/gg2.mo
share/pixmaps/gg2.png
@dirrm share/gg2/themes
@dirrm share/gg2/sounds
-@dirrm share/gg2/pixmaps/icons/tlen-classic
@dirrm share/gg2/pixmaps/icons/rozgwiazda
@dirrm share/gg2/pixmaps/icons/modern
@dirrm share/gg2/pixmaps/icons/ghosts