diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-12-12 05:28:18 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-12-12 05:28:18 +0800 |
commit | d3b75ddc283cd60dcb8cc37b978a84ba138f9de8 (patch) | |
tree | 53c29e8a1e4cd02e1e6f04e063314a664ca7289f | |
parent | 9c6470b66317630ff44c006d3f75d40749f3bf5e (diff) | |
download | marcuscom-ports-d3b75ddc283cd60dcb8cc37b978a84ba138f9de8.tar marcuscom-ports-d3b75ddc283cd60dcb8cc37b978a84ba138f9de8.tar.gz marcuscom-ports-d3b75ddc283cd60dcb8cc37b978a84ba138f9de8.tar.bz2 marcuscom-ports-d3b75ddc283cd60dcb8cc37b978a84ba138f9de8.tar.lz marcuscom-ports-d3b75ddc283cd60dcb8cc37b978a84ba138f9de8.tar.xz marcuscom-ports-d3b75ddc283cd60dcb8cc37b978a84ba138f9de8.tar.zst marcuscom-ports-d3b75ddc283cd60dcb8cc37b978a84ba138f9de8.zip |
- Chase nss move
- Bump PORTREVISION to force rebuild of .la files for gaim plugins
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8035 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | net-im/gaim/Makefile | 139 | ||||
-rw-r--r-- | net-im/gaim/distinfo | 3 | ||||
-rw-r--r-- | net-im/gaim/files/extra-patch-src_gtkconv.c | 13 | ||||
-rw-r--r-- | net-im/gaim/files/patch-configure | 15 | ||||
-rw-r--r-- | net-im/gaim/files/patch-plugins_perl_Makefile.in | 10 | ||||
-rw-r--r-- | net-im/gaim/files/patch-src_gtkimhtml.c | 22 | ||||
-rw-r--r-- | net-im/gaim/files/patch-src_privacy.c | 37 | ||||
-rw-r--r-- | net-im/gaim/files/patch-src_protocols_oscar_ft.c | 10 | ||||
-rw-r--r-- | net-im/gaim/files/patch-src_protocols_oscar_oscar.c | 11 | ||||
-rw-r--r-- | net-im/gaim/pkg-descr | 21 | ||||
-rw-r--r-- | net-im/gaim/pkg-plist | 530 |
11 files changed, 811 insertions, 0 deletions
diff --git a/net-im/gaim/Makefile b/net-im/gaim/Makefile new file mode 100644 index 000000000..8bb2aac73 --- /dev/null +++ b/net-im/gaim/Makefile @@ -0,0 +1,139 @@ +# New ports collection makefile for: gaim +# Date created: 26 Mar 1999 +# Whom: Jim Mock <jim@FreeBSD.org> +# +# $FreeBSD: ports/net-im/gaim/Makefile,v 1.191 2006/10/14 08:54:37 marcus Exp $ +# + +PORTNAME= gaim +PORTVERSION= 1.5.0 +PORTREVISION= 9 +CATEGORIES?= net-im +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER?= marcus@FreeBSD.org +COMMENT= Multi-protocol instant messaging client + +LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification + +CONFLICTS?= ja-gaim-[0-9]* gaim-devel-2* + +USE_XLIB= yes +USE_GETTEXT= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gnomehack gtk20 +WANT_GNOME= yes +USE_BZIP2= yes +INSTALLS_SHLIB= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-static=yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ + LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" \ + PTHREAD_LIB="${PTHREAD_LIBS}" + +MAN1= gaim.1 gaim-remote.1 + +OPTIONS= BIG5 "With Big5 Chinese input fix" off \ + SILC "Secure Internet Live Conferencing support" off \ + GTKSPELL "spell checking support" on \ + AUDIO "audio support" on \ + GNUTLS "GNUTLS encryption support" off \ + NSS "Mozilla NSS encryption support" on \ + PERL "Perl scripting" off \ + TCLTK "Tcl/Tk scripting" off + +.include <bsd.port.pre.mk> + +.if ${HAVE_GNOME:Mevolutiondataserver}!="" +USE_GNOME+= evolutiondataserver +PLIST_SUB+= EVO="" +.else +CONFIGURE_ARGS+=--disable-gevolution +PLIST_SUB+= EVO="@comment " +.endif + +.if defined(WITH_GNUTLS) +LIB_DEPENDS+= gnutls.13:${PORTSDIR}/security/gnutls +.else +CONFIGURE_ARGS+= --disable-gnutls +.endif + +.if defined(WITH_SILC) +LIB_DEPENDS+= silcclient-1.0.3:${PORTSDIR}/devel/silc-toolkit +CONFIGURE_ARGS+= --with-silc-includes=${LOCALBASE}/include/silc +PLIST_SUB+= SILC="" +.else +PLIST_SUB+= SILC="@comment " +.endif + +.if !defined(WITHOUT_NSS) +LIB_DEPENDS+= nss3:${PORTSDIR}/security/nss +CONFIGURE_ARGS+= --with-nspr-includes=${LOCALBASE}/include/nspr \ + --with-nspr-libs=${LOCALBASE}/lib \ + --with-nss-includes=${LOCALBASE}/include/nss/nss \ + --with-nss-libs=${LOCALBASE}/lib/nss +.else +CONFIGURE_ARGS+= --disable-nss +.endif + +.if defined(WITH_PERL) && ${PERL_LEVEL} >= 500800 +USE_PERL5= yes +CONFIGURE_ARGS+= --with-perl-lib=site +PLIST_SUB+= PERL:="" +MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} +MAN3+= Gaim.3 +.else +CONFIGURE_ARGS+= --disable-perl +PLIST_SUB+= PERL:="@comment " +.endif + +.if !defined(WITHOUT_GTKSPELL) +LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell +.else +CONFIGURE_ARGS+= --disable-gtkspell +.endif + +.if defined(WITH_TCLTK) +TCLTK_VER?= 8.4 # user can override it +TCLTK_VER_NODOT= ${TCLTK_VER:S/.//} +.if ${TCLTK_VER} != 8.3 && ${TCLTK_VER} != 8.4 +. error Currently GAIM can only use Tcl/Tk 8.3 or 8.4 +.endif +LIB_DEPENDS+= tk${TCLTK_VER_NODOT}:${PORTSDIR}/x11-toolkits/tk${TCLTK_VER_NODOT} +CONFIGURE_ARGS+=--with-tclconfig=${LOCALBASE}/lib/tcl${TCLTK_VER} \ + --with-tkconfig=${LOCALBASE}/lib/tk${TCLTK_VER} +CFLAGS+= -I${LOCALBASE}/include/tk${TCLTK_VER} -I${LOCALBASE}/include/tcl${TCLTK_VER} +PLIST_SUB+= TCL:="" +.else +PLIST_SUB+= TCL:="@comment " +.endif + +.if !defined(WITHOUT_AUDIO) +LIB_DEPENDS+= ao.3:${PORTSDIR}/audio/libao \ + audiofile.0:${PORTSDIR}/audio/libaudiofile +.else +CONFIGURE_ARGS+= --disable-audio +.endif + +pre-everything:: +.if defined(WITH_PERL) && ${PERL_LEVEL} < 500800 + @${ECHO_MSG} "WARNING: Perl scripting disabled (Perl 5.8 requirement not met)." +.endif +.if defined(WITHOUT_GNUTLS) && defined(WITHOUT_NSS) + @${ECHO_MSG} "WARNING: In order to use MSN, you must enable the GNUTLS and/or NSS options." +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' \ + -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + -e 's|-lpthread|${PTHREAD_LIBS:S/"//g}|g' \ + -e 's|-lsilc -lsilcclient ${PTHREAD_LIBS} -ldl|-lsilc -lsilcclient ${PTHREAD_LIBS} -liconv|' \ + -e 's|TCL_VERSION found but 8.3 required|TCL_VERSION found but ${TCLTK_VER} required|g' \ + -e 's|TCL_MINOR_VERSION" -ne 3|TCL_MINOR_VERSION" -ne ${TCLTK_VER:E}|' \ + ${WRKSRC}/configure +.if defined(WITH_BIG5) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_gtkconv.c +.endif + +.include <bsd.port.post.mk> diff --git a/net-im/gaim/distinfo b/net-im/gaim/distinfo new file mode 100644 index 000000000..4dc6d7bdd --- /dev/null +++ b/net-im/gaim/distinfo @@ -0,0 +1,3 @@ +MD5 (gaim-1.5.0.tar.bz2) = 9205321ac11fad271c90f2f0d7c5e7ce +SHA256 (gaim-1.5.0.tar.bz2) = 58e3b0340cfc9e54e46f8d8835e5a02e31201c9ed8820bbb4cea36c59b9682aa +SIZE (gaim-1.5.0.tar.bz2) = 6123237 diff --git a/net-im/gaim/files/extra-patch-src_gtkconv.c b/net-im/gaim/files/extra-patch-src_gtkconv.c new file mode 100644 index 000000000..68f770a02 --- /dev/null +++ b/net-im/gaim/files/extra-patch-src_gtkconv.c @@ -0,0 +1,13 @@ +--- src.orig/gtkconv.c Mon May 9 08:36:54 2005 ++++ src/gtkconv.c Mon May 9 08:37:32 2005 +@@ -6369,8 +6369,8 @@ + /* Conversations */ + gaim_prefs_add_none("/gaim/gtk/conversations"); + gaim_prefs_add_bool("/gaim/gtk/conversations/close_on_tabs", TRUE); +- gaim_prefs_add_bool("/gaim/gtk/conversations/ctrl_enter_sends", FALSE); +- gaim_prefs_add_bool("/gaim/gtk/conversations/enter_sends", TRUE); ++ gaim_prefs_add_bool("/gaim/gtk/conversations/ctrl_enter_sends", TRUE); ++ gaim_prefs_add_bool("/gaim/gtk/conversations/enter_sends", FALSE); + gaim_prefs_add_bool("/gaim/gtk/conversations/escape_closes", FALSE); + gaim_prefs_add_bool("/gaim/gtk/conversations/send_formatting", FALSE); + gaim_prefs_add_bool("/gaim/gtk/conversations/send_bold", FALSE); diff --git a/net-im/gaim/files/patch-configure b/net-im/gaim/files/patch-configure new file mode 100644 index 000000000..8ce3e483b --- /dev/null +++ b/net-im/gaim/files/patch-configure @@ -0,0 +1,15 @@ +--- configure.orig Thu May 12 01:20:01 2005 ++++ configure Thu May 12 01:20:31 2005 +@@ -33445,10 +33445,10 @@ + + enable_nss="no" + else +- nsprlibs="-ldl $with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB" ++ nsprlibs="$with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB" + fi + else +- nsprlibs="-ldl -lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" ++ nsprlibs="-lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" + fi + + echo "$as_me:$LINENO: checking for Mozilla nspr libraries" >&5 diff --git a/net-im/gaim/files/patch-plugins_perl_Makefile.in b/net-im/gaim/files/patch-plugins_perl_Makefile.in new file mode 100644 index 000000000..bb6daa393 --- /dev/null +++ b/net-im/gaim/files/patch-plugins_perl_Makefile.in @@ -0,0 +1,10 @@ +--- plugins/perl/Makefile.in.orig Sun Feb 20 15:39:08 2005 ++++ plugins/perl/Makefile.in Sun Feb 20 15:40:16 2005 +@@ -680,6 +680,7 @@ + done; \ + fi + @cd common && $(perlpath) Makefile.PL $(PERL_MM_PARAMS) ++ @cd common && $(perlpath) -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile + + common/Makefile.PL: common/Makefile.PL.in $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) diff --git a/net-im/gaim/files/patch-src_gtkimhtml.c b/net-im/gaim/files/patch-src_gtkimhtml.c new file mode 100644 index 000000000..9430baae1 --- /dev/null +++ b/net-im/gaim/files/patch-src_gtkimhtml.c @@ -0,0 +1,22 @@ +--- src/gtkimhtml.c.orig Sun May 30 18:17:14 2004 ++++ src/gtkimhtml.c Sun May 30 18:19:47 2004 +@@ -782,7 +782,7 @@ + if (selection_data->length >= 2 && + (*(guint16 *)text == 0xfeff || *(guint16 *)text == 0xfffe)) { + /* This is UCS-2 */ +- char *tmp; ++ /*char *tmp;*/ + char *utf8 = g_convert(text, selection_data->length, "UTF-8", "UCS-2", NULL, NULL, NULL); + g_free(text); + text = utf8; +@@ -790,8 +790,8 @@ + gaim_debug_warning("gtkimhtml", "g_convert from UCS-2 failed in paste_received_cb\n"); + return; + } +- tmp = g_utf8_next_char(text); +- memmove(text, tmp, strlen(tmp) + 1); ++ /*tmp = g_utf8_next_char(text);*/ ++ /*memmove(text, tmp, strlen(tmp) + 1);*/ + } + + if (!(*text) || !g_utf8_validate(text, -1, NULL)) { diff --git a/net-im/gaim/files/patch-src_privacy.c b/net-im/gaim/files/patch-src_privacy.c new file mode 100644 index 000000000..facd89478 --- /dev/null +++ b/net-im/gaim/files/patch-src_privacy.c @@ -0,0 +1,37 @@ +RCS file: /cvsroot/gaim/gaim/src/privacy.c,v +retrieving revision 1.16 +retrieving revision 1.18 +diff -u -r1.16 -r1.18 +--- src/privacy.c 2005/07/17 23:36:33 1.16 ++++ src/privacy.c 2006/02/07 02:49:56 1.18 +@@ -85,8 +85,8 @@ + if (l == NULL) + return FALSE; + +- account->permit = g_slist_remove(account->permit, l->data); + g_free(l->data); ++ account->permit = g_slist_delete_link(account->permit, l); + + if (!local_only && gaim_account_is_connected(account)) + serv_rem_permit(gaim_account_get_connection(account), who); +@@ -156,15 +156,16 @@ + if (l == NULL) + return FALSE; + +- account->deny = g_slist_remove(account->deny, l->data); +- g_free(l->data); ++ name = l->data; ++ account->deny = g_slist_delete_link(account->deny, l); + + if (!local_only && gaim_account_is_connected(account)) +- serv_rem_deny(gaim_account_get_connection(account), who); ++ serv_rem_deny(gaim_account_get_connection(account), name); + + if (privacy_ops != NULL && privacy_ops->deny_removed != NULL) +- privacy_ops->deny_removed(account, who); ++ privacy_ops->deny_removed(account, name); + ++ g_free(name); + gaim_blist_schedule_save(); + + return TRUE; diff --git a/net-im/gaim/files/patch-src_protocols_oscar_ft.c b/net-im/gaim/files/patch-src_protocols_oscar_ft.c new file mode 100644 index 000000000..926db5f44 --- /dev/null +++ b/net-im/gaim/files/patch-src_protocols_oscar_ft.c @@ -0,0 +1,10 @@ +--- src/protocols/oscar/ft.c.orig Sat Jan 10 14:05:46 2004 ++++ src/protocols/oscar/ft.c Sat Jan 10 14:07:58 2004 +@@ -49,6 +49,7 @@ + #ifndef _WIN32 + #include <stdio.h> + #include <netdb.h> ++#include <limits.h> + #include <sys/socket.h> + #include <netinet/in.h> + #include <sys/utsname.h> /* for aim_odc_initiate */ diff --git a/net-im/gaim/files/patch-src_protocols_oscar_oscar.c b/net-im/gaim/files/patch-src_protocols_oscar_oscar.c new file mode 100644 index 000000000..43a291b29 --- /dev/null +++ b/net-im/gaim/files/patch-src_protocols_oscar_oscar.c @@ -0,0 +1,11 @@ +--- src/protocols/oscar/oscar.c.orig Wed Aug 25 21:29:00 2004 ++++ src/protocols/oscar/oscar.c Thu Aug 26 21:55:32 2004 +@@ -3247,7 +3247,7 @@ + * Note: There *may* be some clients which send messages as HTML formatted - + * they need to be special-cased somehow. + */ +- if (isdigit(gaim_account_get_username(account)[0]) && isdigit(userinfo->sn[0])) { ++ if (isdigit(gaim_account_get_username(account)[0]) && isdigit(userinfo->sn[0]) && g_strncasecmp(tmp, "<HTML>", 6)) { + /* being recevied by ICQ from ICQ - escape HTML so it is displayed as sent */ + gchar *tmp2 = gaim_escape_html(tmp); + g_free(tmp); diff --git a/net-im/gaim/pkg-descr b/net-im/gaim/pkg-descr new file mode 100644 index 000000000..d4901fdf0 --- /dev/null +++ b/net-im/gaim/pkg-descr @@ -0,0 +1,21 @@ +Gaim is a multi-protocol instant messaging client. It is compatible with AIM +(Oscar and TOC protocols), ICQ, MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu, +and Zephyr networks. + +Gaim users can log in to multiple accounts on multiple IM networks +simultaneously. This means that you can be chatting with friends on AOL +Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an +IRC channel all at the same time. + +Gaim supports many features of the various networks, such as file transfer +(coming soon), away messages, typing notification, and MSN window closing +notification. It also goes beyond that and provides many unique features. A +few popular features are Buddy Pounces, which give the ability to notify you, +send a message, play a sound, or run a program when a specific buddy goes away, +signs online, or returns from idle; and plugins, consisting of text +replacement, a buddy ticker, extended message notification, iconify on away, +and more. + +(Adapted from the About Gaim page.) + +WWW: http://gaim.sourceforge.net/ diff --git a/net-im/gaim/pkg-plist b/net-im/gaim/pkg-plist new file mode 100644 index 000000000..1e669c973 --- /dev/null +++ b/net-im/gaim/pkg-plist @@ -0,0 +1,530 @@ +bin/gaim +bin/gaim-remote +include/gaim/account.h +include/gaim/accountopt.h +include/gaim/away.h +include/gaim/blist.h +include/gaim/buddyicon.h +include/gaim/cmds.h +include/gaim/config.h +include/gaim/connection.h +include/gaim/conversation.h +include/gaim/core.h +include/gaim/debug.h +include/gaim/dnd-hints.h +include/gaim/eventloop.h +include/gaim/ft.h +include/gaim/gaim-disclosure.h +include/gaim/gaim.h +include/gaim/gtkaccount.h +include/gaim/gtkblist.h +include/gaim/gtkcellrendererprogress.h +include/gaim/gtkconn.h +include/gaim/gtkconv.h +include/gaim/gtkdebug.h +include/gaim/gtkdialogs.h +include/gaim/gtkeventloop.h +include/gaim/gtkft.h +include/gaim/gtkgaim.h +include/gaim/gtkimhtml.h +include/gaim/gtkimhtmltoolbar.h +include/gaim/gtklog.h +include/gaim/gtknotify.h +include/gaim/gtkplugin.h +include/gaim/gtkpluginpref.h +include/gaim/gtkpounce.h +include/gaim/gtkprefs.h +include/gaim/gtkprivacy.h +include/gaim/gtkrequest.h +include/gaim/gtkroomlist.h +include/gaim/gtksound.h +include/gaim/gtksourceiter.h +include/gaim/gtkutils.h +include/gaim/imgstore.h +include/gaim/internal.h +include/gaim/log.h +include/gaim/md5.h +include/gaim/network.h +include/gaim/notify.h +include/gaim/plugin.h +include/gaim/pluginpref.h +include/gaim/pounce.h +include/gaim/prefix.h +include/gaim/prefs.h +include/gaim/privacy.h +include/gaim/proxy.h +include/gaim/prpl.h +include/gaim/remote-socket.h +include/gaim/remote.h +include/gaim/request.h +include/gaim/roomlist.h +include/gaim/server.h +include/gaim/sha.h +include/gaim/signals.h +include/gaim/sound.h +include/gaim/sslconn.h +include/gaim/status.h +include/gaim/stock.h +include/gaim/stringref.h +include/gaim/util.h +include/gaim/value.h +include/gaim/version.h +include/gaim/xmlnode.h +lib/gaim/autorecon.a +lib/gaim/autorecon.la +lib/gaim/autorecon.so +lib/gaim/docklet.a +lib/gaim/docklet.la +lib/gaim/docklet.so +lib/gaim/extplacement.a +lib/gaim/extplacement.la +lib/gaim/extplacement.so +lib/gaim/gaim-remote.a +lib/gaim/gaim-remote.la +lib/gaim/gaim-remote.so +lib/gaim/gestures.a +lib/gaim/gestures.la +lib/gaim/gestures.so +%%EVO%%lib/gaim/gevolution.a +%%EVO%%lib/gaim/gevolution.la +%%EVO%%lib/gaim/gevolution.so +lib/gaim/history.a +lib/gaim/history.la +lib/gaim/history.so +lib/gaim/iconaway.a +lib/gaim/iconaway.la +lib/gaim/iconaway.so +lib/gaim/idle.a +lib/gaim/idle.la +lib/gaim/idle.so +lib/gaim/libgg.a +lib/gaim/libgg.la +lib/gaim/libgg.so +lib/gaim/libirc.a +lib/gaim/libirc.la +lib/gaim/libirc.so +lib/gaim/libjabber.a +lib/gaim/libjabber.la +lib/gaim/libjabber.so +lib/gaim/libmsn.a +lib/gaim/libmsn.la +lib/gaim/libmsn.so +lib/gaim/libnapster.a +lib/gaim/libnapster.la +lib/gaim/libnapster.so +lib/gaim/libnovell.a +lib/gaim/libnovell.la +lib/gaim/libnovell.so +lib/gaim/liboscar.a +lib/gaim/liboscar.la +lib/gaim/liboscar.so +%%SILC%%lib/gaim/libsilcgaim.a +%%SILC%%lib/gaim/libsilcgaim.la +%%SILC%%lib/gaim/libsilcgaim.so +lib/gaim/libyahoo.a +lib/gaim/libyahoo.la +lib/gaim/libyahoo.so +lib/gaim/libzephyr.a +lib/gaim/libzephyr.la +lib/gaim/libzephyr.so +lib/gaim/notify.a +lib/gaim/notify.la +lib/gaim/notify.so +%%PERL:%%lib/gaim/perl.a +%%PERL:%%lib/gaim/perl.la +%%PERL:%%lib/gaim/perl.so +lib/gaim/spellchk.a +lib/gaim/spellchk.la +lib/gaim/spellchk.so +lib/gaim/relnot.a +lib/gaim/relnot.la +lib/gaim/relnot.so +lib/gaim/ssl-gnutls.a +lib/gaim/ssl-gnutls.la +lib/gaim/ssl-gnutls.so +lib/gaim/ssl-nss.a +lib/gaim/ssl-nss.la +lib/gaim/ssl-nss.so +lib/gaim/ssl.a +lib/gaim/ssl.la +lib/gaim/ssl.so +lib/gaim/statenotify.a +lib/gaim/statenotify.la +lib/gaim/statenotify.so +%%TCL:%%lib/gaim/tcl.a +%%TCL:%%lib/gaim/tcl.la +%%TCL:%%lib/gaim/tcl.so +lib/gaim/ticker.a +lib/gaim/ticker.la +lib/gaim/ticker.so +lib/gaim/timestamp.a +lib/gaim/timestamp.la +lib/gaim/timestamp.so +lib/libgaim-remote.a +lib/libgaim-remote.la +lib/libgaim-remote.so +lib/libgaim-remote.so.0 +%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/autosplit.ix +%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/Gaim.so +%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/Gaim.bs +%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/.packlist +%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/Gaim.pm +libdata/pkgconfig/gaim.pc +share/gnome/applications/gaim.desktop +share/gnome/pixmaps/gaim.png +share/gnome/pixmaps/gaim/buttons/about_menu.png +share/gnome/pixmaps/gaim/buttons/accounts.png +share/gnome/pixmaps/gaim/buttons/change-bgcolor-small.png +share/gnome/pixmaps/gaim/buttons/change-fgcolor-small.png +share/gnome/pixmaps/gaim/buttons/edit.png +share/gnome/pixmaps/gaim/buttons/insert-image-small.png +share/gnome/pixmaps/gaim/buttons/insert-link-small.png +share/gnome/pixmaps/gaim/buttons/insert-smiley-small.png +share/gnome/pixmaps/gaim/buttons/pause.png +share/gnome/pixmaps/gaim/buttons/send-im.png +share/gnome/pixmaps/gaim/buttons/text_bigger.png +share/gnome/pixmaps/gaim/buttons/text_normal.png +share/gnome/pixmaps/gaim/buttons/text_smaller.png +share/gnome/pixmaps/gaim/dialogs/gaim_auth.png +share/gnome/pixmaps/gaim/dialogs/gaim_cool.png +share/gnome/pixmaps/gaim/dialogs/gaim_error.png +share/gnome/pixmaps/gaim/dialogs/gaim_info.png +share/gnome/pixmaps/gaim/dialogs/gaim_question.png +share/gnome/pixmaps/gaim/dialogs/gaim_warning.png +share/gnome/pixmaps/gaim/icons/away.png +share/gnome/pixmaps/gaim/icons/connect.png +share/gnome/pixmaps/gaim/icons/info.png +share/gnome/pixmaps/gaim/icons/msgpend.png +share/gnome/pixmaps/gaim/icons/msgunread.png +share/gnome/pixmaps/gaim/icons/offline.png +share/gnome/pixmaps/gaim/icons/online.png +share/gnome/pixmaps/gaim/logo.png +share/gnome/pixmaps/gaim/smileys/default/angel.png +share/gnome/pixmaps/gaim/smileys/default/bigsmile.png +share/gnome/pixmaps/gaim/smileys/default/burp.png +share/gnome/pixmaps/gaim/smileys/default/cool.png +share/gnome/pixmaps/gaim/smileys/default/crazy.png +share/gnome/pixmaps/gaim/smileys/default/crossedlips.png +share/gnome/pixmaps/gaim/smileys/default/cry.png +share/gnome/pixmaps/gaim/smileys/default/download.png +share/gnome/pixmaps/gaim/smileys/default/embarrassed.png +share/gnome/pixmaps/gaim/smileys/default/farted.png +share/gnome/pixmaps/gaim/smileys/default/kiss.png +share/gnome/pixmaps/gaim/smileys/default/luke.png +share/gnome/pixmaps/gaim/smileys/default/moneymouth.png +share/gnome/pixmaps/gaim/smileys/default/mrt.png +share/gnome/pixmaps/gaim/smileys/default/msn_angel.png +share/gnome/pixmaps/gaim/smileys/default/msn_angry.png +share/gnome/pixmaps/gaim/smileys/default/msn_away.png +share/gnome/pixmaps/gaim/smileys/default/msn_bat.gif +share/gnome/pixmaps/gaim/smileys/default/msn_beer.png +share/gnome/pixmaps/gaim/smileys/default/msn_bowl.png +share/gnome/pixmaps/gaim/smileys/default/msn_boy.png +share/gnome/pixmaps/gaim/smileys/default/msn_brb.png +share/gnome/pixmaps/gaim/smileys/default/msn_brheart.png +share/gnome/pixmaps/gaim/smileys/default/msn_cake.gif +share/gnome/pixmaps/gaim/smileys/default/msn_car.png +share/gnome/pixmaps/gaim/smileys/default/msn_cat.png +share/gnome/pixmaps/gaim/smileys/default/msn_cellphone.png +share/gnome/pixmaps/gaim/smileys/default/msn_cigarette.gif +share/gnome/pixmaps/gaim/smileys/default/msn_clock.png +share/gnome/pixmaps/gaim/smileys/default/msn_coffee.png +share/gnome/pixmaps/gaim/smileys/default/msn_coins.png +share/gnome/pixmaps/gaim/smileys/default/msn_computer.png +share/gnome/pixmaps/gaim/smileys/default/msn_cry.gif +share/gnome/pixmaps/gaim/smileys/default/msn_deadflower.png +share/gnome/pixmaps/gaim/smileys/default/msn_devil.png +share/gnome/pixmaps/gaim/smileys/default/msn_dog.png +share/gnome/pixmaps/gaim/smileys/default/msn_dontknow.gif +share/gnome/pixmaps/gaim/smileys/default/msn_donttell.png +share/gnome/pixmaps/gaim/smileys/default/msn_drink.png +share/gnome/pixmaps/gaim/smileys/default/msn_email.png +share/gnome/pixmaps/gaim/smileys/default/msn_embarrassed.png +share/gnome/pixmaps/gaim/smileys/default/msn_eyeroll.gif +share/gnome/pixmaps/gaim/smileys/default/msn_film.png +share/gnome/pixmaps/gaim/smileys/default/msn_fingerscrossed.png +share/gnome/pixmaps/gaim/smileys/default/msn_flower.png +share/gnome/pixmaps/gaim/smileys/default/msn_gift.png +share/gnome/pixmaps/gaim/smileys/default/msn_girl.png +share/gnome/pixmaps/gaim/smileys/default/msn_handcuffs.png +share/gnome/pixmaps/gaim/smileys/default/msn_heart.png +share/gnome/pixmaps/gaim/smileys/default/msn_highfive.png +share/gnome/pixmaps/gaim/smileys/default/msn_hot.png +share/gnome/pixmaps/gaim/smileys/default/msn_icon.png +share/gnome/pixmaps/gaim/smileys/default/msn_idea.png +share/gnome/pixmaps/gaim/smileys/default/msn_island.png +share/gnome/pixmaps/gaim/smileys/default/msn_kiss.png +share/gnome/pixmaps/gaim/smileys/default/msn_laugh.png +share/gnome/pixmaps/gaim/smileys/default/msn_lightning.gif +share/gnome/pixmaps/gaim/smileys/default/msn_nerd.png +share/gnome/pixmaps/gaim/smileys/default/msn_neutral.png +share/gnome/pixmaps/gaim/smileys/default/msn_note.png +share/gnome/pixmaps/gaim/smileys/default/msn_occ.png +share/gnome/pixmaps/gaim/smileys/default/msn_online.png +share/gnome/pixmaps/gaim/smileys/default/msn_ooooh.png +share/gnome/pixmaps/gaim/smileys/default/msn_party.gif +share/gnome/pixmaps/gaim/smileys/default/msn_phone.png +share/gnome/pixmaps/gaim/smileys/default/msn_photo.png +share/gnome/pixmaps/gaim/smileys/default/msn_pizza.png +share/gnome/pixmaps/gaim/smileys/default/msn_plane.png +share/gnome/pixmaps/gaim/smileys/default/msn_plate.png +share/gnome/pixmaps/gaim/smileys/default/msn_question.png +share/gnome/pixmaps/gaim/smileys/default/msn_rainbow.png +share/gnome/pixmaps/gaim/smileys/default/msn_run.png +share/gnome/pixmaps/gaim/smileys/default/msn_runback.png +share/gnome/pixmaps/gaim/smileys/default/msn_sad.png +share/gnome/pixmaps/gaim/smileys/default/msn_sarcastic.png +share/gnome/pixmaps/gaim/smileys/default/msn_secret.png +share/gnome/pixmaps/gaim/smileys/default/msn_sheep.png +share/gnome/pixmaps/gaim/smileys/default/msn_sick.png +share/gnome/pixmaps/gaim/smileys/default/msn_sleep.png +share/gnome/pixmaps/gaim/smileys/default/msn_sleepy.gif +share/gnome/pixmaps/gaim/smileys/default/msn_smiley.png +share/gnome/pixmaps/gaim/smileys/default/msn_snail.png +share/gnome/pixmaps/gaim/smileys/default/msn_soccer.png +share/gnome/pixmaps/gaim/smileys/default/msn_star.png +share/gnome/pixmaps/gaim/smileys/default/msn_stormy.png +share/gnome/pixmaps/gaim/smileys/default/msn_sun.png +share/gnome/pixmaps/gaim/smileys/default/msn_sunglasses.png +share/gnome/pixmaps/gaim/smileys/default/msn_teeth.png +share/gnome/pixmaps/gaim/smileys/default/msn_think.gif +share/gnome/pixmaps/gaim/smileys/default/msn_thumbdown.png +share/gnome/pixmaps/gaim/smileys/default/msn_thumbup.png +share/gnome/pixmaps/gaim/smileys/default/msn_tongue.png +share/gnome/pixmaps/gaim/smileys/default/msn_turtle.png +share/gnome/pixmaps/gaim/smileys/default/msn_umbrella.png +share/gnome/pixmaps/gaim/smileys/default/msn_weird.png +share/gnome/pixmaps/gaim/smileys/default/msn_wink.gif +share/gnome/pixmaps/gaim/smileys/default/msn_xbox.png +share/gnome/pixmaps/gaim/smileys/default/oneeye.png +share/gnome/pixmaps/gaim/smileys/default/sad.png +share/gnome/pixmaps/gaim/smileys/default/scream.png +share/gnome/pixmaps/gaim/smileys/default/smile.png +share/gnome/pixmaps/gaim/smileys/default/theme +share/gnome/pixmaps/gaim/smileys/default/think.png +share/gnome/pixmaps/gaim/smileys/default/tongue.png +share/gnome/pixmaps/gaim/smileys/default/wink.png +share/gnome/pixmaps/gaim/smileys/default/yahoo_alien.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_alien2.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_angel.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_angry.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_batting.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_beatup.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_bigsmile.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_blush.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_brokenheart.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_bye.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_chicken.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_clap.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_clown.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_coffee.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_cow.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_cowboy.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_cry.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_dance.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_devil.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_doh.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_drool.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_eyebrow.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_eyeroll.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_femalefighter.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_flag.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_flower.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_frustrated.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_ghost.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_giggle.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_glasses.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_huggs.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_hypnotized.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_idea.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_kiss.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_laughloud.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_liar.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_loser.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_love.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_madtongue.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_malefighter1.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_malefighter2.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_mean.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_moneyeyes.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_monkey.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_nailbiting.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_neutral.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_ooooh.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_party.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_peace.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_pig.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_pray.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_pumpkin.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_question.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_rotfl.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_sad.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_shame.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_shamrock.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_shhhh.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_sick.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_sighing.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_silent.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_silly.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_sleep.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_smiley.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_star.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_sunglas.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_sweating.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_talktohand.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_think.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_tired.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_tongue.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_waiting.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_waving.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_whistling.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_wink.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_worried.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_worship.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_yingyang.gif +share/gnome/pixmaps/gaim/smileys/default/yahoo_youkiddingme.gif +share/gnome/pixmaps/gaim/smileys/default/yell.png +share/gnome/pixmaps/gaim/smileys/none/theme +share/gnome/pixmaps/gaim/status/default/activebuddy.png +share/gnome/pixmaps/gaim/status/default/admin.png +share/gnome/pixmaps/gaim/status/default/aim.png +share/gnome/pixmaps/gaim/status/default/aol.png +share/gnome/pixmaps/gaim/status/default/away.png +share/gnome/pixmaps/gaim/status/default/blocked.png +share/gnome/pixmaps/gaim/status/default/dnd.png +share/gnome/pixmaps/gaim/status/default/extendedaway.png +share/gnome/pixmaps/gaim/status/default/female.png +share/gnome/pixmaps/gaim/status/default/founder.png +share/gnome/pixmaps/gaim/status/default/freeforchat.png +share/gnome/pixmaps/gaim/status/default/gadu-gadu.png +share/gnome/pixmaps/gaim/status/default/game.png +share/gnome/pixmaps/gaim/status/default/halfop.png +share/gnome/pixmaps/gaim/status/default/hiptop.png +share/gnome/pixmaps/gaim/status/default/icq.png +share/gnome/pixmaps/gaim/status/default/ignored.png +share/gnome/pixmaps/gaim/status/default/invisible.png +share/gnome/pixmaps/gaim/status/default/irc.png +share/gnome/pixmaps/gaim/status/default/jabber.png +share/gnome/pixmaps/gaim/status/default/login.png +share/gnome/pixmaps/gaim/status/default/logout.png +share/gnome/pixmaps/gaim/status/default/male.png +share/gnome/pixmaps/gaim/status/default/msn.png +share/gnome/pixmaps/gaim/status/default/na.png +share/gnome/pixmaps/gaim/status/default/napster.png +share/gnome/pixmaps/gaim/status/default/notauthorized.png +share/gnome/pixmaps/gaim/status/default/novell.png +share/gnome/pixmaps/gaim/status/default/nr.png +share/gnome/pixmaps/gaim/status/default/occupied.png +share/gnome/pixmaps/gaim/status/default/offline.png +share/gnome/pixmaps/gaim/status/default/op.png +share/gnome/pixmaps/gaim/status/default/rendezvous.png +share/gnome/pixmaps/gaim/status/default/secure.png +share/gnome/pixmaps/gaim/status/default/silc.png +share/gnome/pixmaps/gaim/status/default/trepia.png +share/gnome/pixmaps/gaim/status/default/voice.png +share/gnome/pixmaps/gaim/status/default/wireless.png +share/gnome/pixmaps/gaim/status/default/yahoo.png +share/gnome/pixmaps/gaim/status/default/zephyr.png +share/gnome/pixmaps/gaim/tb_drag_arrow_down.xpm +share/gnome/pixmaps/gaim/tb_drag_arrow_left.xpm +share/gnome/pixmaps/gaim/tb_drag_arrow_right.xpm +share/gnome/pixmaps/gaim/tb_drag_arrow_up.xpm +share/gnome/pixmaps/gaim/typed.png +share/gnome/pixmaps/gaim/typing.png +share/gnome/sounds/gaim/arrive.wav +share/gnome/sounds/gaim/leave.wav +share/gnome/sounds/gaim/receive.wav +share/gnome/sounds/gaim/redalert.wav +share/gnome/sounds/gaim/send.wav +share/locale/am/LC_MESSAGES/gaim.mo +share/locale/az/LC_MESSAGES/gaim.mo +share/locale/bg/LC_MESSAGES/gaim.mo +share/locale/ca/LC_MESSAGES/gaim.mo +share/locale/cs/LC_MESSAGES/gaim.mo +share/locale/da/LC_MESSAGES/gaim.mo +share/locale/de/LC_MESSAGES/gaim.mo +share/locale/en_AU/LC_MESSAGES/gaim.mo +share/locale/en_CA/LC_MESSAGES/gaim.mo +share/locale/en_GB/LC_MESSAGES/gaim.mo +share/locale/es/LC_MESSAGES/gaim.mo +share/locale/et/LC_MESSAGES/gaim.mo +share/locale/fi/LC_MESSAGES/gaim.mo +share/locale/fr/LC_MESSAGES/gaim.mo +share/locale/he/LC_MESSAGES/gaim.mo +share/locale/hi/LC_MESSAGES/gaim.mo +share/locale/hu/LC_MESSAGES/gaim.mo +share/locale/it/LC_MESSAGES/gaim.mo +share/locale/ja/LC_MESSAGES/gaim.mo +share/locale/ka/LC_MESSAGES/gaim.mo +share/locale/ko/LC_MESSAGES/gaim.mo +share/locale/lt/LC_MESSAGES/gaim.mo +share/locale/mk/LC_MESSAGES/gaim.mo +share/locale/my_MM/LC_MESSAGES/gaim.mo +share/locale/nb/LC_MESSAGES/gaim.mo +share/locale/nl/LC_MESSAGES/gaim.mo +share/locale/nn/LC_MESSAGES/gaim.mo +share/locale/pa/LC_MESSAGES/gaim.mo +share/locale/pl/LC_MESSAGES/gaim.mo +share/locale/pt/LC_MESSAGES/gaim.mo +share/locale/pt_BR/LC_MESSAGES/gaim.mo +share/locale/ro/LC_MESSAGES/gaim.mo +share/locale/ru/LC_MESSAGES/gaim.mo +share/locale/sk/LC_MESSAGES/gaim.mo +share/locale/sl/LC_MESSAGES/gaim.mo +share/locale/sq/LC_MESSAGES/gaim.mo +share/locale/sr/LC_MESSAGES/gaim.mo +share/locale/sr@Latn/LC_MESSAGES/gaim.mo +share/locale/sv/LC_MESSAGES/gaim.mo +share/locale/tr/LC_MESSAGES/gaim.mo +share/locale/uk/LC_MESSAGES/gaim.mo +share/locale/vi/LC_MESSAGES/gaim.mo +share/locale/xh/LC_MESSAGES/gaim.mo +share/locale/zh_CN/LC_MESSAGES/gaim.mo +share/locale/zh_TW/LC_MESSAGES/gaim.mo +@dirrm share/gnome/sounds/gaim +@dirrm share/gnome/pixmaps/gaim/status/default +@dirrm share/gnome/pixmaps/gaim/status +@dirrm share/gnome/pixmaps/gaim/smileys/none +@dirrm share/gnome/pixmaps/gaim/smileys/default +@dirrm share/gnome/pixmaps/gaim/smileys +@dirrm share/gnome/pixmaps/gaim/icons +@dirrm share/gnome/pixmaps/gaim/dialogs +@dirrm share/gnome/pixmaps/gaim/buttons +@dirrm share/gnome/pixmaps/gaim +%%PERL:%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim +@dirrm lib/gaim +@dirrm include/gaim +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/my_MM/LC_MESSAGES +@dirrmtry share/locale/my_MM +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/en_AU/LC_MESSAGES +@dirrmtry share/locale/en_AU +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca |