summaryrefslogtreecommitdiffstats
path: root/net-im
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2007-05-01 19:33:33 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2007-05-01 19:33:33 +0800
commitc162eef2b49772e82a79e85393717ea5bf42bd9b (patch)
tree4f7040f565eb58da6c46017d3b827a57e7d961cc /net-im
parent0e22d0ed82e459e26b823ea055bdd9977ad8da83 (diff)
downloadmarcuscom-ports-c162eef2b49772e82a79e85393717ea5bf42bd9b.tar
marcuscom-ports-c162eef2b49772e82a79e85393717ea5bf42bd9b.tar.gz
marcuscom-ports-c162eef2b49772e82a79e85393717ea5bf42bd9b.tar.bz2
marcuscom-ports-c162eef2b49772e82a79e85393717ea5bf42bd9b.tar.lz
marcuscom-ports-c162eef2b49772e82a79e85393717ea5bf42bd9b.tar.xz
marcuscom-ports-c162eef2b49772e82a79e85393717ea5bf42bd9b.tar.zst
marcuscom-ports-c162eef2b49772e82a79e85393717ea5bf42bd9b.zip
share/gnome -> share (gnome2-fifth-toe is done!)
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8715 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net-im')
-rw-r--r--net-im/gaim/Makefile141
-rw-r--r--net-im/gaim/distinfo3
-rw-r--r--net-im/gaim/files/extra-patch-src_gtkconv.c13
-rw-r--r--net-im/gaim/files/patch-configure15
-rw-r--r--net-im/gaim/files/patch-plugins_perl_Makefile.in10
-rw-r--r--net-im/gaim/files/patch-src_gtkimhtml.c22
-rw-r--r--net-im/gaim/files/patch-src_privacy.c37
-rw-r--r--net-im/gaim/files/patch-src_protocols_oscar_ft.c10
-rw-r--r--net-im/gaim/files/patch-src_protocols_oscar_oscar.c11
-rw-r--r--net-im/gaim/pkg-descr21
-rw-r--r--net-im/gaim/pkg-plist530
11 files changed, 813 insertions, 0 deletions
diff --git a/net-im/gaim/Makefile b/net-im/gaim/Makefile
new file mode 100644
index 000000000..bf12f71a9
--- /dev/null
+++ b/net-im/gaim/Makefile
@@ -0,0 +1,141 @@
+# New ports collection makefile for: gaim
+# Date created: 26 Mar 1999
+# Whom: Jim Mock <jim@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gaim
+PORTVERSION= 1.5.0
+PORTREVISION= 11
+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_AUTOTOOLS= libtool:15
+USE_XLIB= yes
+USE_GETTEXT= yes
+USE_GMAKE= yes
+USE_GNOME= gnomeprefix gnomehack gtk20
+WANT_GNOME= yes
+USE_BZIP2= yes
+USE_LDCONFIG= 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.15:${PORTSDIR}/security/gnutls
+.else
+CONFIGURE_ARGS+= --disable-gnutls
+.endif
+
+.if defined(WITH_SILC)
+LIB_DEPENDS+= silcclient-1.0.4:${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|echo aout|echo elf|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..1f78c2dec
--- /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/applications/gaim.desktop
+share/pixmaps/gaim.png
+share/pixmaps/gaim/buttons/about_menu.png
+share/pixmaps/gaim/buttons/accounts.png
+share/pixmaps/gaim/buttons/change-bgcolor-small.png
+share/pixmaps/gaim/buttons/change-fgcolor-small.png
+share/pixmaps/gaim/buttons/edit.png
+share/pixmaps/gaim/buttons/insert-image-small.png
+share/pixmaps/gaim/buttons/insert-link-small.png
+share/pixmaps/gaim/buttons/insert-smiley-small.png
+share/pixmaps/gaim/buttons/pause.png
+share/pixmaps/gaim/buttons/send-im.png
+share/pixmaps/gaim/buttons/text_bigger.png
+share/pixmaps/gaim/buttons/text_normal.png
+share/pixmaps/gaim/buttons/text_smaller.png
+share/pixmaps/gaim/dialogs/gaim_auth.png
+share/pixmaps/gaim/dialogs/gaim_cool.png
+share/pixmaps/gaim/dialogs/gaim_error.png
+share/pixmaps/gaim/dialogs/gaim_info.png
+share/pixmaps/gaim/dialogs/gaim_question.png
+share/pixmaps/gaim/dialogs/gaim_warning.png
+share/pixmaps/gaim/icons/away.png
+share/pixmaps/gaim/icons/connect.png
+share/pixmaps/gaim/icons/info.png
+share/pixmaps/gaim/icons/msgpend.png
+share/pixmaps/gaim/icons/msgunread.png
+share/pixmaps/gaim/icons/offline.png
+share/pixmaps/gaim/icons/online.png
+share/pixmaps/gaim/logo.png
+share/pixmaps/gaim/smileys/default/angel.png
+share/pixmaps/gaim/smileys/default/bigsmile.png
+share/pixmaps/gaim/smileys/default/burp.png
+share/pixmaps/gaim/smileys/default/cool.png
+share/pixmaps/gaim/smileys/default/crazy.png
+share/pixmaps/gaim/smileys/default/crossedlips.png
+share/pixmaps/gaim/smileys/default/cry.png
+share/pixmaps/gaim/smileys/default/download.png
+share/pixmaps/gaim/smileys/default/embarrassed.png
+share/pixmaps/gaim/smileys/default/farted.png
+share/pixmaps/gaim/smileys/default/kiss.png
+share/pixmaps/gaim/smileys/default/luke.png
+share/pixmaps/gaim/smileys/default/moneymouth.png
+share/pixmaps/gaim/smileys/default/mrt.png
+share/pixmaps/gaim/smileys/default/msn_angel.png
+share/pixmaps/gaim/smileys/default/msn_angry.png
+share/pixmaps/gaim/smileys/default/msn_away.png
+share/pixmaps/gaim/smileys/default/msn_bat.gif
+share/pixmaps/gaim/smileys/default/msn_beer.png
+share/pixmaps/gaim/smileys/default/msn_bowl.png
+share/pixmaps/gaim/smileys/default/msn_boy.png
+share/pixmaps/gaim/smileys/default/msn_brb.png
+share/pixmaps/gaim/smileys/default/msn_brheart.png
+share/pixmaps/gaim/smileys/default/msn_cake.gif
+share/pixmaps/gaim/smileys/default/msn_car.png
+share/pixmaps/gaim/smileys/default/msn_cat.png
+share/pixmaps/gaim/smileys/default/msn_cellphone.png
+share/pixmaps/gaim/smileys/default/msn_cigarette.gif
+share/pixmaps/gaim/smileys/default/msn_clock.png
+share/pixmaps/gaim/smileys/default/msn_coffee.png
+share/pixmaps/gaim/smileys/default/msn_coins.png
+share/pixmaps/gaim/smileys/default/msn_computer.png
+share/pixmaps/gaim/smileys/default/msn_cry.gif
+share/pixmaps/gaim/smileys/default/msn_deadflower.png
+share/pixmaps/gaim/smileys/default/msn_devil.png
+share/pixmaps/gaim/smileys/default/msn_dog.png
+share/pixmaps/gaim/smileys/default/msn_dontknow.gif
+share/pixmaps/gaim/smileys/default/msn_donttell.png
+share/pixmaps/gaim/smileys/default/msn_drink.png
+share/pixmaps/gaim/smileys/default/msn_email.png
+share/pixmaps/gaim/smileys/default/msn_embarrassed.png
+share/pixmaps/gaim/smileys/default/msn_eyeroll.gif
+share/pixmaps/gaim/smileys/default/msn_film.png
+share/pixmaps/gaim/smileys/default/msn_fingerscrossed.png
+share/pixmaps/gaim/smileys/default/msn_flower.png
+share/pixmaps/gaim/smileys/default/msn_gift.png
+share/pixmaps/gaim/smileys/default/msn_girl.png
+share/pixmaps/gaim/smileys/default/msn_handcuffs.png
+share/pixmaps/gaim/smileys/default/msn_heart.png
+share/pixmaps/gaim/smileys/default/msn_highfive.png
+share/pixmaps/gaim/smileys/default/msn_hot.png
+share/pixmaps/gaim/smileys/default/msn_icon.png
+share/pixmaps/gaim/smileys/default/msn_idea.png
+share/pixmaps/gaim/smileys/default/msn_island.png
+share/pixmaps/gaim/smileys/default/msn_kiss.png
+share/pixmaps/gaim/smileys/default/msn_laugh.png
+share/pixmaps/gaim/smileys/default/msn_lightning.gif
+share/pixmaps/gaim/smileys/default/msn_nerd.png
+share/pixmaps/gaim/smileys/default/msn_neutral.png
+share/pixmaps/gaim/smileys/default/msn_note.png
+share/pixmaps/gaim/smileys/default/msn_occ.png
+share/pixmaps/gaim/smileys/default/msn_online.png
+share/pixmaps/gaim/smileys/default/msn_ooooh.png
+share/pixmaps/gaim/smileys/default/msn_party.gif
+share/pixmaps/gaim/smileys/default/msn_phone.png
+share/pixmaps/gaim/smileys/default/msn_photo.png
+share/pixmaps/gaim/smileys/default/msn_pizza.png
+share/pixmaps/gaim/smileys/default/msn_plane.png
+share/pixmaps/gaim/smileys/default/msn_plate.png
+share/pixmaps/gaim/smileys/default/msn_question.png
+share/pixmaps/gaim/smileys/default/msn_rainbow.png
+share/pixmaps/gaim/smileys/default/msn_run.png
+share/pixmaps/gaim/smileys/default/msn_runback.png
+share/pixmaps/gaim/smileys/default/msn_sad.png
+share/pixmaps/gaim/smileys/default/msn_sarcastic.png
+share/pixmaps/gaim/smileys/default/msn_secret.png
+share/pixmaps/gaim/smileys/default/msn_sheep.png
+share/pixmaps/gaim/smileys/default/msn_sick.png
+share/pixmaps/gaim/smileys/default/msn_sleep.png
+share/pixmaps/gaim/smileys/default/msn_sleepy.gif
+share/pixmaps/gaim/smileys/default/msn_smiley.png
+share/pixmaps/gaim/smileys/default/msn_snail.png
+share/pixmaps/gaim/smileys/default/msn_soccer.png
+share/pixmaps/gaim/smileys/default/msn_star.png
+share/pixmaps/gaim/smileys/default/msn_stormy.png
+share/pixmaps/gaim/smileys/default/msn_sun.png
+share/pixmaps/gaim/smileys/default/msn_sunglasses.png
+share/pixmaps/gaim/smileys/default/msn_teeth.png
+share/pixmaps/gaim/smileys/default/msn_think.gif
+share/pixmaps/gaim/smileys/default/msn_thumbdown.png
+share/pixmaps/gaim/smileys/default/msn_thumbup.png
+share/pixmaps/gaim/smileys/default/msn_tongue.png
+share/pixmaps/gaim/smileys/default/msn_turtle.png
+share/pixmaps/gaim/smileys/default/msn_umbrella.png
+share/pixmaps/gaim/smileys/default/msn_weird.png
+share/pixmaps/gaim/smileys/default/msn_wink.gif
+share/pixmaps/gaim/smileys/default/msn_xbox.png
+share/pixmaps/gaim/smileys/default/oneeye.png
+share/pixmaps/gaim/smileys/default/sad.png
+share/pixmaps/gaim/smileys/default/scream.png
+share/pixmaps/gaim/smileys/default/smile.png
+share/pixmaps/gaim/smileys/default/theme
+share/pixmaps/gaim/smileys/default/think.png
+share/pixmaps/gaim/smileys/default/tongue.png
+share/pixmaps/gaim/smileys/default/wink.png
+share/pixmaps/gaim/smileys/default/yahoo_alien.gif
+share/pixmaps/gaim/smileys/default/yahoo_alien2.gif
+share/pixmaps/gaim/smileys/default/yahoo_angel.gif
+share/pixmaps/gaim/smileys/default/yahoo_angry.gif
+share/pixmaps/gaim/smileys/default/yahoo_batting.gif
+share/pixmaps/gaim/smileys/default/yahoo_beatup.gif
+share/pixmaps/gaim/smileys/default/yahoo_bigsmile.gif
+share/pixmaps/gaim/smileys/default/yahoo_blush.gif
+share/pixmaps/gaim/smileys/default/yahoo_brokenheart.gif
+share/pixmaps/gaim/smileys/default/yahoo_bye.gif
+share/pixmaps/gaim/smileys/default/yahoo_chicken.gif
+share/pixmaps/gaim/smileys/default/yahoo_clap.gif
+share/pixmaps/gaim/smileys/default/yahoo_clown.gif
+share/pixmaps/gaim/smileys/default/yahoo_coffee.gif
+share/pixmaps/gaim/smileys/default/yahoo_cow.gif
+share/pixmaps/gaim/smileys/default/yahoo_cowboy.gif
+share/pixmaps/gaim/smileys/default/yahoo_cry.gif
+share/pixmaps/gaim/smileys/default/yahoo_dance.gif
+share/pixmaps/gaim/smileys/default/yahoo_devil.gif
+share/pixmaps/gaim/smileys/default/yahoo_doh.gif
+share/pixmaps/gaim/smileys/default/yahoo_drool.gif
+share/pixmaps/gaim/smileys/default/yahoo_eyebrow.gif
+share/pixmaps/gaim/smileys/default/yahoo_eyeroll.gif
+share/pixmaps/gaim/smileys/default/yahoo_femalefighter.gif
+share/pixmaps/gaim/smileys/default/yahoo_flag.gif
+share/pixmaps/gaim/smileys/default/yahoo_flower.gif
+share/pixmaps/gaim/smileys/default/yahoo_frustrated.gif
+share/pixmaps/gaim/smileys/default/yahoo_ghost.gif
+share/pixmaps/gaim/smileys/default/yahoo_giggle.gif
+share/pixmaps/gaim/smileys/default/yahoo_glasses.gif
+share/pixmaps/gaim/smileys/default/yahoo_huggs.gif
+share/pixmaps/gaim/smileys/default/yahoo_hypnotized.gif
+share/pixmaps/gaim/smileys/default/yahoo_idea.gif
+share/pixmaps/gaim/smileys/default/yahoo_kiss.gif
+share/pixmaps/gaim/smileys/default/yahoo_laughloud.gif
+share/pixmaps/gaim/smileys/default/yahoo_liar.gif
+share/pixmaps/gaim/smileys/default/yahoo_loser.gif
+share/pixmaps/gaim/smileys/default/yahoo_love.gif
+share/pixmaps/gaim/smileys/default/yahoo_madtongue.gif
+share/pixmaps/gaim/smileys/default/yahoo_malefighter1.gif
+share/pixmaps/gaim/smileys/default/yahoo_malefighter2.gif
+share/pixmaps/gaim/smileys/default/yahoo_mean.gif
+share/pixmaps/gaim/smileys/default/yahoo_moneyeyes.gif
+share/pixmaps/gaim/smileys/default/yahoo_monkey.gif
+share/pixmaps/gaim/smileys/default/yahoo_nailbiting.gif
+share/pixmaps/gaim/smileys/default/yahoo_neutral.gif
+share/pixmaps/gaim/smileys/default/yahoo_ooooh.gif
+share/pixmaps/gaim/smileys/default/yahoo_party.gif
+share/pixmaps/gaim/smileys/default/yahoo_peace.gif
+share/pixmaps/gaim/smileys/default/yahoo_pig.gif
+share/pixmaps/gaim/smileys/default/yahoo_pray.gif
+share/pixmaps/gaim/smileys/default/yahoo_pumpkin.gif
+share/pixmaps/gaim/smileys/default/yahoo_question.gif
+share/pixmaps/gaim/smileys/default/yahoo_rotfl.gif
+share/pixmaps/gaim/smileys/default/yahoo_sad.gif
+share/pixmaps/gaim/smileys/default/yahoo_shame.gif
+share/pixmaps/gaim/smileys/default/yahoo_shamrock.gif
+share/pixmaps/gaim/smileys/default/yahoo_shhhh.gif
+share/pixmaps/gaim/smileys/default/yahoo_sick.gif
+share/pixmaps/gaim/smileys/default/yahoo_sighing.gif
+share/pixmaps/gaim/smileys/default/yahoo_silent.gif
+share/pixmaps/gaim/smileys/default/yahoo_silly.gif
+share/pixmaps/gaim/smileys/default/yahoo_sleep.gif
+share/pixmaps/gaim/smileys/default/yahoo_smiley.gif
+share/pixmaps/gaim/smileys/default/yahoo_star.gif
+share/pixmaps/gaim/smileys/default/yahoo_sunglas.gif
+share/pixmaps/gaim/smileys/default/yahoo_sweating.gif
+share/pixmaps/gaim/smileys/default/yahoo_talktohand.gif
+share/pixmaps/gaim/smileys/default/yahoo_think.gif
+share/pixmaps/gaim/smileys/default/yahoo_tired.gif
+share/pixmaps/gaim/smileys/default/yahoo_tongue.gif
+share/pixmaps/gaim/smileys/default/yahoo_waiting.gif
+share/pixmaps/gaim/smileys/default/yahoo_waving.gif
+share/pixmaps/gaim/smileys/default/yahoo_whistling.gif
+share/pixmaps/gaim/smileys/default/yahoo_wink.gif
+share/pixmaps/gaim/smileys/default/yahoo_worried.gif
+share/pixmaps/gaim/smileys/default/yahoo_worship.gif
+share/pixmaps/gaim/smileys/default/yahoo_yingyang.gif
+share/pixmaps/gaim/smileys/default/yahoo_youkiddingme.gif
+share/pixmaps/gaim/smileys/default/yell.png
+share/pixmaps/gaim/smileys/none/theme
+share/pixmaps/gaim/status/default/activebuddy.png
+share/pixmaps/gaim/status/default/admin.png
+share/pixmaps/gaim/status/default/aim.png
+share/pixmaps/gaim/status/default/aol.png
+share/pixmaps/gaim/status/default/away.png
+share/pixmaps/gaim/status/default/blocked.png
+share/pixmaps/gaim/status/default/dnd.png
+share/pixmaps/gaim/status/default/extendedaway.png
+share/pixmaps/gaim/status/default/female.png
+share/pixmaps/gaim/status/default/founder.png
+share/pixmaps/gaim/status/default/freeforchat.png
+share/pixmaps/gaim/status/default/gadu-gadu.png
+share/pixmaps/gaim/status/default/game.png
+share/pixmaps/gaim/status/default/halfop.png
+share/pixmaps/gaim/status/default/hiptop.png
+share/pixmaps/gaim/status/default/icq.png
+share/pixmaps/gaim/status/default/ignored.png
+share/pixmaps/gaim/status/default/invisible.png
+share/pixmaps/gaim/status/default/irc.png
+share/pixmaps/gaim/status/default/jabber.png
+share/pixmaps/gaim/status/default/login.png
+share/pixmaps/gaim/status/default/logout.png
+share/pixmaps/gaim/status/default/male.png
+share/pixmaps/gaim/status/default/msn.png
+share/pixmaps/gaim/status/default/na.png
+share/pixmaps/gaim/status/default/napster.png
+share/pixmaps/gaim/status/default/notauthorized.png
+share/pixmaps/gaim/status/default/novell.png
+share/pixmaps/gaim/status/default/nr.png
+share/pixmaps/gaim/status/default/occupied.png
+share/pixmaps/gaim/status/default/offline.png
+share/pixmaps/gaim/status/default/op.png
+share/pixmaps/gaim/status/default/rendezvous.png
+share/pixmaps/gaim/status/default/secure.png
+share/pixmaps/gaim/status/default/silc.png
+share/pixmaps/gaim/status/default/trepia.png
+share/pixmaps/gaim/status/default/voice.png
+share/pixmaps/gaim/status/default/wireless.png
+share/pixmaps/gaim/status/default/yahoo.png
+share/pixmaps/gaim/status/default/zephyr.png
+share/pixmaps/gaim/tb_drag_arrow_down.xpm
+share/pixmaps/gaim/tb_drag_arrow_left.xpm
+share/pixmaps/gaim/tb_drag_arrow_right.xpm
+share/pixmaps/gaim/tb_drag_arrow_up.xpm
+share/pixmaps/gaim/typed.png
+share/pixmaps/gaim/typing.png
+share/sounds/gaim/arrive.wav
+share/sounds/gaim/leave.wav
+share/sounds/gaim/receive.wav
+share/sounds/gaim/redalert.wav
+share/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/sounds/gaim
+@dirrm share/pixmaps/gaim/status/default
+@dirrm share/pixmaps/gaim/status
+@dirrm share/pixmaps/gaim/smileys/none
+@dirrm share/pixmaps/gaim/smileys/default
+@dirrm share/pixmaps/gaim/smileys
+@dirrm share/pixmaps/gaim/icons
+@dirrm share/pixmaps/gaim/dialogs
+@dirrm share/pixmaps/gaim/buttons
+@dirrm share/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