Date: Mon, 2 Aug 2010 19:48:30 GMT From: Olivier Duchateau <duchateau.olivier@gmail.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/149205: [UPDATE] net-im/emesene to 1.6.3 Message-ID: <201008021948.o72JmU35053140@www.freebsd.org> Resent-Message-ID: <201008021950.o72Jo871049002@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 149205 >Category: ports >Synopsis: [UPDATE] net-im/emesene to 1.6.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Aug 02 19:50:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Olivier Duchateau >Release: FreeBSD 8.1-RELEASE >Organization: >Environment: FreeBSD bornem.errements.net 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: - Add license files - Clean installation (delete duplicate files) - Add some variables (dependances) >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/net-im/emesene/Makefile emesene/Makefile --- /usr/ports/net-im/emesene/Makefile 2010-05-31 04:00:26.000000000 +0200 +++ emesene/Makefile 2010-08-02 21:35:54.000000000 +0200 @@ -6,10 +6,9 @@ # PORTNAME= emesene -PORTVERSION= 1.5.1 -PORTREVISION= 3 +PORTVERSION= 1.6.3 CATEGORIES= net-im python -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= acm@FreeBSD.org COMMENT= A MSN Messenger client writen in python @@ -20,29 +19,44 @@ USE_PYTHON= yes USE_GETTEXT= yes -USE_GNOME= pygtk2 +USE_GNOME= pygtk2 desktopfileutils USE_GSTREAMER= python -REINPLACE_ARGS= -i "" +INSTALL_ICONS= yes -PLIST= ${WRKDIR}/pkg-plist +PYDISTUTILS_BUILDARGS+= --prefix=${LOCALBASE} -DESKTOP_ENTRIES="${PORTNAME}" \ - "${COMMENT}" \ - "${DATADIR}/themes/default/userPanel.png" \ - "${PORTNAME}" \ - "Network;InstantMessaging;GTK;" \ - "false" +MAN1= emesene.1 + +.if !defined(NO_LICENSES_INSTALL) +LICENSE= LGPL21 GPLv2 PSF +LICENSE_COMB= multi +LICENSE_FILE_GPLv2= ${WRKSRC}/GPL +LICENSE_FILE_LGPL21= ${WRKSRC}/LGPL +# Add new license (PSF) +_LICENSE_NAME_PSF= Python Software Foundation +_LICENSE_GROUPS_PSF= FSF GPL OSI +_LICENSE_PERMS_PSF= ${_LICENSE_PERMS_DEFAULT} +LICENSE_FILE_PSF= ${WRKSRC}/PSF +.endif post-extract: - @cd ${WRKSRC} && \ - ${RM} -f GPL LGPL README + @${FIND} ${WRKSRC} -type f -name 'theme~' -exec ${RM} -f \{\} \; + @cd ${WRKSRC}/ && \ + ${RM} -f MANIFEST.in COPYING README +# Delete 'Spotify.py', because this file needs spotify.exe + @${RM} -f ${WRKSRC}/plugins_base/currentSong/Spotify.py +# Delete audio players which are not in ports + @cd ${WRKSRC}/plugins_base/currentSong/ && \ + ${RM} -f Consonance.py Foobar2000.py GOMPlayer.py Gmusicbrowser.py \ + Guayadeque.py Listen.py MediaMonkey.py MediaPlayerClassic.py \ + Mesk.py OneByOne.py Songbird.py Winamp.py XMPlay.py post-patch: - @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|g' ${WRKSRC}/${PORTNAME} + @${REINPLACE_CMD} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${WRKSRC}/setup.py do-build: @cd ${WRKSRC} && \ - ${PYTHON_CMD} setup.py build_ext -i + ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} build_ext -i @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKDIR} @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKDIR} @@ -50,19 +64,28 @@ @${ECHO_CMD} "exec ${PYTHON_CMD} ./${PORTNAME}" >> ${WRKDIR}/run.sh pre-install: - @${RM} -fr ${PLIST} ${WRKSRC}/build ${WRKSRC}/libmimic - @cd ${WRKSRC} && \ - ${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%DATADIR%%/|' >> ${PLIST} && \ - ${FIND} * -type d | ${SORT} -r | ${SED} -e 's|^|@dirrm %%DATADIR%%/|' >> ${PLIST} - @${ECHO_CMD} "@dirrm %%DATADIR%%" >> ${PLIST} - @${ECHO_CMD} "bin/${PORTNAME}" >> ${PLIST} + @${RM} -fR ${WRKSRC}/libmimic ${WRKSRC}/docs +# Avoid to install libmimic.so in ${PYTHON_SITELIBDIR} + @${REINPLACE_CMD} -e 's| ext_modules| #ext_modules|' ${WRKSRC}/setup.py do-install: + @cd ${WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} \ + install ${PYDISTUTILS_BUILDARGS} + @${MKDIR} ${DATADIR} - cd ${WRKSRC} && \ - ${FIND} * -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \ - ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \; + @cd ${WRKSRC} && \ + ${FIND} . -type d \ + \( ! -regex '.*build.*' -and ! -regex '.*po.*' -and ! -regex '.*misc.*' \) \ + -exec ${MKDIR} "${DATADIR}/{}" \; && \ + ${FIND} . -type f \( ! -regex '.*setup\.p.*' -and ! -regex '.*\.orig' \ + -and ! -regex '.*build.*' -and ! -regex '.*po.*' \ + -and ! -regex '.*misc.*' -and ! -regex '.*GPL' \) \ + -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \; ${INSTALL_SCRIPT} ${WRKDIR}/run.sh ${PREFIX}/bin/${PORTNAME} +post-install: + @-update-desktop-database + .include <bsd.port.mk> diff -urN /usr/ports/net-im/emesene/distinfo emesene/distinfo --- /usr/ports/net-im/emesene/distinfo 2009-11-10 21:44:29.000000000 +0100 +++ emesene/distinfo 2010-08-02 18:57:51.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (emesene-1.5.1.tar.gz) = 2f0a3c8af864a21cb2e6a00b51c997ab -SHA256 (emesene-1.5.1.tar.gz) = a62ea7153328f4cc00c14e9ef229c3a324c709e569b70ed63eca9a5c5784386e -SIZE (emesene-1.5.1.tar.gz) = 2245737 +MD5 (emesene-1.6.3.tar.gz) = 0d57f88a1f10a209f9f4552a78c6b965 +SHA256 (emesene-1.6.3.tar.gz) = 9b088a17b4d9d3a2be72737a02dceb7a1a224b978a30b6490fa3354fb49b4bfa +SIZE (emesene-1.6.3.tar.gz) = 3078128 diff -urN /usr/ports/net-im/emesene/files/patch-misc_emesene.desktop emesene/files/patch-misc_emesene.desktop --- /usr/ports/net-im/emesene/files/patch-misc_emesene.desktop 1970-01-01 01:00:00.000000000 +0100 +++ emesene/files/patch-misc_emesene.desktop 2010-08-02 19:57:58.000000000 +0200 @@ -0,0 +1,17 @@ +--- misc/emesene.desktop.orig 2010-07-13 00:13:14.000000000 +0200 ++++ misc/emesene.desktop 2010-08-02 19:57:17.000000000 +0200 +@@ -1,9 +1,13 @@ + [Desktop Entry] ++Encoding=UTF-8 + Name=Emesene ++Name[fr]=Emesene + GenericName=Emesene ++GenericName[fr]=Emesene + Comment=MSN Messenger client ++Comment[fr]=Client Windows Live Messenger + Exec=emesene + Icon=emesene + Terminal=false + Type=Application +-Categories=Network;InstantMessaging; ++Categories=Network;InstantMessaging;GTK; diff -urN /usr/ports/net-im/emesene/files/patch-plugins_base_currentSong___init__.py emesene/files/patch-plugins_base_currentSong___init__.py --- /usr/ports/net-im/emesene/files/patch-plugins_base_currentSong___init__.py 1970-01-01 01:00:00.000000000 +0100 +++ emesene/files/patch-plugins_base_currentSong___init__.py 2010-08-02 19:27:32.000000000 +0200 @@ -0,0 +1,37 @@ +--- plugins_base/currentSong/__init__.py.orig 2010-07-13 00:13:14.000000000 +0200 ++++ plugins_base/currentSong/__init__.py 2010-08-02 19:25:48.000000000 +0200 +@@ -23,34 +23,20 @@ + from Audacious import Audacious + from Banshee import Banshee + from Clementine import Clementine +- from Consonance import Consonance + from Exaile import Exaile +- from Gmusicbrowser import Gmusicbrowser +- from Guayadeque import Guayadeque + from LastFm import LastFm +- from Listen import Listen +- from Mesk import Mesk + from QuodLibet import QuodLibet + from Rhythmbox import Rhythmbox + from Vagalume import Vagalume + from Vlc import Vlc + from Xfmedia import Xfmedia +- from Songbird import Songbird +- from Spotify import Spotify + from Xmms import Xmms + from Xmms2 import Xmms2 + else: + from AIMP2 import AIMP2 + from aTunes import aTunes +- from Foobar2000 import Foobar2000 +- from GOMPlayer import GOMPlayer +- from MediaMonkey import MediaMonkey +- from MediaPlayerClassic import MediaPlayerClassic +- from OneByOne import OneByOne + from RealPlayer import RealPlayer + from SMPlayer import SMPlayer +- from Winamp import Winamp +- from XMPlay import XMPlay + + # can stay out, since it uses sockets + from Mpd import Mpd diff -urN /usr/ports/net-im/emesene/files/patch-setup.py emesene/files/patch-setup.py --- /usr/ports/net-im/emesene/files/patch-setup.py 1970-01-01 01:00:00.000000000 +0100 +++ emesene/files/patch-setup.py 2010-08-02 19:36:27.000000000 +0200 @@ -0,0 +1,219 @@ +--- setup.py.orig 2010-07-13 00:13:14.000000000 +0200 ++++ setup.py 2010-08-02 19:36:00.000000000 +0200 +@@ -1,38 +1,22 @@ +-#!/usr/bin/python ++#!/usr/bin/env python + + from distutils.core import setup, Extension +-from glob import glob ++import glob + import os + import sys + + if os.name == 'posix': +- for arg in sys.argv: +- if arg == 'install': +- print 'Hello.\nYou are trying to do a system-wide install of emesene '\ +- 'using this script, which is a very bad thing to do.\n'\ +- 'Seriously, you do NOT want to do this, since it can break '\ +- 'other python apps, and emesene too!\n'\ +- 'Follow my advice: just run the \"emesene\" script that is '\ +- 'in this very same directory and you\'re done. emesene is running '\ +- 'and your system is safe. It\'s a win-win, don\'t you think?\n'\ +- 'Thanks for trying emesene.' +- quit() +- + # From apport's setup.py + mo_files = [] +- for filepath in glob("po/*/LC_MESSAGES/*.mo"): ++ for filepath in glob.glob("po/*/LC_MESSAGES/*.mo"): + lang = filepath[len("po/"):] + targetpath = os.path.dirname(os.path.join("share/locale",lang)) + mo_files.append((targetpath, [filepath])) + +- libmimic_module = Extension('libmimic', +- sources = ['libmimic/' + file for file in ['bitstring.c', +- 'colorspace.c', 'deblock.c', 'decode.c', 'encode.c', +- 'fdct_quant.c', 'idct_dequant.c', 'mimic.c', 'vlc_common.c', +- 'vlc_decode.c', 'vlc_encode.c', 'py_libmimic.c']]) ++ libmimic_module = glob.glob("libmimic/*.c") + + setup(name = 'emesene', +- version = '1.6', ++ version = '%%PORTVERSION%%', + description = 'MSN messenger client', + author = 'Luis Mariano Guerra, dx, C10uD', + author_email = 'luismarianoguerra@gmail.com', +@@ -40,170 +24,9 @@ + license = 'GNU GPL 2', + requires = ['gtk'], + platforms = ['any'], +- packages = ['', 'abstract', 'emesenelib', 'emesenelib.p2p', +- 'emesenelib.soap', 'plugins_base', +- 'plugins_base.currentSong', 'plugins_base.encryptMessage'], +- scripts = ['emesene'], +- package_data = {'': ['conversation_themes/*/*', 'smilies/*/*', +- 'sound_themes/*/*', 'themes/*/*', 'hotmlog.htm']}, + data_files = [('share/pixmaps', ['misc/emesene.png']), + ('share/icons/hicolor/scalable/apps', ['misc/emesene.svg']), +- ('share/man/man1', ['misc/emesene.1']), ++ ('man/man1', ['misc/emesene.1']), + ('share/applications', ['misc/emesene.desktop'])] + mo_files, +- ext_modules = [libmimic_module] ++ ext_modules = [Extension('libmimic', libmimic_module)] + ) +-elif os.name == 'nt': +- import pygst +- pygst.require("0.10") +- import gst +- +- enabled = True +- +- if not enabled: +- print "py2exe setup.py" +- print "(disabled, see source)" +- raise SystemExit +- +- import gobject +- import locale +- import py2exe +- +- try: +- revision = "$Revision $".split()[1] +- except: +- revision = 0 +- version_id = "1.6" +- +- outdata_base = { +- "script": "Controller.py", +- "icon_resources": [(1, "../emesene.ico")] +- } +- +- outdata_win = outdata_base.copy() +- outdata_win['dest_base'] = "emesene" +- +- outdata_con = outdata_base.copy() +- outdata_con['dest_base'] = "emesene_debug" +- +- opts = { +- 'py2exe': { +- 'packages': ['encodings', 'gtk', 'email', 'abstract', 'emesenelib', 'emesenelib.p2p', +- 'emesenelib.soap', 'plugins_base', +- 'plugins_base.currentSong', 'plugins_base.encryptMessage'], +- 'includes': ['locale', 'gst','pygst', 'libxml2', 'poplib','imaplib','sqlite3', 'cairo', 'pangocairo', 'pango', 'atk', 'gobject', +- 'os', 'code', 'winsound', 'win32api', 'win32gui', +- 'email.iterators', 'email.generator'], +- 'excludes': ["ltihooks", "gdk", "pywin", "pywin.debugger", "pywin.debugger.dbgcon", +- "pywin.dialogs", "pywin.dialogs.list", +- "Tkconstants","Tkinter","tcl", +- "doctest","macpath","pdb", +- "cookielib","ftplib","pickle", +- "calendar","win32wnet","unicodedata", +- "getopt","optparse"], +- 'dll_excludes': ["libglade-2.0-0.dll", "w9xpopen.exe"], +- 'optimize': '2', +- 'dist_dir': '../dist', +- } +- } +- +- #included plugins list +- plugins = [ +- "__init__.py", +- "Commands.py", +- "CurrentSong.py", +- "CustomStatus.py", +- "EmoticonPlugin.py", +- "EncryptedMessage.py", +- "Eval.py", +- "Facebook.py", +- "gmailNotify.py", +- "InlineNotify.py", +- "LastSaid.py", +- "LogConversation.py", +- "Logger.py", +- "mailChecker.py", +- "Notification.py", +- "Plugin.py", +- "Plus.py", +- "PlusColorPanel.py", +- "Screenshots.py", +- "StatusHistory.py", +- "TinyUrl.py", +- "WindowTremblingNudge.py" +- ,] +- +- plugins = [ "../emesene/plugins_base/" + p for p in plugins ] +- +- os.chdir("../emesene") +- +- files = [] +- #individual files +- files.append( (".", ("../emesene/hotmlog.htm", "../emesene/COPYING", \ +- "../dlls/libxml2-2.dll", "../dlls/msvcr90.dll", "../dlls/Microsoft.VC90.CRT.manifest",\ +- "../dlls/jpeg62.dll", "../emesene/GPL", "../emesene/PSF", "../emesene/LGPL")) ) +- files.append( ("smilies/default", glob("../emesene/smilies/default/*.*")) ) +- +- files.append( ("plugins_base", plugins) ) +- +- files.append( ("plugins_base/currentSong", \ +- ["../emesene/plugins_base/currentSong/__init__.py", \ +- "../emesene/plugins_base/currentSong/Amarok.py", \ +- "../emesene/plugins_base/currentSong/Amarok2.py", \ +- "../emesene/plugins_base/currentSong/Audacious.py", \ +- "../emesene/plugins_base/currentSong/Banshee.py", \ +- "../emesene/plugins_base/currentSong/CurrentSong.py", \ +- "../emesene/plugins_base/currentSong/Exaile.py", \ +- "../emesene/plugins_base/currentSong/Listen.py", \ +- "../emesene/plugins_base/currentSong/Mpd.py", \ +- "../emesene/plugins_base/currentSong/QuodLibet.py", \ +- "../emesene/plugins_base/currentSong/Rhythmbox.py", \ +- "../emesene/plugins_base/currentSong/Vagalume.py", \ +- "../emesene/plugins_base/currentSong/Vlc.py", \ +- "../emesene/plugins_base/currentSong/Winamp.py", \ +- "../emesene/plugins_base/currentSong/Xfmedia.py", \ +- "../emesene/plugins_base/currentSong/Xmms.py"]) ) +- +- files.append( ("plugins_base/encryptMessage", \ +- ["../emesene/plugins_base/encryptMessage/__init__.py", \ +- "../emesene/plugins_base/encryptMessage/__rijndael.py", \ +- "../emesene/plugins_base/encryptMessage/GPG.py", \ +- "../emesene/plugins_base/encryptMessage/MainEncryptedMessage.py", \ +- "../emesene/plugins_base/encryptMessage/Rijndael.py"]) ) +- +- #gtk file structure +- +- #directories with variable contents +- for i in glob("../emesene/po/*"): +- files.append( (i.split("/emesene/")[1] + '/LC_MESSAGES', glob(i+"/LC_MESSAGES/*")) ) +- +- for i in glob("../emesene/conversation_themes/*"): +- files.append( (i.split("/emesene/")[1], glob(i+"/theme")) ) +- +- for i in glob("../emesene/themes/*"): +- files.append( (i.split("/emesene/")[1], glob(i+"/*.*")) ) +- +- for i in glob("../emesene/sound_themes/*"): +- files.append( (i.split("/emesene/")[1], glob(i+"/*.*")) ) +- +- libmimic_module = Extension('libmimic', +- sources = ['libmimic/' + file for file in ['bitstring.c', \ +- 'colorspace.c', 'deblock.c', 'decode.c', 'encode.c', \ +- 'fdct_quant.c', 'idct_dequant.c', 'mimic.c', 'vlc_common.c', \ +- 'vlc_decode.c', 'vlc_encode.c', 'py_libmimic.c']]) +- +- setup( +- name="emesene", +- version=version_id, +- description = 'MSN messenger client', +- author = 'Luis Mariano Guerra, dx, C10uD', +- author_email = 'luismarianoguerra@gmail.com', +- url = 'http://www.emesene.org/', +- license = 'GNU GPL 2', +- requires = ['gtk'], +- windows=[outdata_win], +- console=[outdata_con], +- options=opts, +- data_files=files, +- ext_modules = [libmimic_module]) +- +- print "Done! Files are here: ../dist/" diff -urN /usr/ports/net-im/emesene/pkg-plist emesene/pkg-plist --- /usr/ports/net-im/emesene/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ emesene/pkg-plist 2010-08-02 21:32:45.000000000 +0200 @@ -0,0 +1,936 @@ +bin/emesene +%%PYTHON_SITELIBDIR%%/emesene-1.6.3-py2.6.egg-info +share/applications/emesene.desktop +%%DATADIR%%/Avatar.py +%%DATADIR%%/Avatar.pyc +%%DATADIR%%/Avatar.pyo +%%DATADIR%%/AvatarHistory.py +%%DATADIR%%/AvatarHistory.pyc +%%DATADIR%%/AvatarHistory.pyo +%%DATADIR%%/Config.py +%%DATADIR%%/Config.pyc +%%DATADIR%%/Config.pyo +%%DATADIR%%/ConfigDialog.py +%%DATADIR%%/ConfigDialog.pyc +%%DATADIR%%/ConfigDialog.pyo +%%DATADIR%%/ContactList.py +%%DATADIR%%/ContactList.pyc +%%DATADIR%%/ContactList.pyo +%%DATADIR%%/ContactManager.py +%%DATADIR%%/ContactManager.pyc +%%DATADIR%%/ContactManager.pyo +%%DATADIR%%/Controller.py +%%DATADIR%%/Controller.pyc +%%DATADIR%%/Controller.pyo +%%DATADIR%%/Conversation.py +%%DATADIR%%/Conversation.pyc +%%DATADIR%%/Conversation.pyo +%%DATADIR%%/ConversationLayoutManager.py +%%DATADIR%%/ConversationLayoutManager.pyc +%%DATADIR%%/ConversationLayoutManager.pyo +%%DATADIR%%/ConversationManager.py +%%DATADIR%%/ConversationManager.pyc +%%DATADIR%%/ConversationManager.pyo +%%DATADIR%%/ConversationUI.py +%%DATADIR%%/ConversationUI.pyc +%%DATADIR%%/ConversationUI.pyo +%%DATADIR%%/ConversationWindow.py +%%DATADIR%%/ConversationWindow.pyc +%%DATADIR%%/ConversationWindow.pyo +%%DATADIR%%/CustomEmoticons.py +%%DATADIR%%/CustomEmoticons.pyc +%%DATADIR%%/CustomEmoticons.pyo +%%DATADIR%%/FancyAvatarRenderer.py +%%DATADIR%%/FancyAvatarRenderer.pyc +%%DATADIR%%/FancyAvatarRenderer.pyo +%%DATADIR%%/FileTransfer.py +%%DATADIR%%/FileTransfer.pyc +%%DATADIR%%/FileTransfer.pyo +%%DATADIR%%/FileTransferUI.py +%%DATADIR%%/FileTransferUI.pyc +%%DATADIR%%/FileTransferUI.pyo +%%DATADIR%%/FilterEntry.py +%%DATADIR%%/FilterEntry.pyc +%%DATADIR%%/FilterEntry.pyo +%%DATADIR%%/FontStyleWindow.py +%%DATADIR%%/FontStyleWindow.pyc +%%DATADIR%%/FontStyleWindow.pyo +%%DATADIR%%/GroupManager.py +%%DATADIR%%/GroupManager.pyc +%%DATADIR%%/GroupManager.pyo +%%DATADIR%%/GroupMenu.py +%%DATADIR%%/GroupMenu.pyc +%%DATADIR%%/GroupMenu.pyo +%%DATADIR%%/ImageAreaSelector.py +%%DATADIR%%/ImageAreaSelector.pyc +%%DATADIR%%/ImageAreaSelector.pyo +%%DATADIR%%/InkDraw.py +%%DATADIR%%/InkDraw.pyc +%%DATADIR%%/InkDraw.pyo +%%DATADIR%%/LogViewer.py +%%DATADIR%%/LogViewer.pyc +%%DATADIR%%/LogViewer.pyo +%%DATADIR%%/Login.py +%%DATADIR%%/Login.pyc +%%DATADIR%%/Login.pyo +%%DATADIR%%/MainMenu.py +%%DATADIR%%/MainMenu.pyc +%%DATADIR%%/MainMenu.pyo +%%DATADIR%%/MainWindow.py +%%DATADIR%%/MainWindow.pyc +%%DATADIR%%/MainWindow.pyo +%%DATADIR%%/Menu.py +%%DATADIR%%/Menu.pyc +%%DATADIR%%/Menu.pyo +%%DATADIR%%/PSF +%%DATADIR%%/Parser.py +%%DATADIR%%/Parser.pyc +%%DATADIR%%/Parser.pyo +%%DATADIR%%/PluginManager.py +%%DATADIR%%/PluginManager.pyc +%%DATADIR%%/PluginManager.pyo +%%DATADIR%%/PreferenceWindow.py +%%DATADIR%%/PreferenceWindow.pyc +%%DATADIR%%/PreferenceWindow.pyo +%%DATADIR%%/SingleInstance.py +%%DATADIR%%/SingleInstance.pyc +%%DATADIR%%/SingleInstance.pyo +%%DATADIR%%/SlashCommands.py +%%DATADIR%%/SlashCommands.pyc +%%DATADIR%%/SlashCommands.pyo +%%DATADIR%%/SmileyRenderer.py +%%DATADIR%%/SmileyRenderer.pyc +%%DATADIR%%/SmileyRenderer.pyo +%%DATADIR%%/SmilieWindow.py +%%DATADIR%%/SmilieWindow.pyc +%%DATADIR%%/SmilieWindow.pyo +%%DATADIR%%/Sound.py +%%DATADIR%%/Sound.pyc +%%DATADIR%%/Sound.pyo +%%DATADIR%%/StatusMenu.py +%%DATADIR%%/StatusMenu.pyc +%%DATADIR%%/StatusMenu.pyo +%%DATADIR%%/Theme.py +%%DATADIR%%/Theme.pyc +%%DATADIR%%/Theme.pyo +%%DATADIR%%/TrayIcon.py +%%DATADIR%%/TrayIcon.pyc +%%DATADIR%%/TrayIcon.pyo +%%DATADIR%%/TreeViewTooltips.py +%%DATADIR%%/TreeViewTooltips.pyc +%%DATADIR%%/TreeViewTooltips.pyo +%%DATADIR%%/UserList.py +%%DATADIR%%/UserList.pyc +%%DATADIR%%/UserList.pyo +%%DATADIR%%/UserMenu.py +%%DATADIR%%/UserMenu.pyc +%%DATADIR%%/UserMenu.pyo +%%DATADIR%%/UserPanel.py +%%DATADIR%%/UserPanel.pyc +%%DATADIR%%/UserPanel.pyo +%%DATADIR%%/Webcam.py +%%DATADIR%%/Webcam.pyc +%%DATADIR%%/Webcam.pyo +%%DATADIR%%/WebcamDevice.py +%%DATADIR%%/WebcamDevice.pyc +%%DATADIR%%/WebcamDevice.pyo +%%DATADIR%%/Widgets.py +%%DATADIR%%/Widgets.pyc +%%DATADIR%%/Widgets.pyo +%%DATADIR%%/__init__.py +%%DATADIR%%/__init__.pyc +%%DATADIR%%/__init__.pyo +%%DATADIR%%/abstract/ConfigDialog.py +%%DATADIR%%/abstract/ConfigDialog.pyc +%%DATADIR%%/abstract/ConfigDialog.pyo +%%DATADIR%%/abstract/ContactList.py +%%DATADIR%%/abstract/ContactList.pyc +%%DATADIR%%/abstract/ContactList.pyo +%%DATADIR%%/abstract/ContactManager.py +%%DATADIR%%/abstract/ContactManager.pyc +%%DATADIR%%/abstract/ContactManager.pyo +%%DATADIR%%/abstract/ContactMenu.py +%%DATADIR%%/abstract/ContactMenu.pyc +%%DATADIR%%/abstract/ContactMenu.pyo +%%DATADIR%%/abstract/GroupManager.py +%%DATADIR%%/abstract/GroupManager.pyc +%%DATADIR%%/abstract/GroupManager.pyo +%%DATADIR%%/abstract/GroupMenu.py +%%DATADIR%%/abstract/GroupMenu.pyc +%%DATADIR%%/abstract/GroupMenu.pyo +%%DATADIR%%/abstract/MainMenu.py +%%DATADIR%%/abstract/MainMenu.pyc +%%DATADIR%%/abstract/MainMenu.pyo +%%DATADIR%%/abstract/Menu.py +%%DATADIR%%/abstract/Menu.pyc +%%DATADIR%%/abstract/Menu.pyo +%%DATADIR%%/abstract/Object.py +%%DATADIR%%/abstract/Object.pyc +%%DATADIR%%/abstract/Object.pyo +%%DATADIR%%/abstract/Session.py +%%DATADIR%%/abstract/Session.pyc +%%DATADIR%%/abstract/Session.pyo +%%DATADIR%%/abstract/__init__.py +%%DATADIR%%/abstract/__init__.pyc +%%DATADIR%%/abstract/__init__.pyo +%%DATADIR%%/abstract/dialog.py +%%DATADIR%%/abstract/dialog.pyc +%%DATADIR%%/abstract/dialog.pyo +%%DATADIR%%/abstract/sandbox.py +%%DATADIR%%/abstract/sandbox.pyc +%%DATADIR%%/abstract/sandbox.pyo +%%DATADIR%%/abstract/status.py +%%DATADIR%%/abstract/status.pyc +%%DATADIR%%/abstract/status.pyo +%%DATADIR%%/abstract/stock.py +%%DATADIR%%/abstract/stock.pyc +%%DATADIR%%/abstract/stock.pyo +%%DATADIR%%/abstract/validators.py +%%DATADIR%%/abstract/validators.pyc +%%DATADIR%%/abstract/validators.pyo +%%DATADIR%%/conversation_themes/default/theme +%%DATADIR%%/conversation_themes/gtalk/theme +%%DATADIR%%/conversation_themes/irc/theme +%%DATADIR%%/conversation_themes/messenger/theme +%%DATADIR%%/conversation_themes/pidgin/theme +%%DATADIR%%/desktop.py +%%DATADIR%%/desktop.pyc +%%DATADIR%%/desktop.pyo +%%DATADIR%%/dialog.py +%%DATADIR%%/dialog.pyc +%%DATADIR%%/dialog.pyo +%%DATADIR%%/emesene +%%DATADIR%%/emesene-logo.png +%%DATADIR%%/emesenelib/ContactData.py +%%DATADIR%%/emesenelib/ContactData.pyc +%%DATADIR%%/emesenelib/ContactData.pyo +%%DATADIR%%/emesenelib/Hotmail.py +%%DATADIR%%/emesenelib/Hotmail.pyc +%%DATADIR%%/emesenelib/Hotmail.pyo +%%DATADIR%%/emesenelib/MsnOIM.py +%%DATADIR%%/emesenelib/MsnOIM.pyc +%%DATADIR%%/emesenelib/MsnOIM.pyo +%%DATADIR%%/emesenelib/Msnobj.py +%%DATADIR%%/emesenelib/Msnobj.pyc +%%DATADIR%%/emesenelib/Msnobj.pyo +%%DATADIR%%/emesenelib/ProfileManager.py +%%DATADIR%%/emesenelib/ProfileManager.pyc +%%DATADIR%%/emesenelib/ProfileManager.pyo +%%DATADIR%%/emesenelib/SignalHandler.py +%%DATADIR%%/emesenelib/SignalHandler.pyc +%%DATADIR%%/emesenelib/SignalHandler.pyo +%%DATADIR%%/emesenelib/Socket.py +%%DATADIR%%/emesenelib/Socket.pyc +%%DATADIR%%/emesenelib/Socket.pyo +%%DATADIR%%/emesenelib/Switchboard.py +%%DATADIR%%/emesenelib/Switchboard.pyc +%%DATADIR%%/emesenelib/Switchboard.pyo +%%DATADIR%%/emesenelib/UbxParser.py +%%DATADIR%%/emesenelib/UbxParser.pyc +%%DATADIR%%/emesenelib/UbxParser.pyo +%%DATADIR%%/emesenelib/XmlParser.py +%%DATADIR%%/emesenelib/XmlParser.pyc +%%DATADIR%%/emesenelib/XmlParser.pyo +%%DATADIR%%/emesenelib/__init__.py +%%DATADIR%%/emesenelib/__init__.pyc +%%DATADIR%%/emesenelib/__init__.pyo +%%DATADIR%%/emesenelib/common.py +%%DATADIR%%/emesenelib/common.pyc +%%DATADIR%%/emesenelib/common.pyo +%%DATADIR%%/emesenelib/core.py +%%DATADIR%%/emesenelib/core.pyc +%%DATADIR%%/emesenelib/core.pyo +%%DATADIR%%/emesenelib/mbi.py +%%DATADIR%%/emesenelib/mbi.pyc +%%DATADIR%%/emesenelib/mbi.pyo +%%DATADIR%%/emesenelib/p2p/__init__.py +%%DATADIR%%/emesenelib/p2p/__init__.pyc +%%DATADIR%%/emesenelib/p2p/__init__.pyo +%%DATADIR%%/emesenelib/p2p/slp.py +%%DATADIR%%/emesenelib/p2p/slp.pyc +%%DATADIR%%/emesenelib/p2p/slp.pyo +%%DATADIR%%/emesenelib/p2p/tlp.py +%%DATADIR%%/emesenelib/p2p/tlp.pyc +%%DATADIR%%/emesenelib/p2p/tlp.pyo +%%DATADIR%%/emesenelib/p2p/transfers.py +%%DATADIR%%/emesenelib/p2p/transfers.pyc +%%DATADIR%%/emesenelib/p2p/transfers.pyo +%%DATADIR%%/emesenelib/pydes.py +%%DATADIR%%/emesenelib/pydes.pyc +%%DATADIR%%/emesenelib/pydes.pyo +%%DATADIR%%/emesenelib/soap/__init__.py +%%DATADIR%%/emesenelib/soap/__init__.pyc +%%DATADIR%%/emesenelib/soap/__init__.pyo +%%DATADIR%%/emesenelib/soap/manager.py +%%DATADIR%%/emesenelib/soap/manager.pyc +%%DATADIR%%/emesenelib/soap/manager.pyo +%%DATADIR%%/emesenelib/soap/requests.py +%%DATADIR%%/emesenelib/soap/requests.pyc +%%DATADIR%%/emesenelib/soap/requests.pyo +%%DATADIR%%/emesenelib/soap/templates.py +%%DATADIR%%/emesenelib/soap/templates.pyc +%%DATADIR%%/emesenelib/soap/templates.pyo +%%DATADIR%%/hotmlog.htm +%%DATADIR%%/htmltextview.py +%%DATADIR%%/htmltextview.pyc +%%DATADIR%%/htmltextview.pyo +%%DATADIR%%/libmimic.so +%%DATADIR%%/paths.py +%%DATADIR%%/paths.pyc +%%DATADIR%%/paths.pyo +%%DATADIR%%/plugins_base/AntiBoss.py +%%DATADIR%%/plugins_base/AntiBoss.pyc +%%DATADIR%%/plugins_base/AntiBoss.pyo +%%DATADIR%%/plugins_base/Commands.py +%%DATADIR%%/plugins_base/Commands.pyc +%%DATADIR%%/plugins_base/Commands.pyo +%%DATADIR%%/plugins_base/CurrentSong.py +%%DATADIR%%/plugins_base/CurrentSong.pyc +%%DATADIR%%/plugins_base/CurrentSong.pyo +%%DATADIR%%/plugins_base/CustomStatus.py +%%DATADIR%%/plugins_base/CustomStatus.pyc +%%DATADIR%%/plugins_base/CustomStatus.pyo +%%DATADIR%%/plugins_base/Dbus.py +%%DATADIR%%/plugins_base/Dbus.pyc +%%DATADIR%%/plugins_base/Dbus.pyo +%%DATADIR%%/plugins_base/EmoticonPlugin.py +%%DATADIR%%/plugins_base/EmoticonPlugin.pyc +%%DATADIR%%/plugins_base/EmoticonPlugin.pyo +%%DATADIR%%/plugins_base/EncryptedMessage.py +%%DATADIR%%/plugins_base/EncryptedMessage.pyc +%%DATADIR%%/plugins_base/EncryptedMessage.pyo +%%DATADIR%%/plugins_base/Eval.py +%%DATADIR%%/plugins_base/Eval.pyc +%%DATADIR%%/plugins_base/Eval.pyo +%%DATADIR%%/plugins_base/Facebook.py +%%DATADIR%%/plugins_base/Facebook.pyc +%%DATADIR%%/plugins_base/Facebook.pyo +%%DATADIR%%/plugins_base/IdleStatus.py +%%DATADIR%%/plugins_base/IdleStatus.pyc +%%DATADIR%%/plugins_base/IdleStatus.pyo +%%DATADIR%%/plugins_base/InlineNotify.py +%%DATADIR%%/plugins_base/InlineNotify.pyc +%%DATADIR%%/plugins_base/InlineNotify.pyo +%%DATADIR%%/plugins_base/LastSaid.py +%%DATADIR%%/plugins_base/LastSaid.pyc +%%DATADIR%%/plugins_base/LastSaid.pyo +%%DATADIR%%/plugins_base/LogConversation.py +%%DATADIR%%/plugins_base/LogConversation.pyc +%%DATADIR%%/plugins_base/LogConversation.pyo +%%DATADIR%%/plugins_base/Logger.py +%%DATADIR%%/plugins_base/Logger.pyc +%%DATADIR%%/plugins_base/Logger.pyo +%%DATADIR%%/plugins_base/Notification.py +%%DATADIR%%/plugins_base/Notification.pyc +%%DATADIR%%/plugins_base/Notification.pyo +%%DATADIR%%/plugins_base/NotifyOsdImproved.py +%%DATADIR%%/plugins_base/NotifyOsdImproved.pyc +%%DATADIR%%/plugins_base/NotifyOsdImproved.pyo +%%DATADIR%%/plugins_base/Plugin.py +%%DATADIR%%/plugins_base/Plugin.pyc +%%DATADIR%%/plugins_base/Plugin.pyo +%%DATADIR%%/plugins_base/Plus.py +%%DATADIR%%/plugins_base/Plus.pyc +%%DATADIR%%/plugins_base/Plus.pyo +%%DATADIR%%/plugins_base/PlusColorPanel.py +%%DATADIR%%/plugins_base/PlusColorPanel.pyc +%%DATADIR%%/plugins_base/PlusColorPanel.pyo +%%DATADIR%%/plugins_base/Screenshots.py +%%DATADIR%%/plugins_base/Screenshots.pyc +%%DATADIR%%/plugins_base/Screenshots.pyo +%%DATADIR%%/plugins_base/Spell.py +%%DATADIR%%/plugins_base/Spell.pyc +%%DATADIR%%/plugins_base/Spell.pyo +%%DATADIR%%/plugins_base/StatusHistory.py +%%DATADIR%%/plugins_base/StatusHistory.pyc +%%DATADIR%%/plugins_base/StatusHistory.pyo +%%DATADIR%%/plugins_base/TinyUrl.py +%%DATADIR%%/plugins_base/TinyUrl.pyc +%%DATADIR%%/plugins_base/TinyUrl.pyo +%%DATADIR%%/plugins_base/WindowTremblingNudge.py +%%DATADIR%%/plugins_base/WindowTremblingNudge.pyc +%%DATADIR%%/plugins_base/WindowTremblingNudge.pyo +%%DATADIR%%/plugins_base/WinkReceiving.py +%%DATADIR%%/plugins_base/WinkReceiving.pyc +%%DATADIR%%/plugins_base/WinkReceiving.pyo +%%DATADIR%%/plugins_base/__init__.py +%%DATADIR%%/plugins_base/__init__.pyc +%%DATADIR%%/plugins_base/__init__.pyo +%%DATADIR%%/plugins_base/currentSong/AIMP2.py +%%DATADIR%%/plugins_base/currentSong/AIMP2.pyc +%%DATADIR%%/plugins_base/currentSong/AIMP2.pyo +%%DATADIR%%/plugins_base/currentSong/Amarok.py +%%DATADIR%%/plugins_base/currentSong/Amarok.pyc +%%DATADIR%%/plugins_base/currentSong/Amarok.pyo +%%DATADIR%%/plugins_base/currentSong/Amarok2.py +%%DATADIR%%/plugins_base/currentSong/Amarok2.pyc +%%DATADIR%%/plugins_base/currentSong/Amarok2.pyo +%%DATADIR%%/plugins_base/currentSong/Audacious.py +%%DATADIR%%/plugins_base/currentSong/Audacious.pyc +%%DATADIR%%/plugins_base/currentSong/Audacious.pyo +%%DATADIR%%/plugins_base/currentSong/Banshee.py +%%DATADIR%%/plugins_base/currentSong/Banshee.pyc +%%DATADIR%%/plugins_base/currentSong/Banshee.pyo +%%DATADIR%%/plugins_base/currentSong/Clementine.py +%%DATADIR%%/plugins_base/currentSong/Clementine.pyc +%%DATADIR%%/plugins_base/currentSong/Clementine.pyo +%%DATADIR%%/plugins_base/currentSong/CurrentSong.py +%%DATADIR%%/plugins_base/currentSong/CurrentSong.pyc +%%DATADIR%%/plugins_base/currentSong/CurrentSong.pyo +%%DATADIR%%/plugins_base/currentSong/Exaile.py +%%DATADIR%%/plugins_base/currentSong/Exaile.pyc +%%DATADIR%%/plugins_base/currentSong/Exaile.pyo +%%DATADIR%%/plugins_base/currentSong/LastFm.py +%%DATADIR%%/plugins_base/currentSong/LastFm.pyc +%%DATADIR%%/plugins_base/currentSong/LastFm.pyo +%%DATADIR%%/plugins_base/currentSong/Mpd.py +%%DATADIR%%/plugins_base/currentSong/Mpd.pyc +%%DATADIR%%/plugins_base/currentSong/Mpd.pyo +%%DATADIR%%/plugins_base/currentSong/QuodLibet.py +%%DATADIR%%/plugins_base/currentSong/QuodLibet.pyc +%%DATADIR%%/plugins_base/currentSong/QuodLibet.pyo +%%DATADIR%%/plugins_base/currentSong/RealPlayer.py +%%DATADIR%%/plugins_base/currentSong/RealPlayer.pyc +%%DATADIR%%/plugins_base/currentSong/RealPlayer.pyo +%%DATADIR%%/plugins_base/currentSong/Rhythmbox.py +%%DATADIR%%/plugins_base/currentSong/Rhythmbox.pyc +%%DATADIR%%/plugins_base/currentSong/Rhythmbox.pyo +%%DATADIR%%/plugins_base/currentSong/SMPlayer.py +%%DATADIR%%/plugins_base/currentSong/SMPlayer.pyc +%%DATADIR%%/plugins_base/currentSong/SMPlayer.pyo +%%DATADIR%%/plugins_base/currentSong/Vagalume.py +%%DATADIR%%/plugins_base/currentSong/Vagalume.pyc +%%DATADIR%%/plugins_base/currentSong/Vagalume.pyo +%%DATADIR%%/plugins_base/currentSong/Vlc.py +%%DATADIR%%/plugins_base/currentSong/Vlc.pyc +%%DATADIR%%/plugins_base/currentSong/Vlc.pyo +%%DATADIR%%/plugins_base/currentSong/Xfmedia.py +%%DATADIR%%/plugins_base/currentSong/Xfmedia.pyc +%%DATADIR%%/plugins_base/currentSong/Xfmedia.pyo +%%DATADIR%%/plugins_base/currentSong/Xmms.py +%%DATADIR%%/plugins_base/currentSong/Xmms.pyc +%%DATADIR%%/plugins_base/currentSong/Xmms.pyo +%%DATADIR%%/plugins_base/currentSong/Xmms2.py +%%DATADIR%%/plugins_base/currentSong/Xmms2.pyc +%%DATADIR%%/plugins_base/currentSong/Xmms2.pyo +%%DATADIR%%/plugins_base/currentSong/__init__.py +%%DATADIR%%/plugins_base/currentSong/__init__.pyc +%%DATADIR%%/plugins_base/currentSong/__init__.pyo +%%DATADIR%%/plugins_base/currentSong/aTunes.py +%%DATADIR%%/plugins_base/currentSong/aTunes.pyc +%%DATADIR%%/plugins_base/currentSong/aTunes.pyo +%%DATADIR%%/plugins_base/encryptMessage/GPG.py +%%DATADIR%%/plugins_base/encryptMessage/GPG.pyc +%%DATADIR%%/plugins_base/encryptMessage/GPG.pyo +%%DATADIR%%/plugins_base/encryptMessage/MainEncryptedMessage.py +%%DATADIR%%/plugins_base/encryptMessage/MainEncryptedMessage.pyc +%%DATADIR%%/plugins_base/encryptMessage/MainEncryptedMessage.pyo +%%DATADIR%%/plugins_base/encryptMessage/Rijndael.py +%%DATADIR%%/plugins_base/encryptMessage/Rijndael.pyc +%%DATADIR%%/plugins_base/encryptMessage/Rijndael.pyo +%%DATADIR%%/plugins_base/encryptMessage/__init__.py +%%DATADIR%%/plugins_base/encryptMessage/__init__.pyc +%%DATADIR%%/plugins_base/encryptMessage/__init__.pyo +%%DATADIR%%/plugins_base/encryptMessage/__rijndael.py +%%DATADIR%%/plugins_base/encryptMessage/__rijndael.pyc +%%DATADIR%%/plugins_base/encryptMessage/__rijndael.pyo +%%DATADIR%%/plugins_base/gmailNotify.py +%%DATADIR%%/plugins_base/gmailNotify.pyc +%%DATADIR%%/plugins_base/gmailNotify.pyo +%%DATADIR%%/plugins_base/mailChecker.py +%%DATADIR%%/plugins_base/mailChecker.pyc +%%DATADIR%%/plugins_base/mailChecker.pyo +%%DATADIR%%/pygif/AnimatedGifResizer.py +%%DATADIR%%/pygif/AnimatedGifResizer.pyc +%%DATADIR%%/pygif/AnimatedGifResizer.pyo +%%DATADIR%%/pygif/__init__.py +%%DATADIR%%/pygif/__init__.pyc +%%DATADIR%%/pygif/__init__.pyo +%%DATADIR%%/pygif/bigrotfl.gif +%%DATADIR%%/pygif/pixbuf.py +%%DATADIR%%/pygif/pixbuf.pyc +%%DATADIR%%/pygif/pixbuf.pyo +%%DATADIR%%/pygif/pygif.py +%%DATADIR%%/pygif/pygif.pyc +%%DATADIR%%/pygif/pygif.pyo +%%DATADIR%%/pygif/tests.py +%%DATADIR%%/pygif/tests.pyc +%%DATADIR%%/pygif/tests.pyo +%%DATADIR%%/pygif/vampire.gif +%%DATADIR%%/pyisf/__init__.py +%%DATADIR%%/pyisf/__init__.pyc +%%DATADIR%%/pyisf/__init__.pyo +%%DATADIR%%/pyisf/drawing.py +%%DATADIR%%/pyisf/drawing.pyc +%%DATADIR%%/pyisf/drawing.pyo +%%DATADIR%%/pyisf/pyisf.py +%%DATADIR%%/pyisf/pyisf.pyc +%%DATADIR%%/pyisf/pyisf.pyo +%%DATADIR%%/pyisf/tests.py +%%DATADIR%%/pyisf/tests.pyc +%%DATADIR%%/pyisf/tests.pyo +%%DATADIR%%/smilies/default/Airplane.png +%%DATADIR%%/smilies/default/Auto.png +%%DATADIR%%/smilies/default/Baring_teeth_smiley.png +%%DATADIR%%/smilies/default/Birthday_cake.png +%%DATADIR%%/smilies/default/Black_sheep.png +%%DATADIR%%/smilies/default/Bowl.png +%%DATADIR%%/smilies/default/Boy.png +%%DATADIR%%/smilies/default/Cigarette.png +%%DATADIR%%/smilies/default/Clock.png +%%DATADIR%%/smilies/default/Dog_face.png +%%DATADIR%%/smilies/default/Dont_tell_anyone.png +%%DATADIR%%/smilies/default/Eye_rolling_smiley.png +%%DATADIR%%/smilies/default/Fingerscrossed.png +%%DATADIR%%/smilies/default/Gift_with_a_bow.png +%%DATADIR%%/smilies/default/Girl.png +%%DATADIR%%/smilies/default/Hi_five.png +%%DATADIR%%/smilies/default/Island_with_a_palm_tree.png +%%DATADIR%%/smilies/default/Messenger.png +%%DATADIR%%/smilies/default/Money.png +%%DATADIR%%/smilies/default/Pizza.png +%%DATADIR%%/smilies/default/Plate.png +%%DATADIR%%/smilies/default/Sarcastic_smiley.png +%%DATADIR%%/smilies/default/Secret_telling_smiley.png +%%DATADIR%%/smilies/default/Snail.png +%%DATADIR%%/smilies/default/Soccer_ball.png +%%DATADIR%%/smilies/default/Telephone_receiver.png +%%DATADIR%%/smilies/default/Thinking_smiley.png +%%DATADIR%%/smilies/default/Turtle.png +%%DATADIR%%/smilies/default/Umbrella.png +%%DATADIR%%/smilies/default/Xbox.png +%%DATADIR%%/smilies/default/andy.png +%%DATADIR%%/smilies/default/angel.png +%%DATADIR%%/smilies/default/angry.png +%%DATADIR%%/smilies/default/audio-x-generic.png +%%DATADIR%%/smilies/default/bat.png +%%DATADIR%%/smilies/default/beer.png +%%DATADIR%%/smilies/default/blushing.png +%%DATADIR%%/smilies/default/brb.png +%%DATADIR%%/smilies/default/brflower.png +%%DATADIR%%/smilies/default/brheart.png +%%DATADIR%%/smilies/default/bunny.png +%%DATADIR%%/smilies/default/coffee.png +%%DATADIR%%/smilies/default/computer.png +%%DATADIR%%/smilies/default/confused.png +%%DATADIR%%/smilies/default/coolglasses.png +%%DATADIR%%/smilies/default/cry.png +%%DATADIR%%/smilies/default/cuffs.png +%%DATADIR%%/smilies/default/devil.png +%%DATADIR%%/smilies/default/drink.png +%%DATADIR%%/smilies/default/emblem-favorite.png +%%DATADIR%%/smilies/default/face-glasses.png +%%DATADIR%%/smilies/default/flower.png +%%DATADIR%%/smilies/default/goat.png +%%DATADIR%%/smilies/default/grin.png +%%DATADIR%%/smilies/default/hugleft.png +%%DATADIR%%/smilies/default/hugright.png +%%DATADIR%%/smilies/default/im.png +%%DATADIR%%/smilies/default/kiss.png +%%DATADIR%%/smilies/default/lamp.png +%%DATADIR%%/smilies/default/mail.png +%%DATADIR%%/smilies/default/oh.png +%%DATADIR%%/smilies/default/party_smiley.png +%%DATADIR%%/smilies/default/phone.png +%%DATADIR%%/smilies/default/photo.png +%%DATADIR%%/smilies/default/pussy.png +%%DATADIR%%/smilies/default/rainbow.png +%%DATADIR%%/smilies/default/sick.png +%%DATADIR%%/smilies/default/sleeping.png +%%DATADIR%%/smilies/default/smile.png +%%DATADIR%%/smilies/default/star.png +%%DATADIR%%/smilies/default/stare.png +%%DATADIR%%/smilies/default/thumbdown.png +%%DATADIR%%/smilies/default/thumbup.png +%%DATADIR%%/smilies/default/tongue.png +%%DATADIR%%/smilies/default/unhappy.png +%%DATADIR%%/smilies/default/video-x-generic.png +%%DATADIR%%/smilies/default/weather-clear-night.png +%%DATADIR%%/smilies/default/weather-clear.png +%%DATADIR%%/smilies/default/weather-showers-scattered.png +%%DATADIR%%/smilies/default/weather-storm.png +%%DATADIR%%/smilies/default/wink.png +%%DATADIR%%/sound_themes/default/alert.wav +%%DATADIR%%/sound_themes/default/nudge.wav +%%DATADIR%%/sound_themes/default/offline.wav +%%DATADIR%%/sound_themes/default/online.wav +%%DATADIR%%/sound_themes/default/send.wav +%%DATADIR%%/sound_themes/default/type.wav +%%DATADIR%%/sound_themes/freedesktop/alert.wav +%%DATADIR%%/sound_themes/freedesktop/nudge.wav +%%DATADIR%%/sound_themes/freedesktop/offline.wav +%%DATADIR%%/sound_themes/freedesktop/online.wav +%%DATADIR%%/sound_themes/freedesktop/send.wav +%%DATADIR%%/sound_themes/freedesktop/type.wav +%%DATADIR%%/status.py +%%DATADIR%%/status.pyc +%%DATADIR%%/status.pyo +%%DATADIR%%/stock.py +%%DATADIR%%/stock.pyc +%%DATADIR%%/stock.pyo +%%DATADIR%%/themes/default/away.png +%%DATADIR%%/themes/default/brush-large.png +%%DATADIR%%/themes/default/brush-small.png +%%DATADIR%%/themes/default/busy.png +%%DATADIR%%/themes/default/cam.png +%%DATADIR%%/themes/default/close.png +%%DATADIR%%/themes/default/cursor-mouse.png +%%DATADIR%%/themes/default/eraser.png +%%DATADIR%%/themes/default/groupChat.png +%%DATADIR%%/themes/default/guif.png +%%DATADIR%%/themes/default/icon.png +%%DATADIR%%/themes/default/icon16.png +%%DATADIR%%/themes/default/icon32.png +%%DATADIR%%/themes/default/icon48.png +%%DATADIR%%/themes/default/icon96.png +%%DATADIR%%/themes/default/idle.png +%%DATADIR%%/themes/default/invisible.png +%%DATADIR%%/themes/default/large_grid.png +%%DATADIR%%/themes/default/loading.gif +%%DATADIR%%/themes/default/login.png +%%DATADIR%%/themes/default/medium_grid.png +%%DATADIR%%/themes/default/mobile.png +%%DATADIR%%/themes/default/no_grid.png +%%DATADIR%%/themes/default/nudge.png +%%DATADIR%%/themes/default/offline.png +%%DATADIR%%/themes/default/online.png +%%DATADIR%%/themes/default/paintbrush.png +%%DATADIR%%/themes/default/reverse.png +%%DATADIR%%/themes/default/rotate-270.png +%%DATADIR%%/themes/default/rotate-90.png +%%DATADIR%%/themes/default/small_grid.png +%%DATADIR%%/themes/default/smilie.png +%%DATADIR%%/themes/default/space.png +%%DATADIR%%/themes/default/status-away.png +%%DATADIR%%/themes/default/status-blocked.png +%%DATADIR%%/themes/default/status-busy.png +%%DATADIR%%/themes/default/text.png +%%DATADIR%%/themes/default/tool-eraser.png +%%DATADIR%%/themes/default/tool-paintbrush.png +%%DATADIR%%/themes/default/trayicon.ico +%%DATADIR%%/themes/default/trayicon.png +%%DATADIR%%/themes/default/trayicon2.png +%%DATADIR%%/themes/default/userPanel.png +%%DATADIR%%/themes/gnomecolors/away.png +%%DATADIR%%/themes/gnomecolors/brush-large.png +%%DATADIR%%/themes/gnomecolors/brush-small.png +%%DATADIR%%/themes/gnomecolors/busy.png +%%DATADIR%%/themes/gnomecolors/cam.png +%%DATADIR%%/themes/gnomecolors/close.png +%%DATADIR%%/themes/gnomecolors/cursor-mouse.png +%%DATADIR%%/themes/gnomecolors/eraser.png +%%DATADIR%%/themes/gnomecolors/groupChat.png +%%DATADIR%%/themes/gnomecolors/guif.png +%%DATADIR%%/themes/gnomecolors/icon.png +%%DATADIR%%/themes/gnomecolors/icon16.png +%%DATADIR%%/themes/gnomecolors/icon32.png +%%DATADIR%%/themes/gnomecolors/icon48.png +%%DATADIR%%/themes/gnomecolors/icon96.png +%%DATADIR%%/themes/gnomecolors/idle.png +%%DATADIR%%/themes/gnomecolors/invisible.png +%%DATADIR%%/themes/gnomecolors/large_grid.png +%%DATADIR%%/themes/gnomecolors/loading.gif +%%DATADIR%%/themes/gnomecolors/login.png +%%DATADIR%%/themes/gnomecolors/medium_grid.png +%%DATADIR%%/themes/gnomecolors/mobile.png +%%DATADIR%%/themes/gnomecolors/no_grid.png +%%DATADIR%%/themes/gnomecolors/nudge.png +%%DATADIR%%/themes/gnomecolors/offline.png +%%DATADIR%%/themes/gnomecolors/online.png +%%DATADIR%%/themes/gnomecolors/paintbrush.png +%%DATADIR%%/themes/gnomecolors/reverse.png +%%DATADIR%%/themes/gnomecolors/rotate-270.png +%%DATADIR%%/themes/gnomecolors/rotate-90.png +%%DATADIR%%/themes/gnomecolors/small_grid.png +%%DATADIR%%/themes/gnomecolors/smilie.png +%%DATADIR%%/themes/gnomecolors/space.png +%%DATADIR%%/themes/gnomecolors/status-away.png +%%DATADIR%%/themes/gnomecolors/status-blocked.png +%%DATADIR%%/themes/gnomecolors/status-busy.png +%%DATADIR%%/themes/gnomecolors/text.png +%%DATADIR%%/themes/gnomecolors/tool-eraser.png +%%DATADIR%%/themes/gnomecolors/tool-paintbrush.png +%%DATADIR%%/themes/gnomecolors/trayicon.ico +%%DATADIR%%/themes/gnomecolors/trayicon.png +%%DATADIR%%/themes/gnomecolors/trayicon2.png +%%DATADIR%%/themes/gnomecolors/userPanel.png +%%DATADIR%%/themes/inthemargins/away.png +%%DATADIR%%/themes/inthemargins/brush-large.png +%%DATADIR%%/themes/inthemargins/brush-small.png +%%DATADIR%%/themes/inthemargins/busy.png +%%DATADIR%%/themes/inthemargins/close.png +%%DATADIR%%/themes/inthemargins/cursor-mouse.png +%%DATADIR%%/themes/inthemargins/eraser.png +%%DATADIR%%/themes/inthemargins/groupChat.png +%%DATADIR%%/themes/inthemargins/guif.png +%%DATADIR%%/themes/inthemargins/icon.png +%%DATADIR%%/themes/inthemargins/icon16.png +%%DATADIR%%/themes/inthemargins/icon32.png +%%DATADIR%%/themes/inthemargins/icon48.png +%%DATADIR%%/themes/inthemargins/icon96.png +%%DATADIR%%/themes/inthemargins/idle.png +%%DATADIR%%/themes/inthemargins/invisible.png +%%DATADIR%%/themes/inthemargins/large_grid.png +%%DATADIR%%/themes/inthemargins/loading.gif +%%DATADIR%%/themes/inthemargins/login.png +%%DATADIR%%/themes/inthemargins/medium_grid.png +%%DATADIR%%/themes/inthemargins/mobile.png +%%DATADIR%%/themes/inthemargins/no_grid.png +%%DATADIR%%/themes/inthemargins/nudge.png +%%DATADIR%%/themes/inthemargins/offline.png +%%DATADIR%%/themes/inthemargins/online.png +%%DATADIR%%/themes/inthemargins/paintbrush.png +%%DATADIR%%/themes/inthemargins/reverse.png +%%DATADIR%%/themes/inthemargins/rotate-270.png +%%DATADIR%%/themes/inthemargins/rotate-90.png +%%DATADIR%%/themes/inthemargins/small_grid.png +%%DATADIR%%/themes/inthemargins/space.png +%%DATADIR%%/themes/inthemargins/status-away.png +%%DATADIR%%/themes/inthemargins/status-blocked.png +%%DATADIR%%/themes/inthemargins/status-busy.png +%%DATADIR%%/themes/inthemargins/text.png +%%DATADIR%%/themes/inthemargins/tool-eraser.png +%%DATADIR%%/themes/inthemargins/tool-paintbrush.png +%%DATADIR%%/themes/inthemargins/trayicon.ico +%%DATADIR%%/themes/inthemargins/trayicon.png +%%DATADIR%%/themes/inthemargins/trayicon2.png +%%DATADIR%%/themes/inthemargins/userPanel.png +%%DATADIR%%/themes/tango/away.png +%%DATADIR%%/themes/tango/busy.png +%%DATADIR%%/themes/tango/close.png +%%DATADIR%%/themes/tango/groupChat.png +%%DATADIR%%/themes/tango/guif.png +%%DATADIR%%/themes/tango/icon.png +%%DATADIR%%/themes/tango/idle.png +%%DATADIR%%/themes/tango/invisible.png +%%DATADIR%%/themes/tango/loading.gif +%%DATADIR%%/themes/tango/login.png +%%DATADIR%%/themes/tango/mobile.png +%%DATADIR%%/themes/tango/nudge.png +%%DATADIR%%/themes/tango/offline.png +%%DATADIR%%/themes/tango/online.png +%%DATADIR%%/themes/tango/reverse.png +%%DATADIR%%/themes/tango/space.png +%%DATADIR%%/themes/tango/status-away.png +%%DATADIR%%/themes/tango/status-blocked.png +%%DATADIR%%/themes/tango/status-busy.png +%%DATADIR%%/themes/tango/trayicon.ico +%%DATADIR%%/themes/tango/trayicon.png +%%DATADIR%%/themes/tango/trayicon2.png +%%DATADIR%%/themes/tango/userPanel.png +share/icons/hicolor/scalable/apps/emesene.svg +share/locale/ar/LC_MESSAGES/emesene.mo +share/locale/ast/LC_MESSAGES/emesene.mo +share/locale/az/LC_MESSAGES/emesene.mo +share/locale/bg/LC_MESSAGES/emesene.mo +share/locale/bs/LC_MESSAGES/emesene.mo +share/locale/ca/LC_MESSAGES/emesene.mo +share/locale/cs/LC_MESSAGES/emesene.mo +share/locale/da/LC_MESSAGES/emesene.mo +share/locale/de/LC_MESSAGES/emesene.mo +share/locale/dv/LC_MESSAGES/emesene.mo +share/locale/el/LC_MESSAGES/emesene.mo +share/locale/en_AU/LC_MESSAGES/emesene.mo +share/locale/en_CA/LC_MESSAGES/emesene.mo +share/locale/en_GB/LC_MESSAGES/emesene.mo +share/locale/eo/LC_MESSAGES/emesene.mo +share/locale/es/LC_MESSAGES/emesene.mo +share/locale/et/LC_MESSAGES/emesene.mo +share/locale/eu/LC_MESSAGES/emesene.mo +share/locale/fi/LC_MESSAGES/emesene.mo +share/locale/fil/LC_MESSAGES/emesene.mo +share/locale/fo/LC_MESSAGES/emesene.mo +share/locale/fr/LC_MESSAGES/emesene.mo +share/locale/ga/LC_MESSAGES/emesene.mo +share/locale/gl/LC_MESSAGES/emesene.mo +share/locale/gv/LC_MESSAGES/emesene.mo +share/locale/he/LC_MESSAGES/emesene.mo +share/locale/hr/LC_MESSAGES/emesene.mo +share/locale/hu/LC_MESSAGES/emesene.mo +share/locale/id/LC_MESSAGES/emesene.mo +share/locale/is/LC_MESSAGES/emesene.mo +share/locale/it/LC_MESSAGES/emesene.mo +share/locale/ja/LC_MESSAGES/emesene.mo +share/locale/kn/LC_MESSAGES/emesene.mo +share/locale/ko/LC_MESSAGES/emesene.mo +share/locale/ku/LC_MESSAGES/emesene.mo +share/locale/la/LC_MESSAGES/emesene.mo +share/locale/lv/LC_MESSAGES/emesene.mo +share/locale/mk/LC_MESSAGES/emesene.mo +share/locale/ms/LC_MESSAGES/emesene.mo +share/locale/nb/LC_MESSAGES/emesene.mo +share/locale/nb_NO/LC_MESSAGES/emesene.mo +share/locale/nds/LC_MESSAGES/emesene.mo +share/locale/nl/LC_MESSAGES/emesene.mo +share/locale/nn/LC_MESSAGES/emesene.mo +share/locale/oc/LC_MESSAGES/emesene.mo +share/locale/pl/LC_MESSAGES/emesene.mo +share/locale/pt/LC_MESSAGES/emesene.mo +share/locale/pt_BR/LC_MESSAGES/emesene.mo +share/locale/ro/LC_MESSAGES/emesene.mo +share/locale/ru/LC_MESSAGES/emesene.mo +share/locale/sk/LC_MESSAGES/emesene.mo +share/locale/sl/LC_MESSAGES/emesene.mo +share/locale/sq/LC_MESSAGES/emesene.mo +share/locale/sr/LC_MESSAGES/emesene.mo +share/locale/sv/LC_MESSAGES/emesene.mo +share/locale/ta/LC_MESSAGES/emesene.mo +share/locale/th/LC_MESSAGES/emesene.mo +share/locale/tr/LC_MESSAGES/emesene.mo +share/locale/uk/LC_MESSAGES/emesene.mo +share/locale/zh_CN/LC_MESSAGES/emesene.mo +share/locale/zh_HK/LC_MESSAGES/emesene.mo +share/locale/zh_TW/LC_MESSAGES/emesene.mo +share/locale/zh_TW/LC_MESSAGES/plugin_notification.mo +share/locale/zh_TW/LC_MESSAGES/plugin_sound.mo +share/pixmaps/emesene.png +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/tr/LC_MESSAGES +@dirrmtry share/locale/tr +@dirrmtry share/locale/th/LC_MESSAGES +@dirrmtry share/locale/th +@dirrmtry share/locale/ta/LC_MESSAGES +@dirrmtry share/locale/ta +@dirrmtry share/locale/sv/LC_MESSAGES +@dirrmtry share/locale/sv +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sq/LC_MESSAGES +@dirrmtry share/locale/sq +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/ru/LC_MESSAGES +@dirrmtry share/locale/ru +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt_BR/LC_MESSAGES +@dirrmtry share/locale/pt_BR +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/nl/LC_MESSAGES +@dirrmtry share/locale/nl +@dirrmtry share/locale/nds/LC_MESSAGES +@dirrmtry share/locale/nds +@dirrmtry share/locale/nb_NO/LC_MESSAGES +@dirrmtry share/locale/nb_NO +@dirrmtry share/locale/nb/LC_MESSAGES +@dirrmtry share/locale/nb +@dirrmtry share/locale/ms/LC_MESSAGES +@dirrmtry share/locale/ms +@dirrmtry share/locale/mk/LC_MESSAGES +@dirrmtry share/locale/mk +@dirrmtry share/locale/lv/LC_MESSAGES +@dirrmtry share/locale/lv +@dirrmtry share/locale/la/LC_MESSAGES +@dirrmtry share/locale/la +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/kn/LC_MESSAGES +@dirrmtry share/locale/kn +@dirrmtry share/locale/ja/LC_MESSAGES +@dirrmtry share/locale/ja +@dirrmtry share/locale/it/LC_MESSAGES +@dirrmtry share/locale/it +@dirrmtry share/locale/is/LC_MESSAGES +@dirrmtry share/locale/is +@dirrmtry share/locale/id/LC_MESSAGES +@dirrmtry share/locale/id +@dirrmtry share/locale/hu/LC_MESSAGES +@dirrmtry share/locale/hu +@dirrmtry share/locale/hr/LC_MESSAGES +@dirrmtry share/locale/hr +@dirrmtry share/locale/he/LC_MESSAGES +@dirrmtry share/locale/he +@dirrmtry share/locale/gv/LC_MESSAGES +@dirrmtry share/locale/gv +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/ga/LC_MESSAGES +@dirrmtry share/locale/ga +@dirrmtry share/locale/fr/LC_MESSAGES +@dirrmtry share/locale/fr +@dirrmtry share/locale/fo/LC_MESSAGES +@dirrmtry share/locale/fo +@dirrmtry share/locale/fil/LC_MESSAGES +@dirrmtry share/locale/fil +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/eu/LC_MESSAGES +@dirrmtry share/locale/eu +@dirrmtry share/locale/et/LC_MESSAGES +@dirrmtry share/locale/et +@dirrmtry share/locale/es/LC_MESSAGES +@dirrmtry share/locale/es +@dirrmtry share/locale/eo/LC_MESSAGES +@dirrmtry share/locale/eo +@dirrmtry share/locale/en_GB/LC_MESSAGES +@dirrmtry share/locale/en_GB +@dirrmtry share/locale/en_CA/LC_MESSAGES +@dirrmtry share/locale/en_CA +@dirrmtry share/locale/en_AU/LC_MESSAGES +@dirrmtry share/locale/en_AU +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el +@dirrmtry share/locale/dv/LC_MESSAGES +@dirrmtry share/locale/dv +@dirrmtry share/locale/de/LC_MESSAGES +@dirrmtry share/locale/de +@dirrmtry share/locale/da/LC_MESSAGES +@dirrmtry share/locale/da +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/bs/LC_MESSAGES +@dirrmtry share/locale/bs +@dirrmtry share/locale/bg/LC_MESSAGES +@dirrmtry share/locale/bg +@dirrmtry share/locale/az/LC_MESSAGES +@dirrmtry share/locale/az +@dirrmtry share/locale/ast/LC_MESSAGES +@dirrmtry share/locale/ast +@dirrmtry share/locale/ar/LC_MESSAGES +@dirrmtry share/locale/ar +@dirrm %%DATADIR%%/themes/tango +@dirrm %%DATADIR%%/themes/inthemargins +@dirrm %%DATADIR%%/themes/gnomecolors +@dirrm %%DATADIR%%/themes/default +@dirrm %%DATADIR%%/themes +@dirrm %%DATADIR%%/sound_themes/freedesktop +@dirrm %%DATADIR%%/sound_themes/default +@dirrm %%DATADIR%%/sound_themes +@dirrm %%DATADIR%%/smilies/default +@dirrm %%DATADIR%%/smilies +@dirrm %%DATADIR%%/pyisf +@dirrm %%DATADIR%%/pygif +@dirrm %%DATADIR%%/plugins_base/encryptMessage +@dirrm %%DATADIR%%/plugins_base/currentSong +@dirrm %%DATADIR%%/plugins_base +@dirrm %%DATADIR%%/emesenelib/soap +@dirrm %%DATADIR%%/emesenelib/p2p +@dirrm %%DATADIR%%/emesenelib +@dirrm %%DATADIR%%/conversation_themes/pidgin +@dirrm %%DATADIR%%/conversation_themes/messenger +@dirrm %%DATADIR%%/conversation_themes/irc +@dirrm %%DATADIR%%/conversation_themes/gtalk +@dirrm %%DATADIR%%/conversation_themes/default +@dirrm %%DATADIR%%/conversation_themes +@dirrm %%DATADIR%%/abstract +@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008021948.o72JmU35053140>