summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-09-20 03:12:58 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-09-20 03:12:58 +0800
commit22ec8cf0e6f6189ba81695f7011a72f67d484978 (patch)
tree2e81fed981470fa59d5bbbd270f995b74649c479
parent3bfbcc7ababdfc261e65c43c7d4042bce821d686 (diff)
downloadmarcuscom-ports-22ec8cf0e6f6189ba81695f7011a72f67d484978.tar
marcuscom-ports-22ec8cf0e6f6189ba81695f7011a72f67d484978.tar.gz
marcuscom-ports-22ec8cf0e6f6189ba81695f7011a72f67d484978.tar.bz2
marcuscom-ports-22ec8cf0e6f6189ba81695f7011a72f67d484978.tar.lz
marcuscom-ports-22ec8cf0e6f6189ba81695f7011a72f67d484978.tar.xz
marcuscom-ports-22ec8cf0e6f6189ba81695f7011a72f67d484978.tar.zst
marcuscom-ports-22ec8cf0e6f6189ba81695f7011a72f67d484978.zip
Add gaim, and update to 1.0.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2870 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--net/gaim/Makefile126
-rw-r--r--net/gaim/distinfo2
-rw-r--r--net/gaim/files/patch-configure24
-rw-r--r--net/gaim/files/patch-plugins_Makefile.in12
-rw-r--r--net/gaim/files/patch-src_gtkimhtml.c22
-rw-r--r--net/gaim/files/patch-src_protocols_oscar_ft.c10
-rw-r--r--net/gaim/files/patch-src_protocols_oscar_oscar.c11
-rw-r--r--net/gaim/pkg-descr21
-rw-r--r--net/gaim/pkg-plist423
9 files changed, 651 insertions, 0 deletions
diff --git a/net/gaim/Makefile b/net/gaim/Makefile
new file mode 100644
index 000000000..5d17568da
--- /dev/null
+++ b/net/gaim/Makefile
@@ -0,0 +1,126 @@
+# New ports collection makefile for: gaim
+# Date created: 26 Mar 1999
+# Whom: Jim Mock <jim@FreeBSD.org>
+# $FreeBSD: ports/net/gaim/Makefile,v 1.155 2004/08/30 04:31:46 marcus Exp $
+#
+
+PORTNAME= gaim
+PORTVERSION= 1.0.0
+CATEGORIES?= net
+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-*
+
+USE_X_PREFIX= yes
+USE_GMAKE= yes
+USE_REINPLACE= yes
+USE_GNOME= gnomeprefix gnomehack gtk20
+USE_PERL5= yes
+USE_BZIP2= yes
+INSTALLS_SHLIB= yes
+USE_LIBTOOL_VER=15
+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
+
+.include <bsd.port.pre.mk>
+
+.if exists(${LOCALBASE}/lib/libgnutls.so) && !defined(WITHOUT_GNUTLS)
+WITH_GNUTLS= yes
+.endif
+
+.if defined(WITH_GNUTLS)
+LIB_DEPENDS+= gnutls:${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
+.else
+CONFIGURE_ARGS+= --enable-nss=no
+.endif
+
+.if ${PERL_LEVEL} < 500800
+CONFIGURE_ARGS+= --disable-perl
+PLIST_SUB+= PERL:="@comment "
+.else
+CONFIGURE_ARGS+= --with-perl-lib=site
+PLIST_SUB+= PERL:=""
+.endif
+
+.ifndef(WITHOUT_GTKSPELL)
+LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2
+.else
+CONFIGURE_ARGS+= --disable-gtkspell
+.endif
+
+.if defined(TCL_VER)
+_TCL_DVER= ${TCL_VER:S/.//}
+_TCL_VER= ${_TCL_DVER:C/(.)/\1./}
+.if ${_TCL_VER} != 8.3 && ${_TCL_VER} != 8.4
+. error Currently GAIM can only use Tcl/Tk 8.3 or 8.4
+.endif
+LIB_DEPENDS+= tk${_TCL_DVER}:${PORTSDIR}/x11-toolkits/tk${_TCL_DVER}
+CONFIGURE_ARGS+=--with-tclconfig=${LOCALBASE}/lib/tcl${_TCL_VER} \
+ --with-tkconfig=${LOCALBASE}/lib/tk${_TCL_VER}
+CFLAGS+= -I${LOCALBASE}/include/tk${_TCL_VER} -I${LOCALBASE}/include/tcl${_TCL_VER}
+PLIST_SUB+= TCL:=""
+.else
+PLIST_SUB+= TCL:="@comment "
+.endif
+
+.ifndef(WITHOUT_AUDIO)
+LIB_DEPENDS+= ao.3:${PORTSDIR}/audio/libao \
+ audiofile.0:${PORTSDIR}/audio/libaudiofile
+.else
+CONFIGURE_ARGS+= --disable-audio
+.endif
+
+pre-everything::
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "Gaim has the following tunable option(s):"
+ @${ECHO_MSG} " WITH_SILC Build with Secure Internet Live Conferencing (SILC)"
+ @${ECHO_MSG} " WITHOUT_GTKSPELL Turns off spell checking"
+ @${ECHO_MSG} " WITHOUT_AUDIO Disable audio support"
+ @${ECHO_MSG} " WITH_GNUTLS Enable GNUTLS encryption support"
+ @${ECHO_MSG} " WITHOUT_GNUTLS Disable GNUTLS encryption support"
+ @${ECHO_MSG} " WITHOUT_NSS Disable Mozilla NSS encryption support"
+ @${ECHO_MSG} " TCL_VER Use Tcl/Tk (version)"
+ @${ECHO_MSG} ""
+.if !defined(WITH_GNUTLS) && defined(WITHOUT_NSS)
+ @${ECHO_MSG} "WARNING: In order to use MSN, you must define WITH_GNUTLS and/or WITH_NSS."
+ @${ECHO_MSG} ""
+.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 ${_TCL_VER} required|g' \
+ -e 's|TCL_MINOR_VERSION" -ne 3|TCL_MINOR_VERSION" -ne ${_TCL_VER:E}|' \
+ ${WRKSRC}/configure
+
+.include <bsd.port.post.mk>
diff --git a/net/gaim/distinfo b/net/gaim/distinfo
new file mode 100644
index 000000000..31db99f8d
--- /dev/null
+++ b/net/gaim/distinfo
@@ -0,0 +1,2 @@
+MD5 (gaim-1.0.0.tar.bz2) = 6121484e676e716ab8f3f6416a6f44a9
+SIZE (gaim-1.0.0.tar.bz2) = 4775279
diff --git a/net/gaim/files/patch-configure b/net/gaim/files/patch-configure
new file mode 100644
index 000000000..7ae55f0c9
--- /dev/null
+++ b/net/gaim/files/patch-configure
@@ -0,0 +1,24 @@
+--- configure.orig Thu Oct 9 20:05:15 2003
++++ configure Fri Oct 10 13:22:18 2003
+@@ -16164,7 +16164,7 @@
+
+ if test "x$prefix" != "xNONE"; then
+ prefix=`eval echo $prefix`
+- PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=$prefix"
++ PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=%%LOCALBASE%%"
+ fi
+
+
+@@ -16915,10 +16915,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/gaim/files/patch-plugins_Makefile.in b/net/gaim/files/patch-plugins_Makefile.in
new file mode 100644
index 000000000..3d74afc3e
--- /dev/null
+++ b/net/gaim/files/patch-plugins_Makefile.in
@@ -0,0 +1,12 @@
+--- plugins/Makefile.in.orig Sun May 30 17:53:41 2004
++++ plugins/Makefile.in Sun May 30 17:54:22 2004
+@@ -285,7 +285,7 @@
+ target_cpu = @target_cpu@
+ target_os = @target_os@
+ target_vendor = @target_vendor@
+-DIST_SUBDIRS = docklet gevolution gaim-remote gestures perl ssl tcl ticker
++DIST_SUBDIRS = docklet gaim-remote gestures perl ssl tcl ticker
+-@BUILD_GEVOLUTION_TRUE@GEVOLUTION_DIR = gevolution
++@BUILD_GEVOLUTION_TRUE@GEVOLUTION_DIR =
+ @USE_PERL_TRUE@PERL_DIR = perl
+
diff --git a/net/gaim/files/patch-src_gtkimhtml.c b/net/gaim/files/patch-src_gtkimhtml.c
new file mode 100644
index 000000000..9430baae1
--- /dev/null
+++ b/net/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/gaim/files/patch-src_protocols_oscar_ft.c b/net/gaim/files/patch-src_protocols_oscar_ft.c
new file mode 100644
index 000000000..926db5f44
--- /dev/null
+++ b/net/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/gaim/files/patch-src_protocols_oscar_oscar.c b/net/gaim/files/patch-src_protocols_oscar_oscar.c
new file mode 100644
index 000000000..43a291b29
--- /dev/null
+++ b/net/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/gaim/pkg-descr b/net/gaim/pkg-descr
new file mode 100644
index 000000000..d4901fdf0
--- /dev/null
+++ b/net/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/gaim/pkg-plist b/net/gaim/pkg-plist
new file mode 100644
index 000000000..22d034664
--- /dev/null
+++ b/net/gaim/pkg-plist
@@ -0,0 +1,423 @@
+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/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.so
+lib/gaim/docklet.so
+lib/gaim/extplacement.so
+lib/gaim/gaim-remote.so
+lib/gaim/gestures.so
+lib/gaim/history.so
+lib/gaim/iconaway.so
+lib/gaim/idle.so
+lib/gaim/libgg.so
+lib/gaim/libirc.so
+lib/gaim/libjabber.so
+lib/gaim/libmsn.so
+lib/gaim/libnapster.so
+lib/gaim/libnovell.so
+lib/gaim/liboscar.so
+%%SILC%%lib/gaim/libsilcgaim.so
+lib/gaim/libyahoo.so
+lib/gaim/libzephyr.so
+lib/gaim/notify.so
+%%PERL:%%lib/gaim/perl.so
+lib/gaim/spellchk.so
+lib/gaim/relnot.so
+lib/gaim/ssl-gnutls.so
+lib/gaim/ssl-nss.so
+lib/gaim/ssl.so
+lib/gaim/statenotify.so
+%%TCL:%%lib/gaim/tcl.so
+lib/gaim/ticker.so
+lib/gaim/timestamp.so
+lib/libgaim-remote.a
+lib/libgaim-remote.so
+lib/libgaim-remote.so.0
+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/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/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/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/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/ko/LC_MESSAGES/gaim.mo
+share/locale/lt/LC_MESSAGES/gaim.mo
+share/locale/mk/LC_MESSAGES/gaim.mo
+share/locale/nl/LC_MESSAGES/gaim.mo
+share/locale/no/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/sr/LC_MESSAGES/gaim.mo
+share/locale/sr@Latn/LC_MESSAGES/gaim.mo
+share/locale/sv/LC_MESSAGES/gaim.mo
+share/locale/vi/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
+@dirrm lib/gaim
+@dirrm include/gaim
+%%PERL:%%@cwd %%LOCALBASE%%
+%%PERL:%%lib/perl5/%%PERL_VER%%/man/man3/Gaim.3
+%%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
+%%PERL:%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim