ports/109492: [MAINTAINER] polish/kadu: update to 0.5.0

Marcin Wisnicki mwisnicki+freebsd at gmail.com
Sat Feb 24 17:20:05 UTC 2007


>Number:         109492
>Category:       ports
>Synopsis:       [MAINTAINER] polish/kadu: update to 0.5.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Feb 24 17:20:04 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Marcin Wisnicki
>Release:        FreeBSD 6.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD ghost.pnet.one.pl 6.2-STABLE FreeBSD 6.2-STABLE #5: Sat Feb 10 23:20:51 CET 2007
>Description:
- Update to 0.5.0
- Drop FreeBSD4 support
- Add precompiled header support for faster builds
- Add option to install old set of emoticons

Removed file(s):
- files/patch-autodownload
- files/patch-modules_Makefile.in

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- pl-kadu-0.5.0,1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/polish/kadu.orig/Makefile /usr/ports/polish/kadu/Makefile
--- /usr/ports/polish/kadu.orig/Makefile	Thu Nov 23 21:07:32 2006
+++ /usr/ports/polish/kadu/Makefile	Sat Feb 24 16:19:42 2007
@@ -6,14 +6,15 @@
 #
 
 PORTNAME=		kadu
-PORTVERSION=		0.4.3
-PORTREVISION=		2
+PORTVERSION=		0.5.0
 PORTEPOCH=		1
 CATEGORIES=		polish net-im
 MASTER_SITES=		http://www.kadu.net/download/stable/:kadu \
-			http://michal.gov.one.pl/tabs/:tabs \
+			http://www.kadu.net/download/additions/:additions \
+			http://www.kadu.net/download/modules_mirror/:modules \
 			http://scripts.one.pl/spellchecker/stable/${PORTVERSION}/:aspell
 DISTFILES=		${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:kadu
+DIST_SUBDIR=		kadu
 EXTRACT_ONLY=		${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
 
 MAINTAINER=		mwisnicki+freebsd at gmail.com
@@ -22,8 +23,11 @@
 LIB_DEPENDS=		gadu.3:${PORTSDIR}/polish/libgadu\
 			sndfile.1:${PORTSDIR}/audio/libsndfile
 
-TABS_MOD_DISTFILE=	tabs-kadu-0.4.0.tar.gz
-ASPELL_MOD_DISTFILE=	spellchecker-0.15.tar.gz
+TABS_MOD_DISTFILE=	tabs-20061223.tar.bz2
+ASPELL_MOD_DISTFILE=	spellchecker-0.20.tar.gz
+
+GG6_EMOTS_DISTFILE=	kompatybilne_z_GG6.tar.gz
+GG7_EMOTS_DISTFILE=	dodatkowe_emoty_GG7.tar.gz
 
 USE_BZIP2=		yes
 USE_GMAKE=		yes
@@ -45,6 +49,8 @@
 OPTIONS=	ASPELL	"Build spell checking module"	off \
 		ARTS	"Build aRts sound module"	off \
 		ESOUND	"Build Esound module"		off \
+		GG_EMOTS	"Install GG-compatible emoticons"	off \
+		PHEADERS	"Use precompiled headers to speed up build"	on \
 		TABS	"Build tabs module"		off
 
 .include <bsd.port.pre.mk>
@@ -53,6 +59,7 @@
 LIB_DEPENDS+=	pspell.16:${PORTSDIR}/textproc/aspell
 PLIST_SUB+=	ASPELL_MOD=""
 DISTFILES+=	${ASPELL_MOD_DISTFILE}:aspell
+KADU_SHARED_MODULES+=	spellchecker
 .else
 PLIST_SUB+=	ASPELL_MOD="@comment "
 .endif
@@ -60,6 +67,7 @@
 .if defined(WITH_ARTS)
 LIB_DEPENDS+=	artsc.0:${PORTSDIR}/audio/arts
 PLIST_SUB+=	ARTS_MOD=""
+KADU_SHARED_MODULES+=	arts_sound
 .else
 PLIST_SUB+=	ARTS_MOD="@comment "
 .endif
@@ -67,38 +75,57 @@
 .if defined(WITH_ESOUND)
 USE_GNOME+=	esound
 PLIST_SUB+=	ESOUND_MOD=""
+KADU_SHARED_MODULES+=	esd_sound
 .else
 PLIST_SUB+=	ESOUND_MOD="@comment "
 .endif
 
+.if defined(WITH_GG_EMOTS)
+PLIST_SUB+=	GG_EMOTS=""
+DISTFILES+=	${GG6_EMOTS_DISTFILE}:additions \
+		${GG7_EMOTS_DISTFILE}:additions
+.else
+PLIST_SUB+=	GG_EMOTS="@comment "
+.endif
+
+.if !defined(WITHOUT_PHEADERS)
+CONFIGURE_ARGS+=	--enable-pheaders
+USE_GCC=		3.4+
+.endif
+
 .if defined(WITH_TABS)
 PLIST_SUB+=	TABS_MOD=""
-DISTFILES+=	${TABS_MOD_DISTFILE}:tabs
+DISTFILES+=	${TABS_MOD_DISTFILE}:modules
+KADU_SHARED_MODULES+=	tabs
 .else
 PLIST_SUB+=	TABS_MOD="@comment "
 .endif
 
 post-patch:
-.if ${OSVERSION} < 500000
-	@${ECHO} "MODULE_LDFLAGS=\"-lcrypto\"" >> ${WRKSRC}/modules/encryption/spec
-.endif
+	@${ECHO} "#!/usr/bin/true" > ${WRKSRC}/varia/scripts/autodownload
 
-.if defined(WITH_ASPELL)
-	@${REINPLACE_CMD} -e 's|module_spellchecker=n|module_spellchecker=y|g' ${WRKSRC}/.config
-	@cd ${WRKSRC}/modules && ${TAR} -zxf ${DISTDIR}/${ASPELL_MOD_DISTFILE}
-.endif
+.for module in ${KADU_SHARED_MODULES}
+	@${REINPLACE_CMD} -e 's|module_${module}=n|module_${module}=m|g' ${WRKSRC}/.config
+.endfor
+
+.for module in ${KADU_STATIC_MODULES}
+	@${REINPLACE_CMD} -e 's|module_${module}=n|module_${module}=y|g' ${WRKSRC}/.config
+.endfor
 
-.if defined(WITH_ARTS)
-	@${REINPLACE_CMD} -e 's|module_arts_sound=n|module_arts_sound=y|g' ${WRKSRC}/.config
+.if defined(WITH_ASPELL)
+	@cd ${WRKSRC}/modules && ${TAR} -zxf ${_DISTDIR}/${ASPELL_MOD_DISTFILE}
 .endif
 
-.if defined(WITH_ESOUND)
-	@${REINPLACE_CMD} -e 's|module_esd_sound=n|module_esd_sound=y|g' ${WRKSRC}/.config
+.if defined(WITH_GG_EMOTS)
+	@${REINPLACE_CMD} -e 's|emoticons_gg6_compatible=n|emoticons_gg6_compatible=y|g' ${WRKSRC}/.config
+	@cd ${WRKSRC}/varia/themes/emoticons && \
+	${TAR} -zxf ${_DISTDIR}/${GG6_EMOTS_DISTFILE} && \
+	${MV} kompatybilne_z_GG6 gg6_compatible && \
+	cd gg6_compatible && ${TAR} -zxf ${_DISTDIR}/${GG7_EMOTS_DISTFILE}
 .endif
 
 .if defined(WITH_TABS)
-	@${REINPLACE_CMD} -e 's|module_tabs=n|module_tabs=y|g' ${WRKSRC}/.config
-	@cd ${WRKSRC}/modules && ${TAR} -zxf ${DISTDIR}/${TABS_MOD_DISTFILE}
+	@cd ${WRKSRC}/modules && ${TAR} -zxf ${_DISTDIR}/${TABS_MOD_DISTFILE}
 .endif
 
 post-install:
diff -ruN --exclude=CVS /usr/ports/polish/kadu.orig/distinfo /usr/ports/polish/kadu/distinfo
--- /usr/ports/polish/kadu.orig/distinfo	Thu Nov 23 21:07:32 2006
+++ /usr/ports/polish/kadu/distinfo	Sat Feb 24 16:07:34 2007
@@ -1,9 +1,15 @@
-MD5 (kadu-0.4.3.tar.bz2) = ef66bd638df30aee6338aae3b22dd194
-SHA256 (kadu-0.4.3.tar.bz2) = 3790048e8883533a0bc89119261035759278c6392b4f934c3528b729699ac0ed
-SIZE (kadu-0.4.3.tar.bz2) = 1181830
-MD5 (spellchecker-0.15.tar.gz) = 02495130277cc8a48430535a4107708d
-SHA256 (spellchecker-0.15.tar.gz) = 820127b09a0c4c8c9e8e7c1124d4cde1860b21461d1c7744276be0ccc11751d9
-SIZE (spellchecker-0.15.tar.gz) = 9303
-MD5 (tabs-kadu-0.4.0.tar.gz) = 21eec41cfc0883f41a49850969eef328
-SHA256 (tabs-kadu-0.4.0.tar.gz) = 2e0e76528b0d4960b08e0afbb72b962d80b6e361945ab735319b9ebd170615c5
-SIZE (tabs-kadu-0.4.0.tar.gz) = 12125
+MD5 (kadu/kadu-0.5.0.tar.bz2) = 895f7c88d36dbb188e8bc26664fbf430
+SHA256 (kadu/kadu-0.5.0.tar.bz2) = 32f0e5de02a808b7a1125808d04a980a2a63b484008f4f05891fe0ab6f5771a4
+SIZE (kadu/kadu-0.5.0.tar.bz2) = 1310892
+MD5 (kadu/spellchecker-0.20.tar.gz) = 384e3e039e3c1022b36780f9067caf4d
+SHA256 (kadu/spellchecker-0.20.tar.gz) = 05987e4a4c5767c4881328ede23b43c4078f2b1cb1143221fd25804c0e531868
+SIZE (kadu/spellchecker-0.20.tar.gz) = 9459
+MD5 (kadu/kompatybilne_z_GG6.tar.gz) = 16cbc9e657549b35ee8d8a32f4b6a47d
+SHA256 (kadu/kompatybilne_z_GG6.tar.gz) = f8a84acd8512fd8fc38e394aa564e6b6d7ec2e9fe9864bdf0c5b8f2edb23da6f
+SIZE (kadu/kompatybilne_z_GG6.tar.gz) = 254637
+MD5 (kadu/dodatkowe_emoty_GG7.tar.gz) = f9b0404cc1e1599ddf5eda4c15f1abce
+SHA256 (kadu/dodatkowe_emoty_GG7.tar.gz) = aebeb45b6ac9139620032436f7b565aa5729a0165d1c361a473c1195b8807450
+SIZE (kadu/dodatkowe_emoty_GG7.tar.gz) = 113257
+MD5 (kadu/tabs-20061223.tar.bz2) = bda5770b0ba6930c226ae59d74d266e2
+SHA256 (kadu/tabs-20061223.tar.bz2) = e31e9b9981200e65ef2a9c8a55f444705765b50590f498568c683e3f103abdf7
+SIZE (kadu/tabs-20061223.tar.bz2) = 12027
diff -ruN --exclude=CVS /usr/ports/polish/kadu.orig/files/patch-autodownload /usr/ports/polish/kadu/files/patch-autodownload
--- /usr/ports/polish/kadu.orig/files/patch-autodownload	Sun Nov 19 18:58:31 2006
+++ /usr/ports/polish/kadu/files/patch-autodownload	Thu Jan  1 01:00:00 1970
@@ -1,8 +0,0 @@
---- varia/scripts/autodownload.orig	Fri Nov  3 00:16:11 2006
-+++ varia/scripts/autodownload	Fri Nov  3 00:16:28 2006
-@@ -1,4 +1,5 @@
- #!/bin/sh
-+exit 0
- if test $# != 2; then
- 	echo
- 	echo "Downloads and unpacks Kadu module, icon theme, sound theme or other."
diff -ruN --exclude=CVS /usr/ports/polish/kadu.orig/files/patch-kadu_Makefile.in /usr/ports/polish/kadu/files/patch-kadu_Makefile.in
--- /usr/ports/polish/kadu.orig/files/patch-kadu_Makefile.in	Sun Oct 23 08:18:24 2005
+++ /usr/ports/polish/kadu/files/patch-kadu_Makefile.in	Sat Feb 24 16:07:56 2007
@@ -1,38 +1,21 @@
---- kadu/Makefile.in	Tue Oct 11 02:16:57 2005
-+++ kadu/Makefile.in	Tue Oct 18 20:35:30 2005
-@@ -517,35 +517,24 @@
+--- kadu/Makefile.in.orig	Fri Nov 10 20:16:44 2006
++++ kadu/Makefile.in	Fri Feb  9 19:59:29 2007
+@@ -880,7 +880,8 @@
  install-data-local:
- 	$(mkinstalldirs) "$(DESTDIR)/$(includedir)/kadu/"
- 	$(INSTALL_DATA) *.h "$(DESTDIR)/$(includedir)/kadu/"
+ #	$(mkinstalldirs) "$(DESTDIR)/$(includedir)/kadu/"
+ #	$(INSTALL_DATA) *.h "$(DESTDIR)/$(includedir)/kadu/"
 -	@if test -w "$(DESTDIR)$(datadir)"; then \
--		$(mkinstalldirs) "$(DESTDIR)$(datadir)/applnk/Internet/"; \
--		echo "[Desktop Entry]" > "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
--		echo "Type=Application" >> "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
--		echo "Exec=$(bindir)/kadu" >> "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
--		echo "Icon=kadu.png" >> "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
--		echo "MiniIcon=kadu-16.png" >> "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
--		echo "Terminal=0" >> "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
--		echo "Name=Kadu" >> "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
--		$(mkinstalldirs) "$(DESTDIR)$(datadir)/pixmaps/"; \
--		$(INSTALL_DATA) hi48-app-kadu.png "$(DESTDIR)$(datadir)/pixmaps/kadu-48.png"; \
--		$(INSTALL_DATA) hi32-app-kadu.png "$(DESTDIR)$(datadir)/pixmaps/kadu.png"; \
--		$(INSTALL_DATA) hi24-app-kadu.png "$(DESTDIR)$(datadir)/pixmaps/kadu-24.png"; \
--		$(INSTALL_DATA) hi22-app-kadu.png "$(DESTDIR)$(datadir)/pixmaps/kadu-22.png"; \
--		$(INSTALL_DATA) hi16-app-kadu.png "$(DESTDIR)$(datadir)/pixmaps/kadu-16.png"; \
--		echo ""; \
--		echo "Icons installed to $(DESTDIR)$(datadir)/pixmaps"; \
--		echo "Link(kadu.desktop) installed to $(DESTDIR)$(datadir)/applnk/Internet"; \
--		echo ""; \
--	else \
--		echo "";\
--		echo "         *******************************************************************"; \
--		echo "         *                                                                 *"; \
--		echo "         *          You don't have permission to write $(datadir)          *"; \
--		echo "         *          Icons and link(kadu.desktop) won't be installed        *"; \
--		echo "         *                                                                 *"; \
--		echo "         *******************************************************************"; \
--		echo $(DESTDIR)"";\
--	fi;
++	@if false; then \
++	if test -w "$(DESTDIR)$(datadir)"; then \
+ 		$(mkinstalldirs) "$(DESTDIR)$(datadir)/applnk/Internet/"; \
+ 		echo "[Desktop Entry]" > "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
+ 		echo "Type=Application" >> "$(DESTDIR)$(datadir)/applnk/Internet/kadu.desktop"; \
+@@ -911,7 +912,31 @@
+ 		echo "         *                                                                 *"; \
+ 		echo "         *******************************************************************"; \
+ 		echo $(DESTDIR)"";\
++	fi; \
+ 	fi;
 +	echo "[Desktop Entry]" > "$(srcdir)/kadu.desktop"
 +	echo "Encoding=UTF-8" >> "$(srcdir)/kadu.desktop"
 +	echo "Categories=Application;Network;" >> "$(srcdir)/kadu.desktop"
@@ -41,6 +24,10 @@
 +	echo "Icon=kadu.png" >> "$(srcdir)/kadu.desktop"
 +	echo "Terminal=false" >> "$(srcdir)/kadu.desktop"
 +	echo "Name=Kadu" >> "$(srcdir)/kadu.desktop"
++	$(mkinstalldirs) $(DESTDIR)$(datadir)/icons/hicolor/128x128/apps
++	$(INSTALL_DATA) hi128-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/128x128/apps/kadu.png"
++	$(mkinstalldirs) $(DESTDIR)$(datadir)/icons/hicolor/64x64/apps
++	$(INSTALL_DATA) hi64-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/64x64/apps/kadu.png"
 +	$(mkinstalldirs) $(DESTDIR)$(datadir)/icons/hicolor/48x48/apps
 +	$(INSTALL_DATA) hi48-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/48x48/apps/kadu.png"
 +	$(mkinstalldirs) $(DESTDIR)$(datadir)/icons/hicolor/32x32/apps
@@ -51,6 +38,7 @@
 +	$(INSTALL_DATA) hi22-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/22x22/apps/kadu.png"
 +	$(mkinstalldirs) $(DESTDIR)$(datadir)/icons/hicolor/16x16/apps
 +	$(INSTALL_DATA) hi16-app-kadu.png "$(DESTDIR)$(datadir)/icons/hicolor/16x16/apps/kadu.png"
++
  
  uninstall-local:
- 	rm -f "$(DESTDIR)/$(includedir)/kadu"/*.h
+ 	rm -f "$(DESTDIR)$(includedir)/kadu"/*.h
diff -ruN --exclude=CVS /usr/ports/polish/kadu.orig/files/patch-modules_Makefile.in /usr/ports/polish/kadu/files/patch-modules_Makefile.in
--- /usr/ports/polish/kadu.orig/files/patch-modules_Makefile.in	Sun Oct 23 08:18:24 2005
+++ /usr/ports/polish/kadu/files/patch-modules_Makefile.in	Thu Jan  1 01:00:00 1970
@@ -1,12 +0,0 @@
---- modules/Makefile.in	Tue Oct 11 02:16:57 2005
-+++ modules/Makefile.in	Tue Oct 18 19:34:54 2005
-@@ -295,7 +295,8 @@
- 		if test -d translations; then \
- 			cd translations && \
- 			for trans in *.ts; do \
--				if [ ! -e $${trans//\ts/qm} ] || test $$trans -nt $${trans//\ts/qm}; then \
-+				trans_qm="$$(echo $${trans} | sed -e 's/\.ts$$/\.qm/')"; \
-+				if [ ! -e $${trans_qm} ] || test $$trans -nt $${trans_qm}; then \
- 					$(QT_LRELEASE_DIR)/lrelease $$trans; \
- 				fi; \
- 			done && \
diff -ruN --exclude=CVS /usr/ports/polish/kadu.orig/pkg-plist /usr/ports/polish/kadu/pkg-plist
--- /usr/ports/polish/kadu.orig/pkg-plist	Thu Nov 23 21:07:32 2006
+++ /usr/ports/polish/kadu/pkg-plist	Sat Feb 24 16:07:59 2007
@@ -2,17 +2,37 @@
 bin/kadu-config
 bin/kadu-mozilla
 include/kadu/about.h
+include/kadu/action.h
 include/kadu/chat.h
+include/kadu/chat_colors.h
+include/kadu/chat_manager.h
+include/kadu/chat_manager_slots.h
+include/kadu/chat_message.h
+include/kadu/chat_styles.h
+include/kadu/color_selector.h
 include/kadu/config_dialog.h
 include/kadu/config_file.h
+include/kadu/custom_input.h
 include/kadu/debug.h
+include/kadu/dnshandler.h
+include/kadu/dockarea.h
 include/kadu/emoticons.h
 include/kadu/expimp.h
+include/kadu/gadu-private.h
 include/kadu/gadu.h
+include/kadu/gadu_images_manager.h
+include/kadu/gadu_rich_text.h
+include/kadu/groups_manager.h
 include/kadu/history.h
+include/kadu/html_document.h
+include/kadu/http_client.h
+include/kadu/icons_manager.h
 include/kadu/ignore.h
 include/kadu/kadu-config.h
 include/kadu/kadu.h
+include/kadu/kadu_parser.h
+include/kadu/kadu_splitter.h
+include/kadu/kadu_text_browser.h
 include/kadu/message_box.h
 include/kadu/misc.h
 include/kadu/modules.h
@@ -30,6 +50,7 @@
 include/kadu/modules/hint.h
 include/kadu/modules/hint_manager.h
 include/kadu/modules/hint_manager_slots.h
+include/kadu/modules/migration.h
 include/kadu/modules/notify.h
 include/kadu/modules/notify_slots.h
 include/kadu/modules/player_external.h
@@ -45,16 +66,41 @@
 include/kadu/modules/window_notify.h
 include/kadu/modules/wizard.h
 include/kadu/modules/x11_docking.h
-include/kadu/pending_events.h
 include/kadu/pending_msgs.h
 include/kadu/personal_info.h
+include/kadu/protocol.h
+include/kadu/protocols_manager.h
 include/kadu/search.h
 include/kadu/status.h
 include/kadu/tabbar.h
+include/kadu/themes.h
+include/kadu/toolbar.h
+include/kadu/toolbutton.h
 include/kadu/updates.h
 include/kadu/userbox.h
+include/kadu/usergroup.h
 include/kadu/userinfo.h
+include/kadu/userlist-private.h
 include/kadu/userlist.h
+include/kadu/userlistelement.h
+lib/kadu/modules/account_management.so
+lib/kadu/modules/autoaway.so
+lib/kadu/modules/autoresponder.so
+lib/kadu/modules/config_wizard.so
+lib/kadu/modules/dcc.so
+lib/kadu/modules/default_sms.so
+lib/kadu/modules/dsp_sound.so
+lib/kadu/modules/encryption.so
+lib/kadu/modules/esd_sound.so
+lib/kadu/modules/ext_sound.so
+lib/kadu/modules/hints.so
+lib/kadu/modules/migration.so
+lib/kadu/modules/sms.so
+lib/kadu/modules/spellchecker.so
+lib/kadu/modules/tabs.so
+lib/kadu/modules/voice.so
+lib/kadu/modules/window_notify.so
+lib/kadu/modules/x11_docking.so
 %%DATADIR%%/AUTHORS
 %%DATADIR%%/COPYING
 %%DATADIR%%/ChangeLog
@@ -62,13 +108,9 @@
 %%DATADIR%%/README
 %%DATADIR%%/THANKS
 %%DATADIR%%/modules/account_management.desc
-%%DATADIR%%/modules/account_management.so
 %%DATADIR%%/modules/autoaway.desc
-%%DATADIR%%/modules/autoaway.so
 %%DATADIR%%/modules/autoresponder.desc
-%%DATADIR%%/modules/autoresponder.so
 %%DATADIR%%/modules/config_wizard.desc
-%%DATADIR%%/modules/config_wizard.so
 %%DATADIR%%/modules/data/config_wizard/joi/brak.jpg
 %%DATADIR%%/modules/data/config_wizard/ronk2/Blocking.png
 %%DATADIR%%/modules/data/config_wizard/ronk2/Busy (d.).png
@@ -84,21 +126,15 @@
 %%DATADIR%%/modules/data/config_wizard/ronk2/tlo.jpg
 %%DATADIR%%/modules/data/config_wizard/ronk2/tux.png
 %%DATADIR%%/modules/dcc.desc
-%%DATADIR%%/modules/dcc.so
 %%DATADIR%%/modules/default_sms.desc
-%%DATADIR%%/modules/default_sms.so
 %%DATADIR%%/modules/docking.desc
 %%DATADIR%%/modules/dsp_sound.desc
-%%DATADIR%%/modules/dsp_sound.so
 %%DATADIR%%/modules/encryption.desc
-%%DATADIR%%/modules/encryption.so
 %%DATADIR%%/modules/ext_sound.desc
-%%DATADIR%%/modules/ext_sound.so
 %%DATADIR%%/modules/hints.desc
-%%DATADIR%%/modules/hints.so
+%%DATADIR%%/modules/migration.desc
 %%DATADIR%%/modules/notify.desc
 %%DATADIR%%/modules/sms.desc
-%%DATADIR%%/modules/sms.so
 %%DATADIR%%/modules/sound.desc
 %%DATADIR%%/modules/translations/account_management_de.qm
 %%DATADIR%%/modules/translations/account_management_fr.qm
@@ -144,6 +180,10 @@
 %%DATADIR%%/modules/translations/hints_fr.qm
 %%DATADIR%%/modules/translations/hints_it.qm
 %%DATADIR%%/modules/translations/hints_pl.qm
+%%DATADIR%%/modules/translations/migration_de.qm
+%%DATADIR%%/modules/translations/migration_fr.qm
+%%DATADIR%%/modules/translations/migration_it.qm
+%%DATADIR%%/modules/translations/migration_pl.qm
 %%DATADIR%%/modules/translations/notify_de.qm
 %%DATADIR%%/modules/translations/notify_fr.qm
 %%DATADIR%%/modules/translations/notify_it.qm
@@ -169,280 +209,684 @@
 %%DATADIR%%/modules/translations/x11_docking_it.qm
 %%DATADIR%%/modules/translations/x11_docking_pl.qm
 %%DATADIR%%/modules/voice.desc
-%%DATADIR%%/modules/voice.so
 %%DATADIR%%/modules/window_notify.desc
-%%DATADIR%%/modules/window_notify.so
 %%DATADIR%%/modules/x11_docking.desc
-%%DATADIR%%/modules/x11_docking.so
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/8P.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/8P_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/beksa.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/beksa_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/bije.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/bije_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/brawa.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/brawa_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/buja_w_oblokach.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/buja_w_oblokach_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/bukiet.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/bukiet_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/chatownik.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/chatownik_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/cmok.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/cmok_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/dobani.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/dostal.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/dostal_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/dresiarz.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/dresiarz_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/drink.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/drink_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/emots.txt
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/fuck.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/fuck_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gafa.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gafa_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gazeta.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gazeta_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gool.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gool_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gra.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/gra_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/heej.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/heej_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/hmmm.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/hmmm_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/jablko.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/je_pizze.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/je_pizze_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/kawa.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/krecka_dostal.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/krecka_dostal_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/kwiatek.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/lol.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/milosc.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/mruga.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/mruga_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/mutny.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/niee.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/niee_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/nonono.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/nonono_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/obiad.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/obiad_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/ok.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/okularnik.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/okularnik_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/olaboga.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/olaboga_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/onajego.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/onajego_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/pada.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/pada_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/palacz.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/palacz_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/papa.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/papa_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/piwko2.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/piwko2_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/prezent.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/prysznic.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/prysznic_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/puknijsie.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/puknijsie_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/rotfl.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/rotfl_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/serce.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/serducho.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/serducho_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/smutny.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/smutny_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/snieg.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/snieg_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/spioch.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/spioch_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/szampan.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/szampan_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/telefon.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/telefon_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/tiaaa.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/tiaaa_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/tort.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/tort_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/usta.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wanna.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wanna_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wc.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wc_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wesoly.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wesoly_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/winko.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wstydnis.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/wstydnis_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/z_jezorem.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/z_jezorem_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zab.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zab_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zakochany.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zakochany_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zdziwko.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zdziwko_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zegar.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zegar_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/ziew.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/ziew_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zly.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zly_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/1/zniesmaczony.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/3m_sie.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/3m_sie_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/aniolek.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/aniolek_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/boje_sie.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/boje_sie_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/boks.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/boks_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/calus.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/calus_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/cfaniak.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/cfaniak_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/chytry.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/chytry_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/cisza.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/cisza_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/cmok.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/cmok_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/co.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/co_jest.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/co_jest_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/co_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/czarodziej.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/czas.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/czas_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/czytaj.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/czytaj_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/diabelek.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/diabelek_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/dupa.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/dupa_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/emots.txt
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/faja.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/faja_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ganja.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ganja_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/glaszcze.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/glaszcze_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/glupek.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/glupek2.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/glupek2_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/hahaha.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/hahaha_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jem.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jem_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jezyk1.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jezyk1_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jezyk2.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jezyk2_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jupi.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/jupi_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/killer.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/killer_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/klotnia.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/klotnia_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/krzywy.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/kwasny.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/list.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/list_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/lol.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/lol_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/menu.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/nauka.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/nauka_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/nie.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/nie_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/nie_powiem.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/oczko.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/oczko2.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/oczko2_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/oczko_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/oczy.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/oczy_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ok.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ok2.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ok2_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ok_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/paker.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/paker_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/papa.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/papa_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/peace.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/peace_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/pisze.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/pisze_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/piwo.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/piwo_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/placze.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/placze_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/pomocy.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/pomocy_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/przytul.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/przytul_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/pytajnik.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/pytajnik_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/rotfl.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/rotfl_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/roza.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/roza_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/sciana.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/sciana_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/serduszka.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/serduszka2.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/serduszka2_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/serduszka_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/sex.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/sex_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/slonko.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/slonko_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/smutny.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/smutny_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/soczek.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/soczek_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/spie.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/spie_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/spoko.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/spoko_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/stop.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/stop_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/tancze.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/tancze_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/telefon.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/telefon_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/tuptup.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/tuptup_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/uczen.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/uczen_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/uscisk.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/uscisk_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/usmiech.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/usmiech2.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/usmiech2_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/usmiech_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/wow.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/wow_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/wsciekly.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/wsciekly_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/wykrzyknik.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/wykrzyknik_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ysz.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/ysz_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zawstydzony.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zawstydzony_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zeby.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zeby_na.GIF
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zly.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zly_na.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zygi.gif
-%%DATADIR%%/themes/emoticons/gadu-gadu/2/zygi_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/8P.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/8P_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/beksa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/beksa_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/bije.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/bije_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/brawa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/brawa_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/buja_w_oblokach.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/buja_w_oblokach_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/bukiet.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/bukiet_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/chatownik.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/chatownik_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/cmok.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/cmok_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/dobani.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/dostal.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/dostal_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/dresiarz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/dresiarz_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/drink.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/drink_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/emots.txt
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/fuck.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/fuck_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gafa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gafa_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gazeta.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gazeta_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gool.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gool_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gra.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/gra_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/heej.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/heej_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/hmmm.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/hmmm_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/jablko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/je_pizze.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/je_pizze_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/kawa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/krecka_dostal.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/krecka_dostal_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/kwiatek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/lol.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/milosc.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/mruga.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/mruga_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/mutny.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/niee.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/niee_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/nonono.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/nonono_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/obiad.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/obiad_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/ok.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/okularnik.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/okularnik_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/olaboga.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/olaboga_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/onajego.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/onajego_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/pada.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/pada_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/palacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/palacz_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/papa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/papa_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/piwko2.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/piwko2_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/prezent.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/prysznic.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/prysznic_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/puknijsie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/puknijsie_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/rotfl.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/rotfl_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/serce.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/serducho.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/serducho_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/smutny.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/smutny_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/snieg.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/snieg_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/spioch.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/spioch_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/szampan.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/szampan_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/telefon.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/telefon_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/tiaaa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/tiaaa_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/tort.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/tort_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/usta.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wanna.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wanna_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wc.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wc_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wesoly.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wesoly_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/winko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wstydnis.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/wstydnis_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/z_jezorem.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/z_jezorem_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zab.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zab_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zakochany.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zakochany_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zdziwko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zdziwko_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zegar.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zegar_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/ziew.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/ziew_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zly.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zly_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/1/zniesmaczony.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/3m_sie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/3m_sie_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/aniolek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/aniolek_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/boje_sie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/boje_sie_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/boks.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/boks_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/calus.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/calus_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/cfaniak.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/cfaniak_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/chytry.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/chytry_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/cisza.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/cisza_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/cmok.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/cmok_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/co.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/co_jest.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/co_jest_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/co_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/czarodziej.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/czas.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/czas_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/czytaj.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/czytaj_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/diabelek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/diabelek_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/dupa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/dupa_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/emots.txt
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/faja.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/faja_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ganja.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ganja_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/glaszcze.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/glaszcze_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/glupek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/glupek2.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/glupek2_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/hahaha.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/hahaha_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jem.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jem_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jezyk1.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jezyk1_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jezyk2.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jezyk2_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jupi.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/jupi_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/killer.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/killer_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/klotnia.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/klotnia_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/krzywy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/kwasny.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/list.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/list_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/lol.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/lol_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/menu.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/nauka.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/nauka_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/nie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/nie_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/nie_powiem.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/oczko.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/oczko2.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/oczko2_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/oczko_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/oczy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/oczy_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ok.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ok2.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ok2_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ok_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/paker.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/paker_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/papa.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/papa_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/peace.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/peace_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/pisze.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/pisze_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/piwo.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/piwo_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/placze.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/placze_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/pomocy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/pomocy_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/przytul.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/przytul_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/pytajnik.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/pytajnik_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/rotfl.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/rotfl_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/roza.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/roza_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/sciana.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/sciana_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/serduszka.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/serduszka2.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/serduszka2_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/serduszka_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/sex.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/sex_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/slonko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/slonko_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/smutny.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/smutny_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/soczek.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/soczek_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/spie.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/spie_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/spoko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/spoko_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/stop.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/stop_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/tancze.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/tancze_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/telefon.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/telefon_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/tuptup.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/tuptup_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/uczen.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/uczen_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/uscisk.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/uscisk_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/usmiech.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/usmiech2.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/usmiech2_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/usmiech_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/wow.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/wow_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/wsciekly.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/wsciekly_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/wykrzyknik.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/wykrzyknik_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ysz.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/ysz_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zawstydzony.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zawstydzony_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zeby.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zeby_na.GIF
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zly.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zly_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zygi.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/2/zygi_na.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_aparat.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_beczy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_bezradny.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_boisie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_buziak.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_buzki.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_cwaniak.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_dobani.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_dokuczacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_figielek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_foch.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_glupek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_haha.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_hejka.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_hura.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_jezyk.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_jezyk_oko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_klotnia.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_kotek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_krzyk.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_kwadr.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_kwiatek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_luzik.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_milczek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_mniam.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_muza.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_mysli.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_nerwus.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_nie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_oczko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_oklasky.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_okok.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_ostr.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_paluszkiem.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_papa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_papa2.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_pies.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_plask.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_plotki.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_pocieszacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_prosi.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_rotfl.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_smutny.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_spadaj.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_stres.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_szok.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_tak.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_uoeee.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_usmiech.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_w8.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_wnerw.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_wysmiewacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_yyyy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_zacieszacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_zakupy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_zalamka.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_zawstydzony.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_zlezkawoku.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_zly.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/_zmeczony.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/aparat.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/beczy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/bezradny.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/boisie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/buziak.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/buzki.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/cwaniak.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/czytaj.txt
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/dobani.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/dokuczacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/emotos.diff
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/emots.txt
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/figielek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/foch.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/glupek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/haha.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/hejka.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/hura.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/jezyk.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/jezyk_oko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/klotnia.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/kotek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/krzyk.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/kwadr.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/kwiatek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/luzik.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/milczek.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/mniam.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/muza.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/mysli.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/nerwus.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/nie.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/oczko.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/oklasky.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/okok.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/ostr.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/paluszkiem.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/papa.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/papa2.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/pies.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/plask.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/plotki.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/pocieszacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/prosi.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/rotfl.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/smutny.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/spadaj.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/stres.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/szok.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/tak.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/uoeee.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/usmiech.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/w8.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/wnerw.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/wysmiewacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/yyyy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/zacieszacz.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/zakupy.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/zalamka.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/zawstydzony.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/zlezkawoku.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/zly.gif
+%%GG_EMOTS%%%%DATADIR%%/themes/emoticons/gg6_compatible/3/zmeczony.gif
+%%DATADIR%%/themes/emoticons/penguins/3m_sie.gif
+%%DATADIR%%/themes/emoticons/penguins/8p.gif
+%%DATADIR%%/themes/emoticons/penguins/_3m_sie.gif
+%%DATADIR%%/themes/emoticons/penguins/_8p.gif
+%%DATADIR%%/themes/emoticons/penguins/_aniolek.gif
+%%DATADIR%%/themes/emoticons/penguins/_aparat.gif
+%%DATADIR%%/themes/emoticons/penguins/_beczy.gif
+%%DATADIR%%/themes/emoticons/penguins/_bezradny.gif
+%%DATADIR%%/themes/emoticons/penguins/_bije.gif
+%%DATADIR%%/themes/emoticons/penguins/_boisie.gif
+%%DATADIR%%/themes/emoticons/penguins/_boks.gif
+%%DATADIR%%/themes/emoticons/penguins/_buja_w_oblokach.gif
+%%DATADIR%%/themes/emoticons/penguins/_bukiet.gif
+%%DATADIR%%/themes/emoticons/penguins/_buziak.gif
+%%DATADIR%%/themes/emoticons/penguins/_buzki.gif
+%%DATADIR%%/themes/emoticons/penguins/_chatownik.gif
+%%DATADIR%%/themes/emoticons/penguins/_chytry.gif
+%%DATADIR%%/themes/emoticons/penguins/_cisza.gif
+%%DATADIR%%/themes/emoticons/penguins/_cmok.gif
+%%DATADIR%%/themes/emoticons/penguins/_co.gif
+%%DATADIR%%/themes/emoticons/penguins/_co_jest.gif
+%%DATADIR%%/themes/emoticons/penguins/_cwaniak.gif
+%%DATADIR%%/themes/emoticons/penguins/_czarodziej.gif
+%%DATADIR%%/themes/emoticons/penguins/_czytaj.gif
+%%DATADIR%%/themes/emoticons/penguins/_diabelek.gif
+%%DATADIR%%/themes/emoticons/penguins/_dobani.gif
+%%DATADIR%%/themes/emoticons/penguins/_dokuczacz.gif
+%%DATADIR%%/themes/emoticons/penguins/_dostal.gif
+%%DATADIR%%/themes/emoticons/penguins/_dresiarz.gif
+%%DATADIR%%/themes/emoticons/penguins/_drink.gif
+%%DATADIR%%/themes/emoticons/penguins/_dupa.gif
+%%DATADIR%%/themes/emoticons/penguins/_figielek.gif
+%%DATADIR%%/themes/emoticons/penguins/_foch.gif
+%%DATADIR%%/themes/emoticons/penguins/_gafa.gif
+%%DATADIR%%/themes/emoticons/penguins/_ganja.gif
+%%DATADIR%%/themes/emoticons/penguins/_gazeta.gif
+%%DATADIR%%/themes/emoticons/penguins/_glaszcze.gif
+%%DATADIR%%/themes/emoticons/penguins/_glupek.gif
+%%DATADIR%%/themes/emoticons/penguins/_glupek2.gif
+%%DATADIR%%/themes/emoticons/penguins/_gool.gif
+%%DATADIR%%/themes/emoticons/penguins/_gra.gif
+%%DATADIR%%/themes/emoticons/penguins/_haha.gif
+%%DATADIR%%/themes/emoticons/penguins/_hahaha.gif
+%%DATADIR%%/themes/emoticons/penguins/_hejka.gif
+%%DATADIR%%/themes/emoticons/penguins/_hura.gif
+%%DATADIR%%/themes/emoticons/penguins/_je_pizze.gif
+%%DATADIR%%/themes/emoticons/penguins/_jem.gif
+%%DATADIR%%/themes/emoticons/penguins/_jezyk.gif
+%%DATADIR%%/themes/emoticons/penguins/_jezyk_oko.gif
+%%DATADIR%%/themes/emoticons/penguins/_kawa.gif
+%%DATADIR%%/themes/emoticons/penguins/_killer.gif
+%%DATADIR%%/themes/emoticons/penguins/_klotnia.gif
+%%DATADIR%%/themes/emoticons/penguins/_kotek.gif
+%%DATADIR%%/themes/emoticons/penguins/_krecka_dostal.gif
+%%DATADIR%%/themes/emoticons/penguins/_krzyk.gif
+%%DATADIR%%/themes/emoticons/penguins/_kwiatek.gif
+%%DATADIR%%/themes/emoticons/penguins/_list.gif
+%%DATADIR%%/themes/emoticons/penguins/_lol2.gif
+%%DATADIR%%/themes/emoticons/penguins/_luzik.gif
+%%DATADIR%%/themes/emoticons/penguins/_milczek.gif
+%%DATADIR%%/themes/emoticons/penguins/_milosc.gif
+%%DATADIR%%/themes/emoticons/penguins/_mniam.gif
+%%DATADIR%%/themes/emoticons/penguins/_muza.gif
+%%DATADIR%%/themes/emoticons/penguins/_mysli.gif
+%%DATADIR%%/themes/emoticons/penguins/_nauka.gif
+%%DATADIR%%/themes/emoticons/penguins/_nerwus.gif
+%%DATADIR%%/themes/emoticons/penguins/_nie.gif
+%%DATADIR%%/themes/emoticons/penguins/_obiad.gif
+%%DATADIR%%/themes/emoticons/penguins/_oczko.gif
+%%DATADIR%%/themes/emoticons/penguins/_oklasky.gif
+%%DATADIR%%/themes/emoticons/penguins/_okok.gif
+%%DATADIR%%/themes/emoticons/penguins/_okularnik.gif
+%%DATADIR%%/themes/emoticons/penguins/_olaboga.gif
+%%DATADIR%%/themes/emoticons/penguins/_onajego.gif
+%%DATADIR%%/themes/emoticons/penguins/_pada.gif
+%%DATADIR%%/themes/emoticons/penguins/_paker.gif
+%%DATADIR%%/themes/emoticons/penguins/_palacz.gif
+%%DATADIR%%/themes/emoticons/penguins/_paluszkiem.gif
+%%DATADIR%%/themes/emoticons/penguins/_papa.gif
+%%DATADIR%%/themes/emoticons/penguins/_papa2.gif
+%%DATADIR%%/themes/emoticons/penguins/_peace.gif
+%%DATADIR%%/themes/emoticons/penguins/_pies.gif
+%%DATADIR%%/themes/emoticons/penguins/_piwko2.gif
+%%DATADIR%%/themes/emoticons/penguins/_piwo.gif
+%%DATADIR%%/themes/emoticons/penguins/_placze.gif
+%%DATADIR%%/themes/emoticons/penguins/_plask.gif
+%%DATADIR%%/themes/emoticons/penguins/_plotki.gif
+%%DATADIR%%/themes/emoticons/penguins/_pocieszacz.gif
+%%DATADIR%%/themes/emoticons/penguins/_pomocy.gif
+%%DATADIR%%/themes/emoticons/penguins/_prezent.gif
+%%DATADIR%%/themes/emoticons/penguins/_prosi.gif
+%%DATADIR%%/themes/emoticons/penguins/_prysznic.gif
+%%DATADIR%%/themes/emoticons/penguins/_puknijsie.gif
+%%DATADIR%%/themes/emoticons/penguins/_pytajnik.gif
+%%DATADIR%%/themes/emoticons/penguins/_rotfl.gif
+%%DATADIR%%/themes/emoticons/penguins/_rzygi.gif
+%%DATADIR%%/themes/emoticons/penguins/_sciana.gif
+%%DATADIR%%/themes/emoticons/penguins/_serducho.gif
+%%DATADIR%%/themes/emoticons/penguins/_serduszka.gif
+%%DATADIR%%/themes/emoticons/penguins/_sex.gif
+%%DATADIR%%/themes/emoticons/penguins/_slonko.gif
+%%DATADIR%%/themes/emoticons/penguins/_smutny.gif
+%%DATADIR%%/themes/emoticons/penguins/_snieg.gif
+%%DATADIR%%/themes/emoticons/penguins/_soczek.gif
+%%DATADIR%%/themes/emoticons/penguins/_spadaj.gif
+%%DATADIR%%/themes/emoticons/penguins/_spie.gif
+%%DATADIR%%/themes/emoticons/penguins/_spioch.gif
+%%DATADIR%%/themes/emoticons/penguins/_stop.gif
+%%DATADIR%%/themes/emoticons/penguins/_stres.gif
+%%DATADIR%%/themes/emoticons/penguins/_szampan.gif
+%%DATADIR%%/themes/emoticons/penguins/_szok.gif
+%%DATADIR%%/themes/emoticons/penguins/_tak.gif
+%%DATADIR%%/themes/emoticons/penguins/_tancze.gif
+%%DATADIR%%/themes/emoticons/penguins/_telefon.gif
+%%DATADIR%%/themes/emoticons/penguins/_tort.gif
+%%DATADIR%%/themes/emoticons/penguins/_tuptup.gif
+%%DATADIR%%/themes/emoticons/penguins/_uczen.gif
+%%DATADIR%%/themes/emoticons/penguins/_uoeee.gif
+%%DATADIR%%/themes/emoticons/penguins/_uscisk.gif
+%%DATADIR%%/themes/emoticons/penguins/_usmiech.gif
+%%DATADIR%%/themes/emoticons/penguins/_w8.gif
+%%DATADIR%%/themes/emoticons/penguins/_wanna.gif
+%%DATADIR%%/themes/emoticons/penguins/_wc.gif
+%%DATADIR%%/themes/emoticons/penguins/_wnerw.gif
+%%DATADIR%%/themes/emoticons/penguins/_wsciekly.gif
+%%DATADIR%%/themes/emoticons/penguins/_wykrzyknik.gif
+%%DATADIR%%/themes/emoticons/penguins/_wysmiewacz.gif
+%%DATADIR%%/themes/emoticons/penguins/_yyyy.gif
+%%DATADIR%%/themes/emoticons/penguins/_zab.gif
+%%DATADIR%%/themes/emoticons/penguins/_zacieszacz.gif
+%%DATADIR%%/themes/emoticons/penguins/_zakochany.gif
+%%DATADIR%%/themes/emoticons/penguins/_zakupy.gif
+%%DATADIR%%/themes/emoticons/penguins/_zalamka.gif
+%%DATADIR%%/themes/emoticons/penguins/_zawstydzony.gif
+%%DATADIR%%/themes/emoticons/penguins/_zeby.gif
+%%DATADIR%%/themes/emoticons/penguins/_zegar.gif
+%%DATADIR%%/themes/emoticons/penguins/_ziew.gif
+%%DATADIR%%/themes/emoticons/penguins/_zlezkawoku.gif
+%%DATADIR%%/themes/emoticons/penguins/_zly.gif
+%%DATADIR%%/themes/emoticons/penguins/_zmeczony.gif
+%%DATADIR%%/themes/emoticons/penguins/aniolek.gif
+%%DATADIR%%/themes/emoticons/penguins/aparat.gif
+%%DATADIR%%/themes/emoticons/penguins/beczy.gif
+%%DATADIR%%/themes/emoticons/penguins/bezradny.gif
+%%DATADIR%%/themes/emoticons/penguins/bije.gif
+%%DATADIR%%/themes/emoticons/penguins/boisie.gif
+%%DATADIR%%/themes/emoticons/penguins/boks.gif
+%%DATADIR%%/themes/emoticons/penguins/buja_w_oblokach.gif
+%%DATADIR%%/themes/emoticons/penguins/bukiet.gif
+%%DATADIR%%/themes/emoticons/penguins/buziak.gif
+%%DATADIR%%/themes/emoticons/penguins/buzki.gif
+%%DATADIR%%/themes/emoticons/penguins/chatownik.gif
+%%DATADIR%%/themes/emoticons/penguins/chytry.gif
+%%DATADIR%%/themes/emoticons/penguins/cisza.gif
+%%DATADIR%%/themes/emoticons/penguins/cmok.gif
+%%DATADIR%%/themes/emoticons/penguins/co.gif
+%%DATADIR%%/themes/emoticons/penguins/co_jest.gif
+%%DATADIR%%/themes/emoticons/penguins/cwaniak.gif
+%%DATADIR%%/themes/emoticons/penguins/czarodziej.gif
+%%DATADIR%%/themes/emoticons/penguins/czytaj.gif
+%%DATADIR%%/themes/emoticons/penguins/diabelek.gif
+%%DATADIR%%/themes/emoticons/penguins/dobani.gif
+%%DATADIR%%/themes/emoticons/penguins/dokuczacz.gif
+%%DATADIR%%/themes/emoticons/penguins/dostal.gif
+%%DATADIR%%/themes/emoticons/penguins/dresiarz.gif
+%%DATADIR%%/themes/emoticons/penguins/drink.gif
+%%DATADIR%%/themes/emoticons/penguins/dupa.gif
+%%DATADIR%%/themes/emoticons/penguins/emots.txt
+%%DATADIR%%/themes/emoticons/penguins/figielek.gif
+%%DATADIR%%/themes/emoticons/penguins/foch.gif
+%%DATADIR%%/themes/emoticons/penguins/gafa.gif
+%%DATADIR%%/themes/emoticons/penguins/ganja.gif
+%%DATADIR%%/themes/emoticons/penguins/gazeta.gif
+%%DATADIR%%/themes/emoticons/penguins/glaszcze.gif
+%%DATADIR%%/themes/emoticons/penguins/glupek.gif
+%%DATADIR%%/themes/emoticons/penguins/glupek2.gif
+%%DATADIR%%/themes/emoticons/penguins/gool.gif
+%%DATADIR%%/themes/emoticons/penguins/gra.gif
+%%DATADIR%%/themes/emoticons/penguins/haha.gif
+%%DATADIR%%/themes/emoticons/penguins/hahaha.gif
+%%DATADIR%%/themes/emoticons/penguins/hejka.gif
+%%DATADIR%%/themes/emoticons/penguins/hura.gif
+%%DATADIR%%/themes/emoticons/penguins/jablko.gif
+%%DATADIR%%/themes/emoticons/penguins/je_pizze.gif
+%%DATADIR%%/themes/emoticons/penguins/jem.gif
+%%DATADIR%%/themes/emoticons/penguins/jezyk.gif
+%%DATADIR%%/themes/emoticons/penguins/jezyk_oko.gif
+%%DATADIR%%/themes/emoticons/penguins/kawa.gif
+%%DATADIR%%/themes/emoticons/penguins/killer.gif
+%%DATADIR%%/themes/emoticons/penguins/klotnia.gif
+%%DATADIR%%/themes/emoticons/penguins/kotek.gif
+%%DATADIR%%/themes/emoticons/penguins/krecka_dostal.gif
+%%DATADIR%%/themes/emoticons/penguins/krzyk.gif
+%%DATADIR%%/themes/emoticons/penguins/krzywy.gif
+%%DATADIR%%/themes/emoticons/penguins/kwiatek.gif
+%%DATADIR%%/themes/emoticons/penguins/list.gif
+%%DATADIR%%/themes/emoticons/penguins/lol2.gif
+%%DATADIR%%/themes/emoticons/penguins/luzik.gif
+%%DATADIR%%/themes/emoticons/penguins/milczek.gif
+%%DATADIR%%/themes/emoticons/penguins/milosc.gif
+%%DATADIR%%/themes/emoticons/penguins/mniam.gif
+%%DATADIR%%/themes/emoticons/penguins/muza.gif
+%%DATADIR%%/themes/emoticons/penguins/mysli.gif
+%%DATADIR%%/themes/emoticons/penguins/nauka.gif
+%%DATADIR%%/themes/emoticons/penguins/nerwus.gif
+%%DATADIR%%/themes/emoticons/penguins/nie.gif
+%%DATADIR%%/themes/emoticons/penguins/nie_powiem.gif
+%%DATADIR%%/themes/emoticons/penguins/obiad.gif
+%%DATADIR%%/themes/emoticons/penguins/oczko.gif
+%%DATADIR%%/themes/emoticons/penguins/oklasky.gif
+%%DATADIR%%/themes/emoticons/penguins/okok.gif
+%%DATADIR%%/themes/emoticons/penguins/okularnik.gif
+%%DATADIR%%/themes/emoticons/penguins/olaboga.gif
+%%DATADIR%%/themes/emoticons/penguins/onajego.gif
+%%DATADIR%%/themes/emoticons/penguins/pada.gif
+%%DATADIR%%/themes/emoticons/penguins/paker.gif
+%%DATADIR%%/themes/emoticons/penguins/palacz.gif
+%%DATADIR%%/themes/emoticons/penguins/paluszkiem.gif
+%%DATADIR%%/themes/emoticons/penguins/papa.gif
+%%DATADIR%%/themes/emoticons/penguins/papa2.gif
+%%DATADIR%%/themes/emoticons/penguins/peace.gif
+%%DATADIR%%/themes/emoticons/penguins/pies.gif
+%%DATADIR%%/themes/emoticons/penguins/piwko2.gif
+%%DATADIR%%/themes/emoticons/penguins/piwo.gif
+%%DATADIR%%/themes/emoticons/penguins/placze.gif
+%%DATADIR%%/themes/emoticons/penguins/plask.gif
+%%DATADIR%%/themes/emoticons/penguins/plotki.gif
+%%DATADIR%%/themes/emoticons/penguins/pocieszacz.gif
+%%DATADIR%%/themes/emoticons/penguins/pomocy.gif
+%%DATADIR%%/themes/emoticons/penguins/prezent.gif
+%%DATADIR%%/themes/emoticons/penguins/prosi.gif
+%%DATADIR%%/themes/emoticons/penguins/prysznic.gif
+%%DATADIR%%/themes/emoticons/penguins/puknijsie.gif
+%%DATADIR%%/themes/emoticons/penguins/pytajnik.gif
+%%DATADIR%%/themes/emoticons/penguins/readme.txt
+%%DATADIR%%/themes/emoticons/penguins/rotfl.gif
+%%DATADIR%%/themes/emoticons/penguins/roza.gif
+%%DATADIR%%/themes/emoticons/penguins/rzygi.gif
+%%DATADIR%%/themes/emoticons/penguins/sciana.gif
+%%DATADIR%%/themes/emoticons/penguins/serducho.gif
+%%DATADIR%%/themes/emoticons/penguins/serduszka.gif
+%%DATADIR%%/themes/emoticons/penguins/sex.gif
+%%DATADIR%%/themes/emoticons/penguins/slonko.gif
+%%DATADIR%%/themes/emoticons/penguins/smutny.gif
+%%DATADIR%%/themes/emoticons/penguins/snieg.gif
+%%DATADIR%%/themes/emoticons/penguins/soczek.gif
+%%DATADIR%%/themes/emoticons/penguins/spadaj.gif
+%%DATADIR%%/themes/emoticons/penguins/spie.gif
+%%DATADIR%%/themes/emoticons/penguins/spioch.gif
+%%DATADIR%%/themes/emoticons/penguins/stop.gif
+%%DATADIR%%/themes/emoticons/penguins/stres.gif
+%%DATADIR%%/themes/emoticons/penguins/szampan.gif
+%%DATADIR%%/themes/emoticons/penguins/szok.gif
+%%DATADIR%%/themes/emoticons/penguins/tak.gif
+%%DATADIR%%/themes/emoticons/penguins/tancze.gif
+%%DATADIR%%/themes/emoticons/penguins/telefon.gif
+%%DATADIR%%/themes/emoticons/penguins/tort.gif
+%%DATADIR%%/themes/emoticons/penguins/tuptup.gif
+%%DATADIR%%/themes/emoticons/penguins/uczen.gif
+%%DATADIR%%/themes/emoticons/penguins/uoeee.gif
+%%DATADIR%%/themes/emoticons/penguins/uscisk.gif
+%%DATADIR%%/themes/emoticons/penguins/usmiech.gif
+%%DATADIR%%/themes/emoticons/penguins/usta.gif
+%%DATADIR%%/themes/emoticons/penguins/w8.gif
+%%DATADIR%%/themes/emoticons/penguins/wanna.gif
+%%DATADIR%%/themes/emoticons/penguins/wc.gif
+%%DATADIR%%/themes/emoticons/penguins/wnerw.gif
+%%DATADIR%%/themes/emoticons/penguins/wsciekly.gif
+%%DATADIR%%/themes/emoticons/penguins/wykrzyknik.gif
+%%DATADIR%%/themes/emoticons/penguins/wysmiewacz.gif
+%%DATADIR%%/themes/emoticons/penguins/yyyy.gif
+%%DATADIR%%/themes/emoticons/penguins/zab.gif
+%%DATADIR%%/themes/emoticons/penguins/zacieszacz.gif
+%%DATADIR%%/themes/emoticons/penguins/zakochany.gif
+%%DATADIR%%/themes/emoticons/penguins/zakupy.gif
+%%DATADIR%%/themes/emoticons/penguins/zalamka.gif
+%%DATADIR%%/themes/emoticons/penguins/zawstydzony.gif
+%%DATADIR%%/themes/emoticons/penguins/zeby.gif
+%%DATADIR%%/themes/emoticons/penguins/zegar.gif
+%%DATADIR%%/themes/emoticons/penguins/ziew.gif
+%%DATADIR%%/themes/emoticons/penguins/zlezkawoku.gif
+%%DATADIR%%/themes/emoticons/penguins/zly.gif
+%%DATADIR%%/themes/emoticons/penguins/zmeczony.gif
+%%DATADIR%%/themes/emoticons/penguins/zniesmaczony.gif
 %%DATADIR%%/themes/icons/default/abouticon.png
 %%DATADIR%%/themes/icons/default/abouticon16.png
 %%DATADIR%%/themes/icons/default/add.png
@@ -501,6 +945,7 @@
 %%DATADIR%%/themes/icons/default/manusricon.png
 %%DATADIR%%/themes/icons/default/mergeuserlist.png
 %%DATADIR%%/themes/icons/default/message.png
+%%DATADIR%%/themes/icons/default/message_anim.gif
 %%DATADIR%%/themes/icons/default/mobile.png
 %%DATADIR%%/themes/icons/default/modmanager.png
 %%DATADIR%%/themes/icons/default/msgbox_warning.png
@@ -559,17 +1004,23 @@
 share/icons/hicolor/24x24/apps/kadu.png
 share/icons/hicolor/32x32/apps/kadu.png
 share/icons/hicolor/48x48/apps/kadu.png
+share/icons/hicolor/64x64/apps/kadu.png
+share/icons/hicolor/128x128/apps/kadu.png
 %%ARTS_MOD%%include/kadu/modules/player_arts.h
+%%ARTS_MOD%%lib/kadu/modules/arts_sound.so
 %%ARTS_MOD%%share/kadu/modules/bin/arts_sound/arts_connector
 %%ARTS_MOD%%share/kadu/modules/arts_sound.desc
 %%ASPELL_MOD%%include/kadu/modules/spellchecker.h
+%%ASPELL_MOD%%lib/kadu/modules/spellchecker.so
 %%ASPELL_MOD%%share/kadu/modules/translations/spellchecker_pl.qm
 %%ASPELL_MOD%%share/kadu/modules/data/spellchecker/config.png
 %%ASPELL_MOD%%share/kadu/modules/spellchecker.desc
 %%ESOUND_MOD%%include/kadu/modules/esd_sound.h
+%%ESOUND_MOD%%lib/kadu/modules/esd_sound.so
 %%ESOUND_MOD%%share/kadu/modules/esd_sound.desc
 %%TABS_MOD%%include/kadu/modules/tabs.h
 %%TABS_MOD%%include/kadu/modules/tabwidget.h
+%%TABS_MOD%%lib/kadu/modules/tabs.so
 %%TABS_MOD%%share/kadu/modules/translations/tabs_pl.qm
 %%TABS_MOD%%share/kadu/modules/data/tabs/attach.png
 %%TABS_MOD%%share/kadu/modules/tabs.desc
@@ -583,6 +1034,10 @@
 @dirrmtry share/icons/hicolor/32x32
 @dirrmtry share/icons/hicolor/48x48/apps
 @dirrmtry share/icons/hicolor/48x48
+ at dirrmtry share/icons/hicolor/64x64/apps
+ at dirrmtry share/icons/hicolor/64x64
+ at dirrmtry share/icons/hicolor/128x128/apps
+ at dirrmtry share/icons/hicolor/128x128
 @dirrmtry share/icons/hicolor
 @dirrmtry share/icons
 @dirrmtry share/applications
@@ -591,9 +1046,11 @@
 @dirrm %%DATADIR%%/themes/sounds
 @dirrm %%DATADIR%%/themes/icons/default
 @dirrm %%DATADIR%%/themes/icons
- at dirrm %%DATADIR%%/themes/emoticons/gadu-gadu/2
- at dirrm %%DATADIR%%/themes/emoticons/gadu-gadu/1
- at dirrm %%DATADIR%%/themes/emoticons/gadu-gadu
+ at dirrm %%DATADIR%%/themes/emoticons/penguins
+%%GG_EMOTS%%@dirrm %%DATADIR%%/themes/emoticons/gg6_compatible/3
+%%GG_EMOTS%%@dirrm %%DATADIR%%/themes/emoticons/gg6_compatible/2
+%%GG_EMOTS%%@dirrm %%DATADIR%%/themes/emoticons/gg6_compatible/1
+%%GG_EMOTS%%@dirrm %%DATADIR%%/themes/emoticons/gg6_compatible
 @dirrm %%DATADIR%%/themes/emoticons
 @dirrm %%DATADIR%%/themes
 @dirrm %%DATADIR%%/modules/translations
@@ -603,9 +1060,10 @@
 %%ASPELL_MOD%%@dirrm %%DATADIR%%/modules/data/spellchecker
 %%TABS_MOD%%@dirrm %%DATADIR%%/modules/data/tabs
 @dirrm %%DATADIR%%/modules/data
-%%ARTS_MOD%%@dirrm %%DATADIR%%/modules/bin/arts_sound
- at dirrm %%DATADIR%%/modules/bin
 @dirrm %%DATADIR%%/modules
 @dirrm %%DATADIR%%
+ at dirrm lib/kadu/modules/bin
+ at dirrm lib/kadu/modules
+ at dirrm lib/kadu
 @dirrm include/kadu/modules
 @dirrm include/kadu
--- pl-kadu-0.5.0,1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list