summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-04-03 04:34:53 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-04-03 04:34:53 +0800
commitf9fbb9e38e32b373798c440629cc06a3b7f89c28 (patch)
tree29ff3c1dff32569ee3dd9e313e43137d20fbb9a6
parent47dac61c7effcff68bc40650cbddad801a04cb7a (diff)
downloadmarcuscom-ports-f9fbb9e38e32b373798c440629cc06a3b7f89c28.tar.gz
marcuscom-ports-f9fbb9e38e32b373798c440629cc06a3b7f89c28.tar.zst
marcuscom-ports-f9fbb9e38e32b373798c440629cc06a3b7f89c28.zip
Add gnomeicu2, and update to 0.99.5.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2242 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--net/gnome-icu/Makefile59
-rw-r--r--net/gnome-icu/distinfo2
-rw-r--r--net/gnome-icu/files/patch-src::icu_db.c17
-rw-r--r--net/gnome-icu/files/patch-src_userserver.c16
-rw-r--r--net/gnome-icu/files/patch-src_v7login.c10
-rw-r--r--net/gnome-icu/files/patch-src_v7newuser.c10
-rw-r--r--net/gnome-icu/files/patch-src_v7recv.c10
-rw-r--r--net/gnome-icu/pkg-descr8
-rw-r--r--net/gnome-icu/pkg-plist347
-rw-r--r--net/gnomeicu2/Makefile59
-rw-r--r--net/gnomeicu2/distinfo2
-rw-r--r--net/gnomeicu2/files/patch-src::icu_db.c17
-rw-r--r--net/gnomeicu2/files/patch-src_userserver.c16
-rw-r--r--net/gnomeicu2/files/patch-src_v7login.c10
-rw-r--r--net/gnomeicu2/files/patch-src_v7newuser.c10
-rw-r--r--net/gnomeicu2/files/patch-src_v7recv.c10
-rw-r--r--net/gnomeicu2/pkg-descr8
-rw-r--r--net/gnomeicu2/pkg-plist347
18 files changed, 958 insertions, 0 deletions
diff --git a/net/gnome-icu/Makefile b/net/gnome-icu/Makefile
new file mode 100644
index 000000000..34daf7e75
--- /dev/null
+++ b/net/gnome-icu/Makefile
@@ -0,0 +1,59 @@
+# Ports collection Makefile for: GnomeICU
+# Date created: 03/16/1999
+# Whom: nectar@FreeBSD.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= gnomeicu2
+PORTVERSION= 0.99.5
+CATEGORIES= net gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= gnomeicu
+DISTNAME= gnomeicu-${PORTVERSION}
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= GNOME2 ICQ client
+
+LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GNOME= gnomeprefix gnomehack libglade2 gnomepanel lthack libxml2
+USE_GMAKE= yes
+USE_LIBTOOL_VER=13
+USE_REINPLACE= yes
+.if defined(WITH_DANTE)
+LIB_DEPENDS+= socks.1:${PORTSDIR}/net/dante
+SOCKSFLAGS= -Dconnect=Rconnect -Dbind=Rbind -Dgetsockname=Rgetsockname \
+ -Dgetpeername=Rgetpeername -Daccept=Raccept \
+ -Drresvport=Rrresvport -Dbindresvport=Rbindresvport \
+ -Dgethostbyname=Rgethostbyname \
+ -Dgethostbyname2=Rgethostbyname2 -Dsendto=Rsendto \
+ -Drecvfrom=Rrecvfrom -Drecvfrom=Rrecvfrom -Dwrite=Rwrite \
+ -Dwritev=Rwritev -Dsend=Rsend -Dsendmsg=Rsendmsg \
+ -Dread=Rread -Dreadv=Rreadv -Drecv=Rrecv -Drecvmsg=Rrecvmsg
+SOCKSLIBS= -lsocks
+.elif defined(WITH_SOCKS5)
+BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
+SOCKSFLAGS= -DSOCKS -include ${LOCALBASE}/include/socks.h
+SOCKSLIBS= -lsocks5
+.endif
+
+CONFIGURE_ARGS= --with-statusmenu
+CONFIGURE_ENV= CPPFLAGS="${SOCKSFLAGS} -I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib" LIBS="-liconv ${SOCKSLIBS} -lintl" \
+ CFLAGS="${CFLAGS}"
+
+.ifndef(WITHOUT_GTKSPELL)
+LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2
+CONFIGURE_ARGS+=--enable-gtkspell
+.else
+CONFIGURE_ARGS+=--disable-gtkspell
+.endif
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|GNOME_PARAM_GNOME_DATADIR|GNOME_PARAM_APP_DATADIR|g' \
+ ${WRKSRC}/src/gnomeicu.c
+
+.include <bsd.port.mk>
diff --git a/net/gnome-icu/distinfo b/net/gnome-icu/distinfo
new file mode 100644
index 000000000..4121cb36e
--- /dev/null
+++ b/net/gnome-icu/distinfo
@@ -0,0 +1,2 @@
+MD5 (gnomeicu-0.99.5.tar.bz2) = 59ff902171a14ad37896f6661ddedb7a
+SIZE (gnomeicu-0.99.5.tar.bz2) = 2102452
diff --git a/net/gnome-icu/files/patch-src::icu_db.c b/net/gnome-icu/files/patch-src::icu_db.c
new file mode 100644
index 000000000..3df66fcf8
--- /dev/null
+++ b/net/gnome-icu/files/patch-src::icu_db.c
@@ -0,0 +1,17 @@
+
+$FreeBSD$
+
+--- src/icu_db.c.orig Sat Jun 22 22:11:46 2002
++++ src/icu_db.c Wed Sep 11 11:45:05 2002
+@@ -27,7 +27,11 @@
+
+ #include <fcntl.h>
+ #include <errno.h>
++#if defined(HAVE_STDLIB_H)
++#include <stdlib.h>
++#else
+ #include <malloc.h>
++#endif
+ #include <stdio.h>
+ #include <string.h>
+ #include <sys/param.h>
diff --git a/net/gnome-icu/files/patch-src_userserver.c b/net/gnome-icu/files/patch-src_userserver.c
new file mode 100644
index 000000000..23e5ed601
--- /dev/null
+++ b/net/gnome-icu/files/patch-src_userserver.c
@@ -0,0 +1,16 @@
+--- src/userserver.c.orig Fri Apr 2 15:20:45 2004
++++ src/userserver.c Fri Apr 2 15:20:54 2004
+@@ -6,12 +6,12 @@
+ ***************************/
+
+ #include <errno.h>
++#include <sys/types.h>
+ #include <netinet/in.h>
+ #include <pwd.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
+-#include <sys/types.h>
+ #include <sys/socket.h>
+ #include <sys/stat.h>
+ #include <sys/un.h>
diff --git a/net/gnome-icu/files/patch-src_v7login.c b/net/gnome-icu/files/patch-src_v7login.c
new file mode 100644
index 000000000..cea1c7fbe
--- /dev/null
+++ b/net/gnome-icu/files/patch-src_v7login.c
@@ -0,0 +1,10 @@
+--- src/v7login.c.orig Fri Apr 2 15:25:21 2004
++++ src/v7login.c Fri Apr 2 15:25:57 2004
+@@ -18,6 +18,7 @@
+ #include <stdlib.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
++#include <netinet/in.h>
+ #include <netdb.h>
+ #include <unistd.h>
+ #include <fcntl.h>
diff --git a/net/gnome-icu/files/patch-src_v7newuser.c b/net/gnome-icu/files/patch-src_v7newuser.c
new file mode 100644
index 000000000..e235da7be
--- /dev/null
+++ b/net/gnome-icu/files/patch-src_v7newuser.c
@@ -0,0 +1,10 @@
+--- src/v7newuser.c.orig Fri Apr 2 15:26:51 2004
++++ src/v7newuser.c Fri Apr 2 15:27:04 2004
+@@ -19,6 +19,7 @@
+ #include <string.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
++#include <netinet/in.h>
+ #include <netdb.h>
+ #include <unistd.h>
+ #include <fcntl.h>
diff --git a/net/gnome-icu/files/patch-src_v7recv.c b/net/gnome-icu/files/patch-src_v7recv.c
new file mode 100644
index 000000000..43a64d996
--- /dev/null
+++ b/net/gnome-icu/files/patch-src_v7recv.c
@@ -0,0 +1,10 @@
+--- src/v7recv.c.orig Fri Apr 2 15:27:50 2004
++++ src/v7recv.c Fri Apr 2 15:28:03 2004
+@@ -27,6 +27,7 @@
+ #include <stdlib.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
++#include <netinet/in.h>
+ #include <netdb.h>
+ #include <unistd.h>
+ #include <fcntl.h>
diff --git a/net/gnome-icu/pkg-descr b/net/gnome-icu/pkg-descr
new file mode 100644
index 000000000..df8c0c649
--- /dev/null
+++ b/net/gnome-icu/pkg-descr
@@ -0,0 +1,8 @@
+ GnomeICU (previously GtkICQ) is an Internet based communications
+ program which makes use of ICQ protocol. GnomeICU also makes use of
+ Gnome2, a growingly popular desktop environment. GnomeICU is released
+ under the GNU Public License, and is available free of charge.
+
+WWW: http://gnomeicu.sourceforge.net
+
+Jacques Vidrine <nectar@FreeBSD.ORG>
diff --git a/net/gnome-icu/pkg-plist b/net/gnome-icu/pkg-plist
new file mode 100644
index 000000000..84142858d
--- /dev/null
+++ b/net/gnome-icu/pkg-plist
@@ -0,0 +1,347 @@
+bin/gnomeicu
+bin/gnomeicu-client
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/connections/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/events/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/files/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/status/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/themes/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/ui/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/color/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/network/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/connections/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/events/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/files/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/status/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/themes/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/ui/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/color/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/network/%gconf.xml
+etc/gconf/schemas/gnomeicu.schemas
+etc/sound/events/GnomeICU.soundlist
+share/gnome/applications/GnomeICU.desktop
+share/gnome/gnomeicu/emoticons/AIM/angel.xpm
+share/gnome/gnomeicu/emoticons/AIM/bigsmile.xpm
+share/gnome/gnomeicu/emoticons/AIM/crossedlips.xpm
+share/gnome/gnomeicu/emoticons/AIM/cry.xpm
+share/gnome/gnomeicu/emoticons/AIM/embarrassed.xpm
+share/gnome/gnomeicu/emoticons/AIM/emoticon-data
+share/gnome/gnomeicu/emoticons/AIM/kiss.xpm
+share/gnome/gnomeicu/emoticons/AIM/sad.xpm
+share/gnome/gnomeicu/emoticons/AIM/scream.xpm
+share/gnome/gnomeicu/emoticons/AIM/smile.xpm
+share/gnome/gnomeicu/emoticons/AIM/smile8.xpm
+share/gnome/gnomeicu/emoticons/AIM/think.xpm
+share/gnome/gnomeicu/emoticons/AIM/tongue.xpm
+share/gnome/gnomeicu/emoticons/AIM/wink.xpm
+share/gnome/gnomeicu/emoticons/Always/Annoyed.bmp
+share/gnome/gnomeicu/emoticons/Always/Disgusted.bmp
+share/gnome/gnomeicu/emoticons/Always/Drooling.bmp
+share/gnome/gnomeicu/emoticons/Always/Giggling.bmp
+share/gnome/gnomeicu/emoticons/Always/Jokingly.bmp
+share/gnome/gnomeicu/emoticons/Always/Shocked.bmp
+share/gnome/gnomeicu/emoticons/Always/Surprised-F.bmp
+share/gnome/gnomeicu/emoticons/Always/Surprised-M.bmp
+share/gnome/gnomeicu/emoticons/Always/Whining.bmp
+share/gnome/gnomeicu/emoticons/Always/asl.gif
+share/gnome/gnomeicu/emoticons/Always/bat.gif
+share/gnome/gnomeicu/emoticons/Always/beer.gif
+share/gnome/gnomeicu/emoticons/Always/boy.gif
+share/gnome/gnomeicu/emoticons/Always/broken_heart.gif
+share/gnome/gnomeicu/emoticons/Always/cake.gif
+share/gnome/gnomeicu/emoticons/Always/camera.gif
+share/gnome/gnomeicu/emoticons/Always/cat.gif
+share/gnome/gnomeicu/emoticons/Always/clock.gif
+share/gnome/gnomeicu/emoticons/Always/coffee.gif
+share/gnome/gnomeicu/emoticons/Always/cuffs.gif
+share/gnome/gnomeicu/emoticons/Always/dog.gif
+share/gnome/gnomeicu/emoticons/Always/dude_hug.gif
+share/gnome/gnomeicu/emoticons/Always/emoticon-data
+share/gnome/gnomeicu/emoticons/Always/envelope.gif
+share/gnome/gnomeicu/emoticons/Always/film.gif
+share/gnome/gnomeicu/emoticons/Always/girl.gif
+share/gnome/gnomeicu/emoticons/Always/girl_hug.gif
+share/gnome/gnomeicu/emoticons/Always/heart.gif
+share/gnome/gnomeicu/emoticons/Always/martini.gif
+share/gnome/gnomeicu/emoticons/Always/messenger.gif
+share/gnome/gnomeicu/emoticons/Always/moon.gif
+share/gnome/gnomeicu/emoticons/Always/musical_note.gif
+share/gnome/gnomeicu/emoticons/Always/phone.gif
+share/gnome/gnomeicu/emoticons/Always/present.gif
+share/gnome/gnomeicu/emoticons/Always/rainbow.gif
+share/gnome/gnomeicu/emoticons/Always/rose.gif
+share/gnome/gnomeicu/emoticons/Always/star.gif
+share/gnome/gnomeicu/emoticons/Always/sun.gif
+share/gnome/gnomeicu/emoticons/Always/thumbs_down.gif
+share/gnome/gnomeicu/emoticons/Always/thumbs_up.gif
+share/gnome/gnomeicu/emoticons/Always/wilted_rose.gif
+share/gnome/gnomeicu/emoticons/Default/bigsmile.png
+share/gnome/gnomeicu/emoticons/Default/cry.png
+share/gnome/gnomeicu/emoticons/Default/emoticon-data
+share/gnome/gnomeicu/emoticons/Default/glasses.png
+share/gnome/gnomeicu/emoticons/Default/sad.png
+share/gnome/gnomeicu/emoticons/Default/scream.png
+share/gnome/gnomeicu/emoticons/Default/smile.png
+share/gnome/gnomeicu/emoticons/Default/smile2.png
+share/gnome/gnomeicu/emoticons/Default/smile8.png
+share/gnome/gnomeicu/emoticons/Default/straight.png
+share/gnome/gnomeicu/emoticons/Default/tongue.png
+share/gnome/gnomeicu/emoticons/Default/unsure.png
+share/gnome/gnomeicu/emoticons/Default/wink.png
+share/gnome/gnomeicu/emoticons/MSN/angel.png
+share/gnome/gnomeicu/emoticons/MSN/angry.png
+share/gnome/gnomeicu/emoticons/MSN/bigsmile.png
+share/gnome/gnomeicu/emoticons/MSN/confused.png
+share/gnome/gnomeicu/emoticons/MSN/cry.png
+share/gnome/gnomeicu/emoticons/MSN/devil.png
+share/gnome/gnomeicu/emoticons/MSN/embarassed.png
+share/gnome/gnomeicu/emoticons/MSN/emoticon-data
+share/gnome/gnomeicu/emoticons/MSN/kiss.png
+share/gnome/gnomeicu/emoticons/MSN/light.gif
+share/gnome/gnomeicu/emoticons/MSN/sad.png
+share/gnome/gnomeicu/emoticons/MSN/shocked.png
+share/gnome/gnomeicu/emoticons/MSN/smile.png
+share/gnome/gnomeicu/emoticons/MSN/smile8.png
+share/gnome/gnomeicu/emoticons/MSN/straight.png
+share/gnome/gnomeicu/emoticons/MSN/tongue.png
+share/gnome/gnomeicu/emoticons/MSN/wink.png
+share/gnome/gnomeicu/emoticons/Yahoo/alien.gif
+share/gnome/gnomeicu/emoticons/Yahoo/angel.gif
+share/gnome/gnomeicu/emoticons/Yahoo/angry.gif
+share/gnome/gnomeicu/emoticons/Yahoo/bigsmile.gif
+share/gnome/gnomeicu/emoticons/Yahoo/blush.gif
+share/gnome/gnomeicu/emoticons/Yahoo/clown.gif
+share/gnome/gnomeicu/emoticons/Yahoo/cow.gif
+share/gnome/gnomeicu/emoticons/Yahoo/cowboy.gif
+share/gnome/gnomeicu/emoticons/Yahoo/devil.gif
+share/gnome/gnomeicu/emoticons/Yahoo/emoticon-data
+share/gnome/gnomeicu/emoticons/Yahoo/flag.gif
+share/gnome/gnomeicu/emoticons/Yahoo/green.gif
+share/gnome/gnomeicu/emoticons/Yahoo/hrmph.gif
+share/gnome/gnomeicu/emoticons/Yahoo/ignore.gif
+share/gnome/gnomeicu/emoticons/Yahoo/kiss.gif
+share/gnome/gnomeicu/emoticons/Yahoo/light.gif
+share/gnome/gnomeicu/emoticons/Yahoo/monkey.gif
+share/gnome/gnomeicu/emoticons/Yahoo/nerd.gif
+share/gnome/gnomeicu/emoticons/Yahoo/pig.gif
+share/gnome/gnomeicu/emoticons/Yahoo/pumpkin.gif
+share/gnome/gnomeicu/emoticons/Yahoo/quiet.gif
+share/gnome/gnomeicu/emoticons/Yahoo/rofl.gif
+share/gnome/gnomeicu/emoticons/Yahoo/rose.gif
+share/gnome/gnomeicu/emoticons/Yahoo/sad.gif
+share/gnome/gnomeicu/emoticons/Yahoo/shocked.gif
+share/gnome/gnomeicu/emoticons/Yahoo/skull.gif
+share/gnome/gnomeicu/emoticons/Yahoo/sleep.gif
+share/gnome/gnomeicu/emoticons/Yahoo/smile.gif
+share/gnome/gnomeicu/emoticons/Yahoo/smile8.gif
+share/gnome/gnomeicu/emoticons/Yahoo/stop.gif
+share/gnome/gnomeicu/emoticons/Yahoo/straight.gif
+share/gnome/gnomeicu/emoticons/Yahoo/tongue.gif
+share/gnome/gnomeicu/emoticons/Yahoo/wail.gif
+share/gnome/gnomeicu/emoticons/Yahoo/wink.gif
+share/gnome/gnomeicu/emoticons/Yahoo/wonder.gif
+share/gnome/gnomeicu/glade/addcontact.glade
+share/gnome/gnomeicu/glade/auth.glade
+share/gnome/gnomeicu/glade/auto_respond.glade
+share/gnome/gnomeicu/glade/grpmgr.glade
+share/gnome/gnomeicu/glade/history.glade
+share/gnome/gnomeicu/glade/main.glade
+share/gnome/gnomeicu/glade/message.glade
+share/gnome/gnomeicu/glade/prefs.glade
+share/gnome/gnomeicu/glade/user_info.glade
+share/gnome/gnomeicu/glade/welcome.glade
+share/gnome/gnomeicu/icons/Default/gnomeicu-animation.gif
+share/gnome/gnomeicu/icons/Default/gnomeicu-auth.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-away.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-birthday.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-blank.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-cancel.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-chat.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-contact.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-file.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-group.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-hist.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-info
+share/gnome/gnomeicu/icons/Default/gnomeicu-info.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-message.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-na.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-ok.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-online.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-rename.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-still.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-url.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-animation.gif
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-auth.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-away.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-cancel.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-chat.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-contact.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-file.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-hist.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-message.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-na.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ok.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-online.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-rename.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-still.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-url.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-animation.gif
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-away.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-info
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-na.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-online.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-away.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-info
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-na.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-online.png
+share/gnome/gnomeicu/prefs_icon_gnomeicu.png
+share/gnome/gnomeicu/prefs_icon_icq.png
+share/gnome/help/gnomeicu/C/figures/addcontactdruid.png
+share/gnome/help/gnomeicu/C/figures/mainwindow.png
+share/gnome/help/gnomeicu/C/figures/messagedialog.png
+share/gnome/help/gnomeicu/C/figures/notificationicon.png
+share/gnome/help/gnomeicu/C/figures/prefdialog.png
+share/gnome/help/gnomeicu/C/figures/sendcontactlist.png
+share/gnome/help/gnomeicu/C/figures/sendfile.png
+share/gnome/help/gnomeicu/C/figures/sendurl.png
+share/gnome/help/gnomeicu/C/figures/userinfo.png
+share/gnome/help/gnomeicu/C/gnomeicu.xml
+share/gnome/help/gnomeicu/uk/figures/addcontactdruid.png
+share/gnome/help/gnomeicu/uk/figures/mainwindow.png
+share/gnome/help/gnomeicu/uk/figures/messagedialog.png
+share/gnome/help/gnomeicu/uk/figures/notificationicon.png
+share/gnome/help/gnomeicu/uk/figures/prefdialog.png
+share/gnome/help/gnomeicu/uk/figures/sendcontactlist.png
+share/gnome/help/gnomeicu/uk/figures/sendfile.png
+share/gnome/help/gnomeicu/uk/figures/sendurl.png
+share/gnome/help/gnomeicu/uk/figures/userinfo.png
+share/gnome/help/gnomeicu/uk/gnomeicu.xml
+share/gnome/omf/gnomeicu/gnomeicu-C.omf
+@exec scrollkeeper-install -q %D/share/gnome/omf/gnomeicu/gnomeicu-C.omf 2>/dev/null || /usr/bin/true
+share/gnome/omf/gnomeicu/gnomeicu-uk.omf
+@exec scrollkeeper-install -q %D/share/gnome/omf/gnomeicu/gnomeicu-uk.omf 2>/dev/null || /usr/bin/true
+share/gnome/pixmaps/gnome-gnomeicu.png
+share/gnome/sounds/gnomeicu/Auth.wav
+share/gnome/sounds/gnomeicu/File.wav
+share/gnome/sounds/gnomeicu/Online.wav
+share/gnome/sounds/gnomeicu/URL.wav
+share/gnome/sounds/gnomeicu/contlist.wav
+share/gnome/sounds/gnomeicu/message.wav
+share/locale/am/LC_MESSAGES/gnomeicu.mo
+share/locale/az/LC_MESSAGES/gnomeicu.mo
+share/locale/be/LC_MESSAGES/gnomeicu.mo
+share/locale/bg/LC_MESSAGES/gnomeicu.mo
+share/locale/ca/LC_MESSAGES/gnomeicu.mo
+share/locale/cs/LC_MESSAGES/gnomeicu.mo
+share/locale/da/LC_MESSAGES/gnomeicu.mo
+share/locale/de/LC_MESSAGES/gnomeicu.mo
+share/locale/el/LC_MESSAGES/gnomeicu.mo
+share/locale/en_CA/LC_MESSAGES/gnomeicu.mo
+share/locale/en_GB/LC_MESSAGES/gnomeicu.mo
+share/locale/es/LC_MESSAGES/gnomeicu.mo
+share/locale/eu/LC_MESSAGES/gnomeicu.mo
+share/locale/fi/LC_MESSAGES/gnomeicu.mo
+share/locale/fr/LC_MESSAGES/gnomeicu.mo
+share/locale/ga/LC_MESSAGES/gnomeicu.mo
+share/locale/gl/LC_MESSAGES/gnomeicu.mo
+share/locale/he/LC_MESSAGES/gnomeicu.mo
+share/locale/hr/LC_MESSAGES/gnomeicu.mo
+share/locale/hu/LC_MESSAGES/gnomeicu.mo
+share/locale/it/LC_MESSAGES/gnomeicu.mo
+share/locale/ja/LC_MESSAGES/gnomeicu.mo
+share/locale/ko/LC_MESSAGES/gnomeicu.mo
+share/locale/lt/LC_MESSAGES/gnomeicu.mo
+share/locale/lv/LC_MESSAGES/gnomeicu.mo
+share/locale/mk/LC_MESSAGES/gnomeicu.mo
+share/locale/ml/LC_MESSAGES/gnomeicu.mo
+share/locale/ms/LC_MESSAGES/gnomeicu.mo
+share/locale/nl/LC_MESSAGES/gnomeicu.mo
+share/locale/nn/LC_MESSAGES/gnomeicu.mo
+share/locale/no/LC_MESSAGES/gnomeicu.mo
+share/locale/pl/LC_MESSAGES/gnomeicu.mo
+share/locale/pt/LC_MESSAGES/gnomeicu.mo
+share/locale/pt_BR/LC_MESSAGES/gnomeicu.mo
+share/locale/ro/LC_MESSAGES/gnomeicu.mo
+share/locale/ru/LC_MESSAGES/gnomeicu.mo
+share/locale/sk/LC_MESSAGES/gnomeicu.mo
+share/locale/sl/LC_MESSAGES/gnomeicu.mo
+share/locale/sr/LC_MESSAGES/gnomeicu.mo
+share/locale/sr@Latn/LC_MESSAGES/gnomeicu.mo
+share/locale/sv/LC_MESSAGES/gnomeicu.mo
+share/locale/th/LC_MESSAGES/gnomeicu.mo
+share/locale/tr/LC_MESSAGES/gnomeicu.mo
+share/locale/uk/LC_MESSAGES/gnomeicu.mo
+share/locale/vi/LC_MESSAGES/gnomeicu.mo
+share/locale/zh_CN/LC_MESSAGES/gnomeicu.mo
+share/locale/zh_TW/LC_MESSAGES/gnomeicu.mo
+@dirrm share/gnome/sounds/gnomeicu
+@dirrm share/gnome/omf/gnomeicu
+@dirrm share/gnome/help/gnomeicu/uk/figures
+@dirrm share/gnome/help/gnomeicu/uk
+@dirrm share/gnome/help/gnomeicu/C/figures
+@dirrm share/gnome/help/gnomeicu/C
+@dirrm share/gnome/help/gnomeicu
+@dirrm share/gnome/gnomeicu/icons/reDubbed
+@dirrm share/gnome/gnomeicu/icons/Gradients
+@dirrm share/gnome/gnomeicu/icons/Eyeballs
+@dirrm share/gnome/gnomeicu/icons/Default
+@dirrm share/gnome/gnomeicu/icons
+@dirrm share/gnome/gnomeicu/glade
+@dirrm share/gnome/gnomeicu/emoticons/Yahoo
+@dirrm share/gnome/gnomeicu/emoticons/MSN
+@dirrm share/gnome/gnomeicu/emoticons/Default
+@dirrm share/gnome/gnomeicu/emoticons/Always
+@dirrm share/gnome/gnomeicu/emoticons/AIM
+@dirrm share/gnome/gnomeicu/emoticons
+@dirrm share/gnome/gnomeicu
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/network
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/color
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/ui
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/themes
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/status
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/files
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/events
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/connections
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/network
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/color
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/ui
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/themes
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/status
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/files
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/events
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/connections
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu
+@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnomeicu/gnomeicu-C.omf 2>/dev/null || /usr/bin/true
+@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnomeicu/gnomeicu-uk.omf 2>/dev/null || /usr/bin/true
diff --git a/net/gnomeicu2/Makefile b/net/gnomeicu2/Makefile
new file mode 100644
index 000000000..34daf7e75
--- /dev/null
+++ b/net/gnomeicu2/Makefile
@@ -0,0 +1,59 @@
+# Ports collection Makefile for: GnomeICU
+# Date created: 03/16/1999
+# Whom: nectar@FreeBSD.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= gnomeicu2
+PORTVERSION= 0.99.5
+CATEGORIES= net gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= gnomeicu
+DISTNAME= gnomeicu-${PORTVERSION}
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= GNOME2 ICQ client
+
+LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GNOME= gnomeprefix gnomehack libglade2 gnomepanel lthack libxml2
+USE_GMAKE= yes
+USE_LIBTOOL_VER=13
+USE_REINPLACE= yes
+.if defined(WITH_DANTE)
+LIB_DEPENDS+= socks.1:${PORTSDIR}/net/dante
+SOCKSFLAGS= -Dconnect=Rconnect -Dbind=Rbind -Dgetsockname=Rgetsockname \
+ -Dgetpeername=Rgetpeername -Daccept=Raccept \
+ -Drresvport=Rrresvport -Dbindresvport=Rbindresvport \
+ -Dgethostbyname=Rgethostbyname \
+ -Dgethostbyname2=Rgethostbyname2 -Dsendto=Rsendto \
+ -Drecvfrom=Rrecvfrom -Drecvfrom=Rrecvfrom -Dwrite=Rwrite \
+ -Dwritev=Rwritev -Dsend=Rsend -Dsendmsg=Rsendmsg \
+ -Dread=Rread -Dreadv=Rreadv -Drecv=Rrecv -Drecvmsg=Rrecvmsg
+SOCKSLIBS= -lsocks
+.elif defined(WITH_SOCKS5)
+BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
+SOCKSFLAGS= -DSOCKS -include ${LOCALBASE}/include/socks.h
+SOCKSLIBS= -lsocks5
+.endif
+
+CONFIGURE_ARGS= --with-statusmenu
+CONFIGURE_ENV= CPPFLAGS="${SOCKSFLAGS} -I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib" LIBS="-liconv ${SOCKSLIBS} -lintl" \
+ CFLAGS="${CFLAGS}"
+
+.ifndef(WITHOUT_GTKSPELL)
+LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2
+CONFIGURE_ARGS+=--enable-gtkspell
+.else
+CONFIGURE_ARGS+=--disable-gtkspell
+.endif
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|GNOME_PARAM_GNOME_DATADIR|GNOME_PARAM_APP_DATADIR|g' \
+ ${WRKSRC}/src/gnomeicu.c
+
+.include <bsd.port.mk>
diff --git a/net/gnomeicu2/distinfo b/net/gnomeicu2/distinfo
new file mode 100644
index 000000000..4121cb36e
--- /dev/null
+++ b/net/gnomeicu2/distinfo
@@ -0,0 +1,2 @@
+MD5 (gnomeicu-0.99.5.tar.bz2) = 59ff902171a14ad37896f6661ddedb7a
+SIZE (gnomeicu-0.99.5.tar.bz2) = 2102452
diff --git a/net/gnomeicu2/files/patch-src::icu_db.c b/net/gnomeicu2/files/patch-src::icu_db.c
new file mode 100644
index 000000000..3df66fcf8
--- /dev/null
+++ b/net/gnomeicu2/files/patch-src::icu_db.c
@@ -0,0 +1,17 @@
+
+$FreeBSD$
+
+--- src/icu_db.c.orig Sat Jun 22 22:11:46 2002
++++ src/icu_db.c Wed Sep 11 11:45:05 2002
+@@ -27,7 +27,11 @@
+
+ #include <fcntl.h>
+ #include <errno.h>
++#if defined(HAVE_STDLIB_H)
++#include <stdlib.h>
++#else
+ #include <malloc.h>
++#endif
+ #include <stdio.h>
+ #include <string.h>
+ #include <sys/param.h>
diff --git a/net/gnomeicu2/files/patch-src_userserver.c b/net/gnomeicu2/files/patch-src_userserver.c
new file mode 100644
index 000000000..23e5ed601
--- /dev/null
+++ b/net/gnomeicu2/files/patch-src_userserver.c
@@ -0,0 +1,16 @@
+--- src/userserver.c.orig Fri Apr 2 15:20:45 2004
++++ src/userserver.c Fri Apr 2 15:20:54 2004
+@@ -6,12 +6,12 @@
+ ***************************/
+
+ #include <errno.h>
++#include <sys/types.h>
+ #include <netinet/in.h>
+ #include <pwd.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
+-#include <sys/types.h>
+ #include <sys/socket.h>
+ #include <sys/stat.h>
+ #include <sys/un.h>
diff --git a/net/gnomeicu2/files/patch-src_v7login.c b/net/gnomeicu2/files/patch-src_v7login.c
new file mode 100644
index 000000000..cea1c7fbe
--- /dev/null
+++ b/net/gnomeicu2/files/patch-src_v7login.c
@@ -0,0 +1,10 @@
+--- src/v7login.c.orig Fri Apr 2 15:25:21 2004
++++ src/v7login.c Fri Apr 2 15:25:57 2004
+@@ -18,6 +18,7 @@
+ #include <stdlib.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
++#include <netinet/in.h>
+ #include <netdb.h>
+ #include <unistd.h>
+ #include <fcntl.h>
diff --git a/net/gnomeicu2/files/patch-src_v7newuser.c b/net/gnomeicu2/files/patch-src_v7newuser.c
new file mode 100644
index 000000000..e235da7be
--- /dev/null
+++ b/net/gnomeicu2/files/patch-src_v7newuser.c
@@ -0,0 +1,10 @@
+--- src/v7newuser.c.orig Fri Apr 2 15:26:51 2004
++++ src/v7newuser.c Fri Apr 2 15:27:04 2004
+@@ -19,6 +19,7 @@
+ #include <string.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
++#include <netinet/in.h>
+ #include <netdb.h>
+ #include <unistd.h>
+ #include <fcntl.h>
diff --git a/net/gnomeicu2/files/patch-src_v7recv.c b/net/gnomeicu2/files/patch-src_v7recv.c
new file mode 100644
index 000000000..43a64d996
--- /dev/null
+++ b/net/gnomeicu2/files/patch-src_v7recv.c
@@ -0,0 +1,10 @@
+--- src/v7recv.c.orig Fri Apr 2 15:27:50 2004
++++ src/v7recv.c Fri Apr 2 15:28:03 2004
+@@ -27,6 +27,7 @@
+ #include <stdlib.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
++#include <netinet/in.h>
+ #include <netdb.h>
+ #include <unistd.h>
+ #include <fcntl.h>
diff --git a/net/gnomeicu2/pkg-descr b/net/gnomeicu2/pkg-descr
new file mode 100644
index 000000000..df8c0c649
--- /dev/null
+++ b/net/gnomeicu2/pkg-descr
@@ -0,0 +1,8 @@
+ GnomeICU (previously GtkICQ) is an Internet based communications
+ program which makes use of ICQ protocol. GnomeICU also makes use of
+ Gnome2, a growingly popular desktop environment. GnomeICU is released
+ under the GNU Public License, and is available free of charge.
+
+WWW: http://gnomeicu.sourceforge.net
+
+Jacques Vidrine <nectar@FreeBSD.ORG>
diff --git a/net/gnomeicu2/pkg-plist b/net/gnomeicu2/pkg-plist
new file mode 100644
index 000000000..84142858d
--- /dev/null
+++ b/net/gnomeicu2/pkg-plist
@@ -0,0 +1,347 @@
+bin/gnomeicu
+bin/gnomeicu-client
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/connections/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/events/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/files/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/status/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/themes/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/ui/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/color/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/network/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/connections/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/events/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/files/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/status/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/themes/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/ui/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/color/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/network/%gconf.xml
+etc/gconf/schemas/gnomeicu.schemas
+etc/sound/events/GnomeICU.soundlist
+share/gnome/applications/GnomeICU.desktop
+share/gnome/gnomeicu/emoticons/AIM/angel.xpm
+share/gnome/gnomeicu/emoticons/AIM/bigsmile.xpm
+share/gnome/gnomeicu/emoticons/AIM/crossedlips.xpm
+share/gnome/gnomeicu/emoticons/AIM/cry.xpm
+share/gnome/gnomeicu/emoticons/AIM/embarrassed.xpm
+share/gnome/gnomeicu/emoticons/AIM/emoticon-data
+share/gnome/gnomeicu/emoticons/AIM/kiss.xpm
+share/gnome/gnomeicu/emoticons/AIM/sad.xpm
+share/gnome/gnomeicu/emoticons/AIM/scream.xpm
+share/gnome/gnomeicu/emoticons/AIM/smile.xpm
+share/gnome/gnomeicu/emoticons/AIM/smile8.xpm
+share/gnome/gnomeicu/emoticons/AIM/think.xpm
+share/gnome/gnomeicu/emoticons/AIM/tongue.xpm
+share/gnome/gnomeicu/emoticons/AIM/wink.xpm
+share/gnome/gnomeicu/emoticons/Always/Annoyed.bmp
+share/gnome/gnomeicu/emoticons/Always/Disgusted.bmp
+share/gnome/gnomeicu/emoticons/Always/Drooling.bmp
+share/gnome/gnomeicu/emoticons/Always/Giggling.bmp
+share/gnome/gnomeicu/emoticons/Always/Jokingly.bmp
+share/gnome/gnomeicu/emoticons/Always/Shocked.bmp
+share/gnome/gnomeicu/emoticons/Always/Surprised-F.bmp
+share/gnome/gnomeicu/emoticons/Always/Surprised-M.bmp
+share/gnome/gnomeicu/emoticons/Always/Whining.bmp
+share/gnome/gnomeicu/emoticons/Always/asl.gif
+share/gnome/gnomeicu/emoticons/Always/bat.gif
+share/gnome/gnomeicu/emoticons/Always/beer.gif
+share/gnome/gnomeicu/emoticons/Always/boy.gif
+share/gnome/gnomeicu/emoticons/Always/broken_heart.gif
+share/gnome/gnomeicu/emoticons/Always/cake.gif
+share/gnome/gnomeicu/emoticons/Always/camera.gif
+share/gnome/gnomeicu/emoticons/Always/cat.gif
+share/gnome/gnomeicu/emoticons/Always/clock.gif
+share/gnome/gnomeicu/emoticons/Always/coffee.gif
+share/gnome/gnomeicu/emoticons/Always/cuffs.gif
+share/gnome/gnomeicu/emoticons/Always/dog.gif
+share/gnome/gnomeicu/emoticons/Always/dude_hug.gif
+share/gnome/gnomeicu/emoticons/Always/emoticon-data
+share/gnome/gnomeicu/emoticons/Always/envelope.gif
+share/gnome/gnomeicu/emoticons/Always/film.gif
+share/gnome/gnomeicu/emoticons/Always/girl.gif
+share/gnome/gnomeicu/emoticons/Always/girl_hug.gif
+share/gnome/gnomeicu/emoticons/Always/heart.gif
+share/gnome/gnomeicu/emoticons/Always/martini.gif
+share/gnome/gnomeicu/emoticons/Always/messenger.gif
+share/gnome/gnomeicu/emoticons/Always/moon.gif
+share/gnome/gnomeicu/emoticons/Always/musical_note.gif
+share/gnome/gnomeicu/emoticons/Always/phone.gif
+share/gnome/gnomeicu/emoticons/Always/present.gif
+share/gnome/gnomeicu/emoticons/Always/rainbow.gif
+share/gnome/gnomeicu/emoticons/Always/rose.gif
+share/gnome/gnomeicu/emoticons/Always/star.gif
+share/gnome/gnomeicu/emoticons/Always/sun.gif
+share/gnome/gnomeicu/emoticons/Always/thumbs_down.gif
+share/gnome/gnomeicu/emoticons/Always/thumbs_up.gif
+share/gnome/gnomeicu/emoticons/Always/wilted_rose.gif
+share/gnome/gnomeicu/emoticons/Default/bigsmile.png
+share/gnome/gnomeicu/emoticons/Default/cry.png
+share/gnome/gnomeicu/emoticons/Default/emoticon-data
+share/gnome/gnomeicu/emoticons/Default/glasses.png
+share/gnome/gnomeicu/emoticons/Default/sad.png
+share/gnome/gnomeicu/emoticons/Default/scream.png
+share/gnome/gnomeicu/emoticons/Default/smile.png
+share/gnome/gnomeicu/emoticons/Default/smile2.png
+share/gnome/gnomeicu/emoticons/Default/smile8.png
+share/gnome/gnomeicu/emoticons/Default/straight.png
+share/gnome/gnomeicu/emoticons/Default/tongue.png
+share/gnome/gnomeicu/emoticons/Default/unsure.png
+share/gnome/gnomeicu/emoticons/Default/wink.png
+share/gnome/gnomeicu/emoticons/MSN/angel.png
+share/gnome/gnomeicu/emoticons/MSN/angry.png
+share/gnome/gnomeicu/emoticons/MSN/bigsmile.png
+share/gnome/gnomeicu/emoticons/MSN/confused.png
+share/gnome/gnomeicu/emoticons/MSN/cry.png
+share/gnome/gnomeicu/emoticons/MSN/devil.png
+share/gnome/gnomeicu/emoticons/MSN/embarassed.png
+share/gnome/gnomeicu/emoticons/MSN/emoticon-data
+share/gnome/gnomeicu/emoticons/MSN/kiss.png
+share/gnome/gnomeicu/emoticons/MSN/light.gif
+share/gnome/gnomeicu/emoticons/MSN/sad.png
+share/gnome/gnomeicu/emoticons/MSN/shocked.png
+share/gnome/gnomeicu/emoticons/MSN/smile.png
+share/gnome/gnomeicu/emoticons/MSN/smile8.png
+share/gnome/gnomeicu/emoticons/MSN/straight.png
+share/gnome/gnomeicu/emoticons/MSN/tongue.png
+share/gnome/gnomeicu/emoticons/MSN/wink.png
+share/gnome/gnomeicu/emoticons/Yahoo/alien.gif
+share/gnome/gnomeicu/emoticons/Yahoo/angel.gif
+share/gnome/gnomeicu/emoticons/Yahoo/angry.gif
+share/gnome/gnomeicu/emoticons/Yahoo/bigsmile.gif
+share/gnome/gnomeicu/emoticons/Yahoo/blush.gif
+share/gnome/gnomeicu/emoticons/Yahoo/clown.gif
+share/gnome/gnomeicu/emoticons/Yahoo/cow.gif
+share/gnome/gnomeicu/emoticons/Yahoo/cowboy.gif
+share/gnome/gnomeicu/emoticons/Yahoo/devil.gif
+share/gnome/gnomeicu/emoticons/Yahoo/emoticon-data
+share/gnome/gnomeicu/emoticons/Yahoo/flag.gif
+share/gnome/gnomeicu/emoticons/Yahoo/green.gif
+share/gnome/gnomeicu/emoticons/Yahoo/hrmph.gif
+share/gnome/gnomeicu/emoticons/Yahoo/ignore.gif
+share/gnome/gnomeicu/emoticons/Yahoo/kiss.gif
+share/gnome/gnomeicu/emoticons/Yahoo/light.gif
+share/gnome/gnomeicu/emoticons/Yahoo/monkey.gif
+share/gnome/gnomeicu/emoticons/Yahoo/nerd.gif
+share/gnome/gnomeicu/emoticons/Yahoo/pig.gif
+share/gnome/gnomeicu/emoticons/Yahoo/pumpkin.gif
+share/gnome/gnomeicu/emoticons/Yahoo/quiet.gif
+share/gnome/gnomeicu/emoticons/Yahoo/rofl.gif
+share/gnome/gnomeicu/emoticons/Yahoo/rose.gif
+share/gnome/gnomeicu/emoticons/Yahoo/sad.gif
+share/gnome/gnomeicu/emoticons/Yahoo/shocked.gif
+share/gnome/gnomeicu/emoticons/Yahoo/skull.gif
+share/gnome/gnomeicu/emoticons/Yahoo/sleep.gif
+share/gnome/gnomeicu/emoticons/Yahoo/smile.gif
+share/gnome/gnomeicu/emoticons/Yahoo/smile8.gif
+share/gnome/gnomeicu/emoticons/Yahoo/stop.gif
+share/gnome/gnomeicu/emoticons/Yahoo/straight.gif
+share/gnome/gnomeicu/emoticons/Yahoo/tongue.gif
+share/gnome/gnomeicu/emoticons/Yahoo/wail.gif
+share/gnome/gnomeicu/emoticons/Yahoo/wink.gif
+share/gnome/gnomeicu/emoticons/Yahoo/wonder.gif
+share/gnome/gnomeicu/glade/addcontact.glade
+share/gnome/gnomeicu/glade/auth.glade
+share/gnome/gnomeicu/glade/auto_respond.glade
+share/gnome/gnomeicu/glade/grpmgr.glade
+share/gnome/gnomeicu/glade/history.glade
+share/gnome/gnomeicu/glade/main.glade
+share/gnome/gnomeicu/glade/message.glade
+share/gnome/gnomeicu/glade/prefs.glade
+share/gnome/gnomeicu/glade/user_info.glade
+share/gnome/gnomeicu/glade/welcome.glade
+share/gnome/gnomeicu/icons/Default/gnomeicu-animation.gif
+share/gnome/gnomeicu/icons/Default/gnomeicu-auth.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-away.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-birthday.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-blank.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-cancel.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-chat.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-contact.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-file.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-group.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-hist.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-info
+share/gnome/gnomeicu/icons/Default/gnomeicu-info.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-message.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-na.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-ok.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-online.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-rename.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-still.png
+share/gnome/gnomeicu/icons/Default/gnomeicu-url.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-animation.gif
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-auth.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-away.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-cancel.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-chat.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-contact.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-file.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-hist.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-info.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-message.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-na.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-ok.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-online.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-rename.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-still.png
+share/gnome/gnomeicu/icons/Eyeballs/gnomeicu-url.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-animation.gif
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-away.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-info
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-na.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/Gradients/gnomeicu-online.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-away.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-dnd.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-ffc.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-info
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-inv.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-na.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-occ.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-offline.png
+share/gnome/gnomeicu/icons/reDubbed/gnomeicu-online.png
+share/gnome/gnomeicu/prefs_icon_gnomeicu.png
+share/gnome/gnomeicu/prefs_icon_icq.png
+share/gnome/help/gnomeicu/C/figures/addcontactdruid.png
+share/gnome/help/gnomeicu/C/figures/mainwindow.png
+share/gnome/help/gnomeicu/C/figures/messagedialog.png
+share/gnome/help/gnomeicu/C/figures/notificationicon.png
+share/gnome/help/gnomeicu/C/figures/prefdialog.png
+share/gnome/help/gnomeicu/C/figures/sendcontactlist.png
+share/gnome/help/gnomeicu/C/figures/sendfile.png
+share/gnome/help/gnomeicu/C/figures/sendurl.png
+share/gnome/help/gnomeicu/C/figures/userinfo.png
+share/gnome/help/gnomeicu/C/gnomeicu.xml
+share/gnome/help/gnomeicu/uk/figures/addcontactdruid.png
+share/gnome/help/gnomeicu/uk/figures/mainwindow.png
+share/gnome/help/gnomeicu/uk/figures/messagedialog.png
+share/gnome/help/gnomeicu/uk/figures/notificationicon.png
+share/gnome/help/gnomeicu/uk/figures/prefdialog.png
+share/gnome/help/gnomeicu/uk/figures/sendcontactlist.png
+share/gnome/help/gnomeicu/uk/figures/sendfile.png
+share/gnome/help/gnomeicu/uk/figures/sendurl.png
+share/gnome/help/gnomeicu/uk/figures/userinfo.png
+share/gnome/help/gnomeicu/uk/gnomeicu.xml
+share/gnome/omf/gnomeicu/gnomeicu-C.omf
+@exec scrollkeeper-install -q %D/share/gnome/omf/gnomeicu/gnomeicu-C.omf 2>/dev/null || /usr/bin/true
+share/gnome/omf/gnomeicu/gnomeicu-uk.omf
+@exec scrollkeeper-install -q %D/share/gnome/omf/gnomeicu/gnomeicu-uk.omf 2>/dev/null || /usr/bin/true
+share/gnome/pixmaps/gnome-gnomeicu.png
+share/gnome/sounds/gnomeicu/Auth.wav
+share/gnome/sounds/gnomeicu/File.wav
+share/gnome/sounds/gnomeicu/Online.wav
+share/gnome/sounds/gnomeicu/URL.wav
+share/gnome/sounds/gnomeicu/contlist.wav
+share/gnome/sounds/gnomeicu/message.wav
+share/locale/am/LC_MESSAGES/gnomeicu.mo
+share/locale/az/LC_MESSAGES/gnomeicu.mo
+share/locale/be/LC_MESSAGES/gnomeicu.mo
+share/locale/bg/LC_MESSAGES/gnomeicu.mo
+share/locale/ca/LC_MESSAGES/gnomeicu.mo
+share/locale/cs/LC_MESSAGES/gnomeicu.mo
+share/locale/da/LC_MESSAGES/gnomeicu.mo
+share/locale/de/LC_MESSAGES/gnomeicu.mo
+share/locale/el/LC_MESSAGES/gnomeicu.mo
+share/locale/en_CA/LC_MESSAGES/gnomeicu.mo
+share/locale/en_GB/LC_MESSAGES/gnomeicu.mo
+share/locale/es/LC_MESSAGES/gnomeicu.mo
+share/locale/eu/LC_MESSAGES/gnomeicu.mo
+share/locale/fi/LC_MESSAGES/gnomeicu.mo
+share/locale/fr/LC_MESSAGES/gnomeicu.mo
+share/locale/ga/LC_MESSAGES/gnomeicu.mo
+share/locale/gl/LC_MESSAGES/gnomeicu.mo
+share/locale/he/LC_MESSAGES/gnomeicu.mo
+share/locale/hr/LC_MESSAGES/gnomeicu.mo
+share/locale/hu/LC_MESSAGES/gnomeicu.mo
+share/locale/it/LC_MESSAGES/gnomeicu.mo
+share/locale/ja/LC_MESSAGES/gnomeicu.mo
+share/locale/ko/LC_MESSAGES/gnomeicu.mo
+share/locale/lt/LC_MESSAGES/gnomeicu.mo
+share/locale/lv/LC_MESSAGES/gnomeicu.mo
+share/locale/mk/LC_MESSAGES/gnomeicu.mo
+share/locale/ml/LC_MESSAGES/gnomeicu.mo
+share/locale/ms/LC_MESSAGES/gnomeicu.mo
+share/locale/nl/LC_MESSAGES/gnomeicu.mo
+share/locale/nn/LC_MESSAGES/gnomeicu.mo
+share/locale/no/LC_MESSAGES/gnomeicu.mo
+share/locale/pl/LC_MESSAGES/gnomeicu.mo
+share/locale/pt/LC_MESSAGES/gnomeicu.mo
+share/locale/pt_BR/LC_MESSAGES/gnomeicu.mo
+share/locale/ro/LC_MESSAGES/gnomeicu.mo
+share/locale/ru/LC_MESSAGES/gnomeicu.mo
+share/locale/sk/LC_MESSAGES/gnomeicu.mo
+share/locale/sl/LC_MESSAGES/gnomeicu.mo
+share/locale/sr/LC_MESSAGES/gnomeicu.mo
+share/locale/sr@Latn/LC_MESSAGES/gnomeicu.mo
+share/locale/sv/LC_MESSAGES/gnomeicu.mo
+share/locale/th/LC_MESSAGES/gnomeicu.mo
+share/locale/tr/LC_MESSAGES/gnomeicu.mo
+share/locale/uk/LC_MESSAGES/gnomeicu.mo
+share/locale/vi/LC_MESSAGES/gnomeicu.mo
+share/locale/zh_CN/LC_MESSAGES/gnomeicu.mo
+share/locale/zh_TW/LC_MESSAGES/gnomeicu.mo
+@dirrm share/gnome/sounds/gnomeicu
+@dirrm share/gnome/omf/gnomeicu
+@dirrm share/gnome/help/gnomeicu/uk/figures
+@dirrm share/gnome/help/gnomeicu/uk
+@dirrm share/gnome/help/gnomeicu/C/figures
+@dirrm share/gnome/help/gnomeicu/C
+@dirrm share/gnome/help/gnomeicu
+@dirrm share/gnome/gnomeicu/icons/reDubbed
+@dirrm share/gnome/gnomeicu/icons/Gradients
+@dirrm share/gnome/gnomeicu/icons/Eyeballs
+@dirrm share/gnome/gnomeicu/icons/Default
+@dirrm share/gnome/gnomeicu/icons
+@dirrm share/gnome/gnomeicu/glade
+@dirrm share/gnome/gnomeicu/emoticons/Yahoo
+@dirrm share/gnome/gnomeicu/emoticons/MSN
+@dirrm share/gnome/gnomeicu/emoticons/Default
+@dirrm share/gnome/gnomeicu/emoticons/Always
+@dirrm share/gnome/gnomeicu/emoticons/AIM
+@dirrm share/gnome/gnomeicu/emoticons
+@dirrm share/gnome/gnomeicu
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/network
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq/color
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/icq
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/ui
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/themes
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/status
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/files
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/events
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general/connections
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu/general
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnomeicu
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/network
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq/color
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/icq
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/ui
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/themes
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/status
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/files
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/events
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general/connections
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu/general
+@dirrm etc/gconf/gconf.xml.defaults/apps/gnomeicu
+@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnomeicu/gnomeicu-C.omf 2>/dev/null || /usr/bin/true
+@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnomeicu/gnomeicu-uk.omf 2>/dev/null || /usr/bin/true