diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-05-01 01:50:24 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-05-01 01:50:24 +0800 |
commit | 76f08006754cb11adbbb9d15538e8c85bdb745ab (patch) | |
tree | 4ff82853706a153bb8ec68f5634f9e742ee25a34 /net-im | |
parent | fbc523132bcb5e05ce5e0953112dca867ac812cd (diff) | |
download | marcuscom-ports-76f08006754cb11adbbb9d15538e8c85bdb745ab.tar.gz marcuscom-ports-76f08006754cb11adbbb9d15538e8c85bdb745ab.tar.zst marcuscom-ports-76f08006754cb11adbbb9d15538e8c85bdb745ab.zip |
share/gnome -> share
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8705 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gnomeicu/Makefile | 64 | ||||
-rw-r--r-- | net-im/gnomeicu/distinfo | 3 | ||||
-rw-r--r-- | net-im/gnomeicu/files/patch-src::icu_db.c | 14 | ||||
-rw-r--r-- | net-im/gnomeicu/files/patch-src_userserver.c | 16 | ||||
-rw-r--r-- | net-im/gnomeicu/pkg-descr | 8 | ||||
-rw-r--r-- | net-im/gnomeicu/pkg-plist | 303 |
6 files changed, 408 insertions, 0 deletions
diff --git a/net-im/gnomeicu/Makefile b/net-im/gnomeicu/Makefile new file mode 100644 index 000000000..09d6b2bbc --- /dev/null +++ b/net-im/gnomeicu/Makefile @@ -0,0 +1,64 @@ +# Ports collection Makefile for: GnomeICU +# Date created: 03/16/1999 +# Whom: nectar@FreeBSD.org +# +# $FreeBSD$ +# $MCom$ + +PORTNAME= gnomeicu +PORTVERSION= 0.99.12 +PORTREVISION= 1 +CATEGORIES= net-im gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= gnomeicu + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GNOME 2 ICQ client + +LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm + +USE_BZIP2= yes +USE_XLIB= yes +INSTALLS_OMF= yes +USE_GNOME= gnomeprefix gnomehack libglade2 gnomepanel libxml2 \ + intlhack +USE_GMAKE= yes +USE_GETTEXT= yes +GNU_CONFIGURE= yes + +GCONF_SCHEMAS= gnomeicu.schemas + +.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/gtkspell +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-im/gnomeicu/distinfo b/net-im/gnomeicu/distinfo new file mode 100644 index 000000000..85db22927 --- /dev/null +++ b/net-im/gnomeicu/distinfo @@ -0,0 +1,3 @@ +MD5 (gnomeicu-0.99.12.tar.bz2) = 91d534e19a9f9e408f1f97b3b0748d20 +SHA256 (gnomeicu-0.99.12.tar.bz2) = cb0e9e3d7d04e5764b9ee87905b0f36d660b996faa9051f6a610ffeb00f0649c +SIZE (gnomeicu-0.99.12.tar.bz2) = 1670074 diff --git a/net-im/gnomeicu/files/patch-src::icu_db.c b/net-im/gnomeicu/files/patch-src::icu_db.c new file mode 100644 index 000000000..149a61e53 --- /dev/null +++ b/net-im/gnomeicu/files/patch-src::icu_db.c @@ -0,0 +1,14 @@ +--- 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-im/gnomeicu/files/patch-src_userserver.c b/net-im/gnomeicu/files/patch-src_userserver.c new file mode 100644 index 000000000..23e5ed601 --- /dev/null +++ b/net-im/gnomeicu/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-im/gnomeicu/pkg-descr b/net-im/gnomeicu/pkg-descr new file mode 100644 index 000000000..df8c0c649 --- /dev/null +++ b/net-im/gnomeicu/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-im/gnomeicu/pkg-plist b/net-im/gnomeicu/pkg-plist new file mode 100644 index 000000000..dfc3f0789 --- /dev/null +++ b/net-im/gnomeicu/pkg-plist @@ -0,0 +1,303 @@ +bin/gnomeicu +bin/gnomeicu-client +etc/sound/events/GnomeICU.soundlist +share/applications/GnomeICU.desktop +share/gnomeicu/emoticons/AIM/angel.xpm +share/gnomeicu/emoticons/AIM/bigsmile.xpm +share/gnomeicu/emoticons/AIM/crossedlips.xpm +share/gnomeicu/emoticons/AIM/cry.xpm +share/gnomeicu/emoticons/AIM/embarrassed.xpm +share/gnomeicu/emoticons/AIM/emoticon-data +share/gnomeicu/emoticons/AIM/kiss.xpm +share/gnomeicu/emoticons/AIM/sad.xpm +share/gnomeicu/emoticons/AIM/scream.xpm +share/gnomeicu/emoticons/AIM/smile.xpm +share/gnomeicu/emoticons/AIM/smile8.xpm +share/gnomeicu/emoticons/AIM/think.xpm +share/gnomeicu/emoticons/AIM/tongue.xpm +share/gnomeicu/emoticons/AIM/wink.xpm +share/gnomeicu/emoticons/Always/Annoyed.bmp +share/gnomeicu/emoticons/Always/Disgusted.bmp +share/gnomeicu/emoticons/Always/Drooling.bmp +share/gnomeicu/emoticons/Always/Giggling.bmp +share/gnomeicu/emoticons/Always/Jokingly.bmp +share/gnomeicu/emoticons/Always/Shocked.bmp +share/gnomeicu/emoticons/Always/Surprised-F.bmp +share/gnomeicu/emoticons/Always/Surprised-M.bmp +share/gnomeicu/emoticons/Always/Whining.bmp +share/gnomeicu/emoticons/Always/asl.gif +share/gnomeicu/emoticons/Always/bat.gif +share/gnomeicu/emoticons/Always/beer.gif +share/gnomeicu/emoticons/Always/boy.gif +share/gnomeicu/emoticons/Always/broken_heart.gif +share/gnomeicu/emoticons/Always/cake.gif +share/gnomeicu/emoticons/Always/camera.gif +share/gnomeicu/emoticons/Always/cat.gif +share/gnomeicu/emoticons/Always/clock.gif +share/gnomeicu/emoticons/Always/coffee.gif +share/gnomeicu/emoticons/Always/cuffs.gif +share/gnomeicu/emoticons/Always/dog.gif +share/gnomeicu/emoticons/Always/dude_hug.gif +share/gnomeicu/emoticons/Always/emoticon-data +share/gnomeicu/emoticons/Always/envelope.gif +share/gnomeicu/emoticons/Always/film.gif +share/gnomeicu/emoticons/Always/girl.gif +share/gnomeicu/emoticons/Always/girl_hug.gif +share/gnomeicu/emoticons/Always/heart.gif +share/gnomeicu/emoticons/Always/martini.gif +share/gnomeicu/emoticons/Always/messenger.gif +share/gnomeicu/emoticons/Always/moon.gif +share/gnomeicu/emoticons/Always/musical_note.gif +share/gnomeicu/emoticons/Always/phone.gif +share/gnomeicu/emoticons/Always/present.gif +share/gnomeicu/emoticons/Always/rainbow.gif +share/gnomeicu/emoticons/Always/rose.gif +share/gnomeicu/emoticons/Always/star.gif +share/gnomeicu/emoticons/Always/sun.gif +share/gnomeicu/emoticons/Always/thumbs_down.gif +share/gnomeicu/emoticons/Always/thumbs_up.gif +share/gnomeicu/emoticons/Always/wilted_rose.gif +share/gnomeicu/emoticons/Default/bigsmile.png +share/gnomeicu/emoticons/Default/cry.png +share/gnomeicu/emoticons/Default/emoticon-data +share/gnomeicu/emoticons/Default/glasses.png +share/gnomeicu/emoticons/Default/sad.png +share/gnomeicu/emoticons/Default/scream.png +share/gnomeicu/emoticons/Default/smile.png +share/gnomeicu/emoticons/Default/smile2.png +share/gnomeicu/emoticons/Default/smile8.png +share/gnomeicu/emoticons/Default/straight.png +share/gnomeicu/emoticons/Default/tongue.png +share/gnomeicu/emoticons/Default/unsure.png +share/gnomeicu/emoticons/Default/wink.png +share/gnomeicu/emoticons/MSN/angel.png +share/gnomeicu/emoticons/MSN/angry.png +share/gnomeicu/emoticons/MSN/bigsmile.png +share/gnomeicu/emoticons/MSN/confused.png +share/gnomeicu/emoticons/MSN/cry.png +share/gnomeicu/emoticons/MSN/devil.png +share/gnomeicu/emoticons/MSN/embarassed.png +share/gnomeicu/emoticons/MSN/emoticon-data +share/gnomeicu/emoticons/MSN/kiss.png +share/gnomeicu/emoticons/MSN/light.gif +share/gnomeicu/emoticons/MSN/sad.png +share/gnomeicu/emoticons/MSN/shocked.png +share/gnomeicu/emoticons/MSN/smile.png +share/gnomeicu/emoticons/MSN/smile8.png +share/gnomeicu/emoticons/MSN/straight.png +share/gnomeicu/emoticons/MSN/tongue.png +share/gnomeicu/emoticons/MSN/wink.png +share/gnomeicu/emoticons/Yahoo/alien.gif +share/gnomeicu/emoticons/Yahoo/angel.gif +share/gnomeicu/emoticons/Yahoo/angry.gif +share/gnomeicu/emoticons/Yahoo/bigsmile.gif +share/gnomeicu/emoticons/Yahoo/blush.gif +share/gnomeicu/emoticons/Yahoo/clown.gif +share/gnomeicu/emoticons/Yahoo/cow.gif +share/gnomeicu/emoticons/Yahoo/cowboy.gif +share/gnomeicu/emoticons/Yahoo/devil.gif +share/gnomeicu/emoticons/Yahoo/emoticon-data +share/gnomeicu/emoticons/Yahoo/flag.gif +share/gnomeicu/emoticons/Yahoo/green.gif +share/gnomeicu/emoticons/Yahoo/hrmph.gif +share/gnomeicu/emoticons/Yahoo/ignore.gif +share/gnomeicu/emoticons/Yahoo/kiss.gif +share/gnomeicu/emoticons/Yahoo/light.gif +share/gnomeicu/emoticons/Yahoo/monkey.gif +share/gnomeicu/emoticons/Yahoo/nerd.gif +share/gnomeicu/emoticons/Yahoo/pig.gif +share/gnomeicu/emoticons/Yahoo/pumpkin.gif +share/gnomeicu/emoticons/Yahoo/quiet.gif +share/gnomeicu/emoticons/Yahoo/rofl.gif +share/gnomeicu/emoticons/Yahoo/rose.gif +share/gnomeicu/emoticons/Yahoo/sad.gif +share/gnomeicu/emoticons/Yahoo/shocked.gif +share/gnomeicu/emoticons/Yahoo/skull.gif +share/gnomeicu/emoticons/Yahoo/sleep.gif +share/gnomeicu/emoticons/Yahoo/smile.gif +share/gnomeicu/emoticons/Yahoo/smile8.gif +share/gnomeicu/emoticons/Yahoo/stop.gif +share/gnomeicu/emoticons/Yahoo/straight.gif +share/gnomeicu/emoticons/Yahoo/tongue.gif +share/gnomeicu/emoticons/Yahoo/wail.gif +share/gnomeicu/emoticons/Yahoo/wink.gif +share/gnomeicu/emoticons/Yahoo/wonder.gif +share/gnomeicu/glade/addcontact.glade +share/gnomeicu/glade/auth.glade +share/gnomeicu/glade/auto_respond.glade +share/gnomeicu/glade/grpmgr.glade +share/gnomeicu/glade/history.glade +share/gnomeicu/glade/main.glade +share/gnomeicu/glade/message.glade +share/gnomeicu/glade/prefs.glade +share/gnomeicu/glade/user_info.glade +share/gnomeicu/glade/welcome.glade +share/gnomeicu/icons/Default/gnomeicu-animation.gif +share/gnomeicu/icons/Default/gnomeicu-auth.png +share/gnomeicu/icons/Default/gnomeicu-away.png +share/gnomeicu/icons/Default/gnomeicu-birthday.png +share/gnomeicu/icons/Default/gnomeicu-blank.png +share/gnomeicu/icons/Default/gnomeicu-cancel.png +share/gnomeicu/icons/Default/gnomeicu-chat.png +share/gnomeicu/icons/Default/gnomeicu-contact.png +share/gnomeicu/icons/Default/gnomeicu-dnd.png +share/gnomeicu/icons/Default/gnomeicu-ffc.png +share/gnomeicu/icons/Default/gnomeicu-file.png +share/gnomeicu/icons/Default/gnomeicu-group.png +share/gnomeicu/icons/Default/gnomeicu-hist.png +share/gnomeicu/icons/Default/gnomeicu-info +share/gnomeicu/icons/Default/gnomeicu-info.png +share/gnomeicu/icons/Default/gnomeicu-inv.png +share/gnomeicu/icons/Default/gnomeicu-message.png +share/gnomeicu/icons/Default/gnomeicu-na.png +share/gnomeicu/icons/Default/gnomeicu-occ.png +share/gnomeicu/icons/Default/gnomeicu-offline.png +share/gnomeicu/icons/Default/gnomeicu-ok.png +share/gnomeicu/icons/Default/gnomeicu-online.png +share/gnomeicu/icons/Default/gnomeicu-rename.png +share/gnomeicu/icons/Default/gnomeicu-still.png +share/gnomeicu/icons/Default/gnomeicu-url.png +share/gnomeicu/icons/Eyeballs/gnomeicu-animation.gif +share/gnomeicu/icons/Eyeballs/gnomeicu-auth.png +share/gnomeicu/icons/Eyeballs/gnomeicu-away.png +share/gnomeicu/icons/Eyeballs/gnomeicu-cancel.png +share/gnomeicu/icons/Eyeballs/gnomeicu-chat.png +share/gnomeicu/icons/Eyeballs/gnomeicu-contact.png +share/gnomeicu/icons/Eyeballs/gnomeicu-dnd.png +share/gnomeicu/icons/Eyeballs/gnomeicu-ffc.png +share/gnomeicu/icons/Eyeballs/gnomeicu-file.png +share/gnomeicu/icons/Eyeballs/gnomeicu-hist.png +share/gnomeicu/icons/Eyeballs/gnomeicu-info +share/gnomeicu/icons/Eyeballs/gnomeicu-info.png +share/gnomeicu/icons/Eyeballs/gnomeicu-inv.png +share/gnomeicu/icons/Eyeballs/gnomeicu-message.png +share/gnomeicu/icons/Eyeballs/gnomeicu-na.png +share/gnomeicu/icons/Eyeballs/gnomeicu-occ.png +share/gnomeicu/icons/Eyeballs/gnomeicu-offline.png +share/gnomeicu/icons/Eyeballs/gnomeicu-ok.png +share/gnomeicu/icons/Eyeballs/gnomeicu-online.png +share/gnomeicu/icons/Eyeballs/gnomeicu-rename.png +share/gnomeicu/icons/Eyeballs/gnomeicu-still.png +share/gnomeicu/icons/Eyeballs/gnomeicu-url.png +share/gnomeicu/icons/Gradients/gnomeicu-animation.gif +share/gnomeicu/icons/Gradients/gnomeicu-away.png +share/gnomeicu/icons/Gradients/gnomeicu-dnd.png +share/gnomeicu/icons/Gradients/gnomeicu-ffc.png +share/gnomeicu/icons/Gradients/gnomeicu-info +share/gnomeicu/icons/Gradients/gnomeicu-inv.png +share/gnomeicu/icons/Gradients/gnomeicu-na.png +share/gnomeicu/icons/Gradients/gnomeicu-occ.png +share/gnomeicu/icons/Gradients/gnomeicu-offline.png +share/gnomeicu/icons/Gradients/gnomeicu-online.png +share/gnomeicu/icons/reDubbed/gnomeicu-away.png +share/gnomeicu/icons/reDubbed/gnomeicu-dnd.png +share/gnomeicu/icons/reDubbed/gnomeicu-ffc.png +share/gnomeicu/icons/reDubbed/gnomeicu-info +share/gnomeicu/icons/reDubbed/gnomeicu-inv.png +share/gnomeicu/icons/reDubbed/gnomeicu-na.png +share/gnomeicu/icons/reDubbed/gnomeicu-occ.png +share/gnomeicu/icons/reDubbed/gnomeicu-offline.png +share/gnomeicu/icons/reDubbed/gnomeicu-online.png +share/gnomeicu/prefs_icon_gnomeicu.png +share/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/omf/gnomeicu/gnomeicu-C.omf +share/omf/gnomeicu/gnomeicu-uk.omf +share/pixmaps/gnomeicu.png +share/sounds/gnomeicu/Auth.wav +share/sounds/gnomeicu/File.wav +share/sounds/gnomeicu/Online.wav +share/sounds/gnomeicu/URL.wav +share/sounds/gnomeicu/contlist.wav +share/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/nb/LC_MESSAGES/gnomeicu.mo +share/locale/ne/LC_MESSAGES/gnomeicu.mo +share/locale/nl/LC_MESSAGES/gnomeicu.mo +share/locale/nn/LC_MESSAGES/gnomeicu.mo +share/locale/pa/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/rw/LC_MESSAGES/gnomeicu.mo +share/locale/sk/LC_MESSAGES/gnomeicu.mo +share/locale/sl/LC_MESSAGES/gnomeicu.mo +share/locale/sq/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_HK/LC_MESSAGES/gnomeicu.mo +share/locale/zh_TW/LC_MESSAGES/gnomeicu.mo +@dirrm share/sounds/gnomeicu +@dirrm share/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/gnomeicu/icons/reDubbed +@dirrm share/gnomeicu/icons/Gradients +@dirrm share/gnomeicu/icons/Eyeballs +@dirrm share/gnomeicu/icons/Default +@dirrm share/gnomeicu/icons +@dirrm share/gnomeicu/glade +@dirrm share/gnomeicu/emoticons/Yahoo +@dirrm share/gnomeicu/emoticons/MSN +@dirrm share/gnomeicu/emoticons/Default +@dirrm share/gnomeicu/emoticons/Always +@dirrm share/gnomeicu/emoticons/AIM +@dirrm share/gnomeicu/emoticons +@dirrm share/gnomeicu |