diff options
author | kwm <kwm@FreeBSD.org> | 2014-11-19 19:49:04 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2014-11-19 19:49:04 +0800 |
commit | be884cd42990f2e755c2c06bc38c8042cb8b0325 (patch) | |
tree | 1ad98a4e8faecd0e2fa9ac2c18e65da4cf89c236 /net-im | |
parent | 1c38992aaca771dc7aab7ae768e5753c6381ecd3 (diff) | |
download | freebsd-ports-gnome-be884cd42990f2e755c2c06bc38c8042cb8b0325.tar.gz freebsd-ports-gnome-be884cd42990f2e755c2c06bc38c8042cb8b0325.tar.zst freebsd-ports-gnome-be884cd42990f2e755c2c06bc38c8042cb8b0325.zip |
The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.
Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up.
This commit removes the old GNOME 2 desktop, bindings and some ports that
can't be compiled. A few ports where updated to more recent versions to
allow them to compile with this update.
Apart from updating ports to newer versions
GDM is more integrated with gnome-shell now, and handles several things for
the GNOME desktop such as screen locking. If you want to use GNOME 3 via
startx, you will have to add your own lock screen/screensaver. For example xscreensaver
can be used for sessions started without GDM.
Shell Extensions can be installed via https://extensions.gnome.org/ , we have
ported a few that can't be installed via this way.
The old gnome-utils and gnome-games ports where split up into single ports
and where converted to meta-ports.
gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but
if you use startx you need to do this yourself.
Upgrade instructions:
Delete the old and conflicting packages:
# pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \
guile gcalctool gnome-media libgnomekbd
# pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \
evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center
For package users the following lines will be enough:
# pkg upgrade
# pkg install gnome3
For ports users should do the following:
# portmaster -a
# portmaster x11/gnome3
We are currently aware of two issues. The first issue is a bug in the
file monitoring code in the glib20 port. This bug causes glib programs
to crash when files in a monitored directory are added or removed.
Upstream is aware of the problem, but since the problem is quite complex
there is no solution yet. This problem isn't restricted to BSD.
The second issue is that on certain video cards totem will display a
purple/pink overlay on the video. It not clear yet where the issues
comes from.
Major thanks goes to Gustau Perez for being a driving force behind getting
GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the exp-runs.
This update was also made possible by:
Joe Maloney
Kris Moore
Beeblebrox
Ryan Lortie
Antoine Jacoutot
and everyone I missed
Diffstat (limited to 'net-im')
71 files changed, 2243 insertions, 1541 deletions
diff --git a/net-im/Makefile b/net-im/Makefile index 393c8d4d70fa..204b1ac6b543 100644 --- a/net-im/Makefile +++ b/net-im/Makefile @@ -19,6 +19,7 @@ SUBDIR += emesene SUBDIR += empathy SUBDIR += farsight2 + SUBDIR += farstream SUBDIR += finch SUBDIR += folks SUBDIR += folks04 @@ -53,6 +54,8 @@ SUBDIR += ktp-send-file SUBDIR += ktp-text-ui SUBDIR += libjreen + SUBDIR += libnice-gst010 + SUBDIR += libnice-gst1 SUBDIR += libnice SUBDIR += libpurple SUBDIR += libtelepathy @@ -144,6 +147,7 @@ SUBDIR += telegram-cli SUBDIR += telepathy-butterfly SUBDIR += telepathy-farsight + SUBDIR += telepathy-farstream SUBDIR += telepathy-gabble SUBDIR += telepathy-glib SUBDIR += telepathy-haze @@ -153,6 +157,7 @@ SUBDIR += telepathy-mission-control SUBDIR += telepathy-python SUBDIR += telepathy-qt4 + SUBDIR += telepathy-rakia SUBDIR += telepathy-salut SUBDIR += telepathy-sofiasip SUBDIR += tg diff --git a/net-im/ekiga/Makefile b/net-im/ekiga/Makefile index 926c4e50b814..6c8165d2bff0 100644 --- a/net-im/ekiga/Makefile +++ b/net-im/ekiga/Makefile @@ -1,13 +1,12 @@ # Created by: Charlie & <root@ws.ipfw.ru> # $FreeBSD$ +# $MCom: ports/trunk/net-im/ekiga/Makefile 19954 2014-10-15 10:03:57Z kwm $ PORTNAME= ekiga PORTVERSION= 4.0.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-im MASTER_SITES= GNOME -#MASTER_SITES= http://www.ekiga.org/admin/downloads/latest/sources/ekiga_${PORTVERSION}/ -#DISTNAME= ekiga-${PORTVERSION} DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org @@ -21,14 +20,14 @@ LIB_DEPENDS= libboost_signals.so:${PORTSDIR}/devel/boost-libs \ RUN_DEPENDS= gnome-icon-theme>=3.0.0:${PORTSDIR}/misc/gnome-icon-theme GNU_CONFIGURE= yes -USES= gettext gmake libtool perl5 pkgconfig tar:xz +USES= gettext gmake libtool pathfix perl5 pkgconfig \ + tar:xz USE_XORG= xv -USE_GNOME= gtk20 intltool libxml2 -INSTALLS_OMF= yes +USE_GNOME= gtk20 intlhack libxml2 INSTALLS_ICONS= yes - CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib +LIBS+= -I${LOCALBASE}/lib +INSTALL_TARGET= install-strip OPTIONS_DEFINE= LDAP NOTIFY EVOLUTION GCONF DBUS AVAHI GNOMEHELP OPTIONS_DEFAULT=NOTIFY DBUS GCONF AVAHI @@ -102,6 +101,12 @@ CONFIGURE_ARGS+=--disable-ldap PLIST_SUB+= LDAP="@comment " .endif +.if defined(WITH_PLUGINS) +PLIST_SUB+= PLUGINS="" +.else +PLIST_SUB+= PLUGINS="@comment " +.endif + .if ${PORT_OPTIONS:MNOTIFY} LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify CONFIGURE_ARGS+=--enable-notify @@ -132,7 +137,8 @@ PLIST_SUB+= GCONF="" .endif .if ${PORT_OPTIONS:MEVOLUTION} -USE_GNOME+= evolutiondataserver +USE_GNOME+= evolutiondataserver3 +LIB_DEPENDS+= libgcr-3.so:${PORTSDIR}/security/gcr CONFIGURE_ARGS+=--enable-eds PLIST_SUB+= EVOLUTION="" WITH_PLUGINS= 1 @@ -152,6 +158,7 @@ PLIST_SUB+= AVAHI="@comment " .endif .if ${PORT_OPTIONS:MGNOMEHELP} +INSTALLS_OMF= yes PLIST_SUB+= GNOMEHELP="" USE_GNOME+= gnomedocutils .else @@ -159,14 +166,4 @@ CONFIGURE_ARGS+=--disable-gdu PLIST_SUB+= GNOMEHELP="@comment " .endif -.if defined(WITH_PLUGINS) -PLIST_SUB+= PLUGINS="" -.else -PLIST_SUB+= PLUGINS="@comment " -.endif - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ekiga/${PORTVERSION}/libekiga.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ekiga/${PORTVERSION}/plugins/*.so - .include <bsd.port.mk> diff --git a/net-im/ekiga/pkg-plist b/net-im/ekiga/pkg-plist index b1116212157c..523f53f6853f 100644 --- a/net-im/ekiga/pkg-plist +++ b/net-im/ekiga/pkg-plist @@ -3,11 +3,11 @@ bin/ekiga-config-tool %%DBUS%%bin/ekiga-helper %%GCONF%%etc/ekiga/ekiga.schemas lib/ekiga/%%VERSION%%/libekiga.so +man/man1/ekiga.1.gz %%AVAHI%%lib/ekiga/%%VERSION%%/plugins/libgmavahi.so -%%EVOLUTION%%lib/ekiga/%%VERSION%%/plugins/libgmevolution.so -%%LDAP%%lib/ekiga/%%VERSION%%/plugins/libgmldap.so +%%EVOLUTION%%lib/ekiga/4.0.1/plugins/libgmevolution.so +%%LDAP%%lib/ekiga/4.0.1/plugins/libgmldap.so %%NOTIFY%%lib/ekiga/%%VERSION%%/plugins/libgmlibnotify.so -man/man1/ekiga.1.gz share/applications/ekiga.desktop %%DBUS%%share/dbus-1/services/org.ekiga.Ekiga.service %%DBUS%%share/dbus-1/services/org.ekiga.Helper.service @@ -602,45 +602,3 @@ share/sounds/ekiga/dialtone.wav share/sounds/ekiga/newmessage.wav share/sounds/ekiga/ring.wav share/sounds/ekiga/voicemail.wav -@dirrm share/pixmaps/ekiga -@dirrm share/sounds/ekiga -%%GNOMEHELP%%@dirrm share/omf/ekiga -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/zh_CN/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/zh_CN -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/uk/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/uk -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/sv/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/sv -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/sl/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/sl -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/ru/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/ru -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/pt_BR/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/pt_BR -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/oc/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/oc -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/fr/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/fr -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/fi/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/fi -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/eu/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/eu -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/es/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/es -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/en_GB/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/en_GB -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/el/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/el -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/de/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/de -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/ca/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/ca -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/bg/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/bg -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/C/figures -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga/C -%%GNOMEHELP%%@dirrm share/gnome/help/ekiga -%%PLUGINS%%@dirrm lib/ekiga/%%VERSION%%/plugins -@dirrm lib/ekiga/%%VERSION%% -@dirrm lib/ekiga -%%GCONF%%@dirrm etc/ekiga diff --git a/net-im/empathy/Makefile b/net-im/empathy/Makefile index f4738fc51818..47833e39d096 100644 --- a/net-im/empathy/Makefile +++ b/net-im/empathy/Makefile @@ -1,104 +1,85 @@ # Created by: Michael Johnson <ahze@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/empathy/Makefile,v 1.90 2012/08/17 19:06:45 kwm Exp $ +# $MCom: ports/trunk/net-im/empathy/Makefile 20021 2014-10-24 17:45:27Z gusi $ PORTNAME= empathy -PORTVERSION= 2.34.0 -PORTREVISION= 9 +PORTVERSION= 3.12.7 CATEGORIES= net-im gnome MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org COMMENT= GNOME IM client based around telepathy -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes \ - ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss \ - ${LOCALBASE}/libexec/mission-control-5:${PORTSDIR}/net-im/telepathy-mission-control +BUILD_DEPENDS= iso-codes>=0:${PORTSDIR}/misc/iso-codes \ + ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss \ + gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas \ + geoclue>=0:${PORTSDIR}/net/geoclue \ + itstool:${PORTSDIR}/textproc/itstool \ + mc-tool:${PORTSDIR}/net-im/telepathy-mission-control LIB_DEPENDS= libenchant.so:${PORTSDIR}/textproc/enchant \ + libgeocode-glib.so:${PORTSDIR}/net/geocode-glib \ + libgoa-1.0.so:${PORTSDIR}/net/gnome-online-accounts \ + libpulse.so:${PORTSDIR}/audio/pulseaudio \ libtelepathy.so:${PORTSDIR}/net-im/libtelepathy \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib \ - libtelepathy-farsight.so:${PORTSDIR}/net-im/telepathy-farsight \ + libtelepathy-farstream.so:${PORTSDIR}/net-im/telepathy-farstream \ libtelepathy-logger.so:${PORTSDIR}/net-im/telepathy-logger \ - libfolks-telepathy.so:${PORTSDIR}/net-im/folks04 \ - libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique \ + libfolks-telepathy.so:${PORTSDIR}/net-im/folks \ libnotify.so:${PORTSDIR}/devel/libnotify \ - libgcr.so:${PORTSDIR}/security/gnome-keyring \ - libcanberra-gtk.so:${PORTSDIR}/audio/libcanberra -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes \ - ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss \ - ${LOCALBASE}/libexec/mission-control-5:${PORTSDIR}/net-im/telepathy-mission-control - -CONFLICTS= empathy-3.[0-9]* - -USES= gettext gmake libtool pathfix pkgconfig python tar:bzip2 + libgcr-3.so:${PORTSDIR}/security/gcr \ + libcanberra-gtk3.so:${PORTSDIR}/audio/libcanberra-gtk3 \ + libclutter-gst-2.0.so:${PORTSDIR}/multimedia/clutter-gst \ + libwebkitgtk-3.0.so:${PORTSDIR}/www/webkit-gtk3 \ + libsoup-2.4.so:${PORTSDIR}/devel/libsoup +RUN_DEPENDS= iso-codes>=0:${PORTSDIR}/misc/iso-codes \ + ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss \ + gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas \ + geoclue>=0:${PORTSDIR}/net/geoclue \ + mc-tool:${PORTSDIR}/net-im/telepathy-mission-control + +USES= gettext gmake libtool pathfix pkgconfig python tar:xz +USE_GNOME= evolutiondataserver3 gnomeprefix intlhack +USE_GSTREAMER1= yes USE_LDCONFIG= yes -USE_GNOME= evolutiondataserver gnomeprefix pygtk2 -GNU_CONFIGURE= yes -USE_GSTREAMER= yes -INSTALLS_OMF= yes INSTALLS_ICONS= yes -MAKE_JOBS_UNSAFE=yes +MAKE_JOBS_UNSAFE= YES +GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-Werror \ - --with-ca-file=${LOCALBASE}/share/certs/ca-root-nss.crt \ - --enable-nautilus-sendto=no - -GLIB_SCHEMAS= org.gnome.Empathy.gschema.xml - -OPTIONS_DEFINE= JABBER MSN IRC SALUT HAZE WEBKIT MAP -OPTIONS_DEFAULT=JABBER MSN IRC WEBKIT MAP -MSN_DESC= MSN client support -IRC_DESC= IRC client support -SALUT_DESC= Link-local (serverless) XMPP support -HAZE_DESC= Libpurple protocol integration -MAP_DESC= Graphical map support - -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MJABBER} -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-gabble:${PORTSDIR}/net-im/telepathy-gabble -.endif - -.if ${PORT_OPTIONS:MMSN} -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-butterfly:${PORTSDIR}/net-im/telepathy-butterfly -.endif - -.if ${PORT_OPTIONS:MIRC} -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-idle:${PORTSDIR}/net-im/telepathy-idle -.endif - -.if ${PORT_OPTIONS:MSALUT} -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-salut:${PORTSDIR}/net-im/telepathy-salut -.endif - -.if ${PORT_OPTIONS:MHAZE} -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-haze:${PORTSDIR}/net-im/telepathy-haze -.endif - -.if ${PORT_OPTIONS:MWEBKIT} -LIB_DEPENDS+= libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 -CONFIGURE_ARGS+=--enable-webkit -PLIST_SUB+= ADIUM="" -.else -CONFIGURE_ARGS+=--disable-webkit -PLIST_SUB+= ADIUM="@comment " -.endif - -.if ${PORT_OPTIONS:MMAP} -USE_GL= gl -LIB_DEPENDS+= libchamplain-0.8.so:${PORTSDIR}/graphics/libchamplain -CONFIGURE_ARGS+=--enable-map -PLIST_SUB+= MAP="" -.else -CONFIGURE_ARGS+=--disable-map -PLIST_SUB+= MAP="@comment " -.endif + --enable-goa \ + --enable-gst-1.0=yes \ + --enable-location=yes +INSTALL_TARGET= install-strip + +GLIB_SCHEMAS= org.gnome.Empathy.gschema.xml \ + org.gnome.telepathy-account-widgets.gschema.xml + +OPTIONS_SUB= yes +OPTIONS_DEFINE= JABBER MSN IRC SALUT HAZE MAP CHEESE +OPTIONS_DEFAULT=JABBER MSN IRC SALUT MAP +JABBER_DESC= Enable jabber (XMPP) client support +MSN_DESC= Enable MSN client support +IRC_DESC= Enable IRC client support +SALUT_DESC= Enable link-local (serverless) XMPP support +HAZE_DESC= Enable libpurple protocol integration +MAP_DESC= Enable graphical map support +CHEESE_DESC= Enable cheese camera support +JABBER_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-gabble:${PORTSDIR}/net-im/telepathy-gabble +MSN_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-butterfly:${PORTSDIR}/net-im/telepathy-butterfly +IRC_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-idle:${PORTSDIR}/net-im/telepathy-idle +SALUT_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-salut:${PORTSDIR}/net-im/telepathy-salut +HAZE_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-haze:${PORTSDIR}/net-im/telepathy-haze +MAP_USE= GL=gl +MAP_LIB_DEPENDS= libchamplain-0.12.so:${PORTSDIR}/graphics/libchamplain +MAP_CONFIGURE_ENABLE= map +CHEESE_BUILD_DEPENDS= cheese>=0:${PORTSDIR}/multimedia/cheese +CHEESE_RUN_DEPENDS= cheese>=0:${PORTSDIR}/multimedia/cheese +CHEESE_CONFIGURE_WITH= cheese post-patch: - @${REINPLACE_CMD} \ - -e '/^empathy_av_LDADD =/s/$$/ -lm/' \ - -e '/^empathy_call_LDADD =/s/$$/ -lm/' \ - ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e 's|clutter-gst-1.0|clutter-gst-2.0|g ;\ + s|MISSION_CONTROL_PLUGINS_DIR=`pkg-config -|MISSION_CONTROL_PLUGINS_DIR=$${libdir}/`pkg-config -|g' \ + ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/net-im/empathy/distinfo b/net-im/empathy/distinfo index 1cfcc35b5f86..60278d4e482d 100644 --- a/net-im/empathy/distinfo +++ b/net-im/empathy/distinfo @@ -1,2 +1,2 @@ -SHA256 (empathy-2.34.0.tar.bz2) = 6efa0ae3ac3580ac9600f889c92497f36983e22da79d547a65030a14691369d1 -SIZE (empathy-2.34.0.tar.bz2) = 3361496 +SHA256 (empathy-3.12.7.tar.xz) = abcc6e325474d158ba21dfc864183617cf832c3570ccefe9e32f275b94452794 +SIZE (empathy-3.12.7.tar.xz) = 5047116 diff --git a/net-im/empathy/files/patch-configure b/net-im/empathy/files/patch-configure deleted file mode 100644 index 300f783e450a..000000000000 --- a/net-im/empathy/files/patch-configure +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.orig 2010-11-18 17:41:43.000000000 +0100 -+++ configure 2010-11-18 17:41:43.000000000 +0100 -@@ -13390,8 +13390,8 @@ - .SECONDARY: $(gsettings_SCHEMAS) - - gsettings__base_list = \ -- sed "$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g" | \ -- sed "$$!N;$$!N;$$!N;$$!N;s/\n/ /g" -+ sed '\''$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\'' | \ -+ sed '\''$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\'' - - install-gsettings-schemas: $(gsettings_SCHEMAS:.xml=.valid) - @$(NORMAL_INSTALL) diff --git a/net-im/empathy/files/patch-libempathy_emapth-tp-file.c b/net-im/empathy/files/patch-libempathy_emapth-tp-file.c deleted file mode 100644 index 58ac2a65b19d..000000000000 --- a/net-im/empathy/files/patch-libempathy_emapth-tp-file.c +++ /dev/null @@ -1,10 +0,0 @@ ---- libempathy/empathy-tp-file.c.orig 2009-06-15 18:52:39.000000000 +0200 -+++ libempathy/empathy-tp-file.c 2009-06-15 18:53:45.000000000 +0200 -@@ -29,6 +29,7 @@ - #include <arpa/inet.h> - #include <sys/types.h> - #include <sys/socket.h> -+#include <netinet/in.h> - #include <sys/un.h> - - #include <glib/gi18n-lib.h> diff --git a/net-im/empathy/files/patch-libempathy_empathy-auth-factory.c b/net-im/empathy/files/patch-libempathy_empathy-auth-factory.c deleted file mode 100644 index 879313c5b7c1..000000000000 --- a/net-im/empathy/files/patch-libempathy_empathy-auth-factory.c +++ /dev/null @@ -1,10 +0,0 @@ ---- libempathy/empathy-auth-factory.c.orig 2011-12-07 17:19:17.000000000 +0000 -+++ libempathy/empathy-auth-factory.c 2011-12-07 17:19:45.000000000 +0000 -@@ -23,6 +23,7 @@ - #include <telepathy-glib/interfaces.h> - #include <telepathy-glib/simple-handler.h> - #include <telepathy-glib/util.h> -+#include <telepathy-glib/channel-dispatch-operation.h> - - #define DEBUG_FLAG EMPATHY_DEBUG_TLS - #include "empathy-debug.h" diff --git a/net-im/empathy/files/patch-src_Makefile.in b/net-im/empathy/files/patch-src_Makefile.in deleted file mode 100644 index ef7ba85464ae..000000000000 --- a/net-im/empathy/files/patch-src_Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ ---- src/Makefile.in.orig 2013-03-12 21:11:24.000000000 +0000 -+++ src/Makefile.in 2013-03-12 21:12:10.000000000 +0000 -@@ -1688,24 +1688,6 @@ - $(AM_V_GEN)echo "#include \"src-marshal.h\"" > $@ && \ - $(GLIB_GENMARSHAL) --body --prefix=_$(subst -,_,$*)_marshal $< >> $*-marshal.c - --# rules for making the glib enum objects --%-enumtypes.h: %.h Makefile.in -- $(AM_V_GEN)glib-mkenums \ -- --fhead "#ifndef __$(shell echo $* | tr [:lower:]- [:upper:]_)_ENUM_TYPES_H__\n#define __$(shell echo $* | tr [:lower:]- [:upper:]_)_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \ -- --fprod "/* enumerations from \"@filename@\" */\n" \ -- --vhead "GType @enum_name@_get_type (void);\n#define $(shell echo $* | tr [:lower:]- [:upper:]_ | sed 's/_.*//')_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \ -- --ftail "G_END_DECLS\n\n#endif /* __$(shell echo $* | tr [:lower:]- [:upper:]_)_ENUM_TYPES_H__ */" \ -- $< > $@ -- --%-enumtypes.c: %.h Makefile.in -- $(AM_V_GEN)glib-mkenums \ -- --fhead "#include <$*.h>\n#include <$*-enumtypes.h>" \ -- --fprod "\n/* enumerations from \"@filename@\" */" \ -- --vhead "GType\n@enum_name@_get_type (void)\n{\n static GType etype = 0;\n if (etype == 0) {\n static const G@Type@Value values[] = {" \ -- --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@VALUENAME@\" }," \ -- --vtail " { 0, NULL, NULL }\n };\n etype = g_@type@_register_static (\"@EnumName@\", values);\n }\n return etype;\n}\n" \ -- $< > $@ -- - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. - .NOEXPORT: diff --git a/net-im/empathy/pkg-plist b/net-im/empathy/pkg-plist index c98cd84eaeb8..819c8bbb977f 100644 --- a/net-im/empathy/pkg-plist +++ b/net-im/empathy/pkg-plist @@ -1,55 +1,241 @@ bin/empathy bin/empathy-accounts bin/empathy-debugger +lib/empathy/libempathy-3.12.7.so +lib/empathy/libempathy-gtk-3.12.7.so +lib/empathy/libempathy-gtk.a +lib/empathy/libempathy-gtk.so +lib/empathy/libempathy.a +lib/empathy/libempathy.so +share/locale/an/LC_MESSAGES/empathy-tpaw.mo +share/locale/an/LC_MESSAGES/empathy.mo +share/locale/ar/LC_MESSAGES/empathy-tpaw.mo +share/locale/ar/LC_MESSAGES/empathy.mo +share/locale/as/LC_MESSAGES/empathy-tpaw.mo +share/locale/as/LC_MESSAGES/empathy.mo +share/locale/ast/LC_MESSAGES/empathy-tpaw.mo +share/locale/ast/LC_MESSAGES/empathy.mo +share/locale/az/LC_MESSAGES/empathy-tpaw.mo +share/locale/az/LC_MESSAGES/empathy.mo +share/locale/be/LC_MESSAGES/empathy-tpaw.mo +share/locale/be/LC_MESSAGES/empathy.mo +share/locale/be@latin/LC_MESSAGES/empathy-tpaw.mo +share/locale/be@latin/LC_MESSAGES/empathy.mo +share/locale/bg/LC_MESSAGES/empathy-tpaw.mo +share/locale/bg/LC_MESSAGES/empathy.mo +share/locale/bn/LC_MESSAGES/empathy-tpaw.mo +share/locale/bn/LC_MESSAGES/empathy.mo +share/locale/bn_IN/LC_MESSAGES/empathy-tpaw.mo +share/locale/bn_IN/LC_MESSAGES/empathy.mo +share/locale/br/LC_MESSAGES/empathy-tpaw.mo +share/locale/br/LC_MESSAGES/empathy.mo +share/locale/ca/LC_MESSAGES/empathy-tpaw.mo +share/locale/ca/LC_MESSAGES/empathy.mo +share/locale/ca@valencia/LC_MESSAGES/empathy-tpaw.mo +share/locale/ca@valencia/LC_MESSAGES/empathy.mo +share/locale/crh/LC_MESSAGES/empathy-tpaw.mo +share/locale/crh/LC_MESSAGES/empathy.mo +share/locale/cs/LC_MESSAGES/empathy-tpaw.mo +share/locale/cs/LC_MESSAGES/empathy.mo +share/locale/cy/LC_MESSAGES/empathy-tpaw.mo +share/locale/cy/LC_MESSAGES/empathy.mo +share/locale/da/LC_MESSAGES/empathy-tpaw.mo +share/locale/da/LC_MESSAGES/empathy.mo +share/locale/de/LC_MESSAGES/empathy-tpaw.mo +share/locale/de/LC_MESSAGES/empathy.mo +share/locale/dz/LC_MESSAGES/empathy-tpaw.mo +share/locale/dz/LC_MESSAGES/empathy.mo +share/locale/el/LC_MESSAGES/empathy-tpaw.mo +share/locale/el/LC_MESSAGES/empathy.mo +share/locale/en@shaw/LC_MESSAGES/empathy-tpaw.mo +share/locale/en@shaw/LC_MESSAGES/empathy.mo +share/locale/en_CA/LC_MESSAGES/empathy-tpaw.mo +share/locale/en_CA/LC_MESSAGES/empathy.mo +share/locale/en_GB/LC_MESSAGES/empathy-tpaw.mo +share/locale/en_GB/LC_MESSAGES/empathy.mo +share/locale/eo/LC_MESSAGES/empathy-tpaw.mo +share/locale/eo/LC_MESSAGES/empathy.mo +share/locale/es/LC_MESSAGES/empathy-tpaw.mo +share/locale/es/LC_MESSAGES/empathy.mo +share/locale/et/LC_MESSAGES/empathy-tpaw.mo +share/locale/et/LC_MESSAGES/empathy.mo +share/locale/eu/LC_MESSAGES/empathy-tpaw.mo +share/locale/eu/LC_MESSAGES/empathy.mo +share/locale/fa/LC_MESSAGES/empathy-tpaw.mo +share/locale/fa/LC_MESSAGES/empathy.mo +share/locale/fi/LC_MESSAGES/empathy-tpaw.mo +share/locale/fi/LC_MESSAGES/empathy.mo +share/locale/fr/LC_MESSAGES/empathy-tpaw.mo +share/locale/fr/LC_MESSAGES/empathy.mo +share/locale/ga/LC_MESSAGES/empathy-tpaw.mo +share/locale/ga/LC_MESSAGES/empathy.mo +share/locale/gl/LC_MESSAGES/empathy-tpaw.mo +share/locale/gl/LC_MESSAGES/empathy.mo +share/locale/gu/LC_MESSAGES/empathy-tpaw.mo +share/locale/gu/LC_MESSAGES/empathy.mo +share/locale/he/LC_MESSAGES/empathy-tpaw.mo +share/locale/he/LC_MESSAGES/empathy.mo +share/locale/hi/LC_MESSAGES/empathy-tpaw.mo +share/locale/hi/LC_MESSAGES/empathy.mo +share/locale/hr/LC_MESSAGES/empathy-tpaw.mo +share/locale/hr/LC_MESSAGES/empathy.mo +share/locale/hu/LC_MESSAGES/empathy-tpaw.mo +share/locale/hu/LC_MESSAGES/empathy.mo +share/locale/id/LC_MESSAGES/empathy-tpaw.mo +share/locale/id/LC_MESSAGES/empathy.mo +share/locale/it/LC_MESSAGES/empathy-tpaw.mo +share/locale/it/LC_MESSAGES/empathy.mo +share/locale/ja/LC_MESSAGES/empathy-tpaw.mo +share/locale/ja/LC_MESSAGES/empathy.mo +share/locale/kk/LC_MESSAGES/empathy-tpaw.mo +share/locale/kk/LC_MESSAGES/empathy.mo +share/locale/km/LC_MESSAGES/empathy-tpaw.mo +share/locale/km/LC_MESSAGES/empathy.mo +share/locale/kn/LC_MESSAGES/empathy-tpaw.mo +share/locale/kn/LC_MESSAGES/empathy.mo +share/locale/ko/LC_MESSAGES/empathy-tpaw.mo +share/locale/ko/LC_MESSAGES/empathy.mo +share/locale/ku/LC_MESSAGES/empathy-tpaw.mo +share/locale/ku/LC_MESSAGES/empathy.mo +share/locale/lt/LC_MESSAGES/empathy-tpaw.mo +share/locale/lt/LC_MESSAGES/empathy.mo +share/locale/lv/LC_MESSAGES/empathy-tpaw.mo +share/locale/lv/LC_MESSAGES/empathy.mo +share/locale/mai/LC_MESSAGES/empathy-tpaw.mo +share/locale/mai/LC_MESSAGES/empathy.mo +share/locale/mk/LC_MESSAGES/empathy-tpaw.mo +share/locale/mk/LC_MESSAGES/empathy.mo +share/locale/ml/LC_MESSAGES/empathy-tpaw.mo +share/locale/ml/LC_MESSAGES/empathy.mo +share/locale/mr/LC_MESSAGES/empathy-tpaw.mo +share/locale/mr/LC_MESSAGES/empathy.mo +share/locale/ms/LC_MESSAGES/empathy-tpaw.mo +share/locale/ms/LC_MESSAGES/empathy.mo +share/locale/my/LC_MESSAGES/empathy-tpaw.mo +share/locale/my/LC_MESSAGES/empathy.mo +share/locale/nb/LC_MESSAGES/empathy-tpaw.mo +share/locale/nb/LC_MESSAGES/empathy.mo +share/locale/ne/LC_MESSAGES/empathy-tpaw.mo +share/locale/ne/LC_MESSAGES/empathy.mo +share/locale/nl/LC_MESSAGES/empathy-tpaw.mo +share/locale/nl/LC_MESSAGES/empathy.mo +share/locale/nn/LC_MESSAGES/empathy-tpaw.mo +share/locale/nn/LC_MESSAGES/empathy.mo +share/locale/oc/LC_MESSAGES/empathy-tpaw.mo +share/locale/oc/LC_MESSAGES/empathy.mo +share/locale/or/LC_MESSAGES/empathy-tpaw.mo +share/locale/or/LC_MESSAGES/empathy.mo +share/locale/pa/LC_MESSAGES/empathy-tpaw.mo +share/locale/pa/LC_MESSAGES/empathy.mo +share/locale/pl/LC_MESSAGES/empathy-tpaw.mo +share/locale/pl/LC_MESSAGES/empathy.mo +share/locale/ps/LC_MESSAGES/empathy-tpaw.mo +share/locale/ps/LC_MESSAGES/empathy.mo +share/locale/pt/LC_MESSAGES/empathy-tpaw.mo +share/locale/pt/LC_MESSAGES/empathy.mo +share/locale/pt_BR/LC_MESSAGES/empathy-tpaw.mo +share/locale/pt_BR/LC_MESSAGES/empathy.mo +share/locale/ro/LC_MESSAGES/empathy-tpaw.mo +share/locale/ro/LC_MESSAGES/empathy.mo +share/locale/ru/LC_MESSAGES/empathy-tpaw.mo +share/locale/ru/LC_MESSAGES/empathy.mo +share/locale/si/LC_MESSAGES/empathy-tpaw.mo +share/locale/si/LC_MESSAGES/empathy.mo +share/locale/sk/LC_MESSAGES/empathy-tpaw.mo +share/locale/sk/LC_MESSAGES/empathy.mo +share/locale/sl/LC_MESSAGES/empathy-tpaw.mo +share/locale/sl/LC_MESSAGES/empathy.mo +share/locale/sq/LC_MESSAGES/empathy-tpaw.mo +share/locale/sq/LC_MESSAGES/empathy.mo +share/locale/sr/LC_MESSAGES/empathy-tpaw.mo +share/locale/sr/LC_MESSAGES/empathy.mo +share/locale/sr@latin/LC_MESSAGES/empathy-tpaw.mo +share/locale/sr@latin/LC_MESSAGES/empathy.mo +share/locale/sv/LC_MESSAGES/empathy-tpaw.mo +share/locale/sv/LC_MESSAGES/empathy.mo +share/locale/ta/LC_MESSAGES/empathy-tpaw.mo +share/locale/ta/LC_MESSAGES/empathy.mo +share/locale/te/LC_MESSAGES/empathy-tpaw.mo +share/locale/te/LC_MESSAGES/empathy.mo +share/locale/tg/LC_MESSAGES/empathy-tpaw.mo +share/locale/tg/LC_MESSAGES/empathy.mo +share/locale/th/LC_MESSAGES/empathy-tpaw.mo +share/locale/th/LC_MESSAGES/empathy.mo +share/locale/tr/LC_MESSAGES/empathy-tpaw.mo +share/locale/tr/LC_MESSAGES/empathy.mo +share/locale/ug/LC_MESSAGES/empathy-tpaw.mo +share/locale/ug/LC_MESSAGES/empathy.mo +share/locale/uk/LC_MESSAGES/empathy-tpaw.mo +share/locale/uk/LC_MESSAGES/empathy.mo +share/locale/vi/LC_MESSAGES/empathy-tpaw.mo +share/locale/vi/LC_MESSAGES/empathy.mo +share/locale/xh/LC_MESSAGES/empathy-tpaw.mo +share/locale/xh/LC_MESSAGES/empathy.mo +share/locale/zh_CN/LC_MESSAGES/empathy-tpaw.mo +share/locale/zh_CN/LC_MESSAGES/empathy.mo +share/locale/zh_HK/LC_MESSAGES/empathy-tpaw.mo +share/locale/zh_HK/LC_MESSAGES/empathy.mo +share/locale/zh_TW/LC_MESSAGES/empathy-tpaw.mo +share/locale/zh_TW/LC_MESSAGES/empathy.mo +share/locale/zu/LC_MESSAGES/empathy-tpaw.mo +share/locale/zu/LC_MESSAGES/empathy.mo +lib/mission-control-plugins.0/mcp-account-manager-goa.a +lib/mission-control-plugins.0/mcp-account-manager-goa.so libexec/empathy-auth-client -libexec/empathy-av -man/man1/empathy-accounts.1.gz +libexec/empathy-call +libexec/empathy-chat man/man1/empathy.1.gz +man/man1/empathy-accounts.1.gz share/GConf/gsettings/empathy.convert -share/applications/empathy-accounts.desktop +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Info.plist +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Resources/Incoming/Content.html +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Resources/Status.html +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Resources/Variants/Blue.css +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Resources/Variants/Clean.css +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Resources/Variants/Simple.css +share/adium/message-styles/Boxes.AdiumMessageStyle/Contents/Resources/main.css +share/adium/message-styles/Classic.AdiumMessageStyle/Contents/Info.plist +share/adium/message-styles/Classic.AdiumMessageStyle/Contents/Resources/Content.html +share/adium/message-styles/Classic.AdiumMessageStyle/Contents/Resources/Status.html +share/adium/message-styles/Classic.AdiumMessageStyle/Contents/Resources/main.css +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Info.plist +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/Images/corners.png +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/Images/horizontal.png +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/Images/nipple.png +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/Images/vertical.png +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/Incoming/Content.html +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/Status.html +share/adium/message-styles/PlanetGNOME.AdiumMessageStyle/Contents/Resources/main.css +share/appdata/empathy.appdata.xml share/applications/empathy.desktop -share/dbus-1/services/org.freedesktop.Telepathy.Client.Empathy.AudioVideo.service share/dbus-1/services/org.freedesktop.Telepathy.Client.Empathy.Auth.service share/dbus-1/services/org.freedesktop.Telepathy.Client.Empathy.Call.service -share/dbus-1/services/org.freedesktop.Telepathy.Client.Empathy.service +share/dbus-1/services/org.freedesktop.Telepathy.Client.Empathy.Chat.service +share/dbus-1/services/org.freedesktop.Telepathy.Client.Empathy.FileTransfer.service %%DATADIR%%/Template.html -%%DATADIR%%/codec-preferences -%%DATADIR%%/element-properties -%%DATADIR%%/empathy-account-widget-aim.ui -%%DATADIR%%/empathy-account-widget-generic.ui -%%DATADIR%%/empathy-account-widget-groupwise.ui -%%DATADIR%%/empathy-account-widget-icq.ui -%%DATADIR%%/empathy-account-widget-irc.ui -%%DATADIR%%/empathy-account-widget-jabber.ui -%%DATADIR%%/empathy-account-widget-local-xmpp.ui -%%DATADIR%%/empathy-account-widget-msn.ui -%%DATADIR%%/empathy-account-widget-sip.ui -%%DATADIR%%/empathy-account-widget-yahoo.ui +%%DATADIR%%/empathy.css %%DATADIR%%/empathy-accounts-dialog.ui %%DATADIR%%/empathy-call-window-fullscreen.ui %%DATADIR%%/empathy-call-window.ui %%DATADIR%%/empathy-chat-window.ui %%DATADIR%%/empathy-chat.ui -%%DATADIR%%/empathy-chatroom-manager.dtd %%DATADIR%%/empathy-chatrooms-window.ui %%DATADIR%%/empathy-contact-blocking-dialog.ui -%%DATADIR%%/empathy-contact-dialogs.ui -%%DATADIR%%/empathy-contact-groups.dtd -%%DATADIR%%/empathy-contact-selector-dialog.ui %%DATADIR%%/empathy-contact-widget.ui %%DATADIR%%/empathy-ft-manager.ui %%DATADIR%%/empathy-import-dialog.ui %%DATADIR%%/empathy-individual-widget.ui -%%DATADIR%%/empathy-irc-networks.dtd +%%DATADIR%%/empathy-log-window.html %%DATADIR%%/empathy-log-window.ui -%%DATADIR%%/empathy-main-window.ui -%%MAP%%%%DATADIR%%/empathy-map-view.ui %%DATADIR%%/empathy-new-chatroom-dialog.ui %%DATADIR%%/empathy-preferences.ui +%%DATADIR%%/empathy-roster-window-menubar.ui +%%DATADIR%%/empathy-roster-window.ui %%DATADIR%%/empathy-search-bar.ui %%DATADIR%%/empathy-status-icon.ui %%DATADIR%%/empathy-status-preset-dialog.ui -%%DATADIR%%/empathy-status-presets.dtd %%DATADIR%%/icons/hicolor/16x16/actions/im-message-new.png %%DATADIR%%/icons/hicolor/16x16/apps/im-aim.png %%DATADIR%%/icons/hicolor/16x16/apps/im-ekiga.png @@ -216,1027 +402,1289 @@ share/dbus-1/services/org.freedesktop.Telepathy.Client.Empathy.service %%DATADIR%%/icons/hicolor/scalable/status/user-idle.svg %%DATADIR%%/icons/hicolor/scalable/status/user-offline.svg %%DATADIR%%/irc-networks.xml -share/gnome/help/empathy/C/account-irc.page -share/gnome/help/empathy/C/account-jabber.page -share/gnome/help/empathy/C/accounts-window.page -share/gnome/help/empathy/C/add-account.page -share/gnome/help/empathy/C/add-contact.page -share/gnome/help/empathy/C/audio-call.page -share/gnome/help/empathy/C/audio-video.page -share/gnome/help/empathy/C/change-status.page -share/gnome/help/empathy/C/create-account.page -share/gnome/help/empathy/C/disable-account.page -share/gnome/help/empathy/C/favorite-rooms.page -share/gnome/help/empathy/C/figures/audio-input-microphone.png -share/gnome/help/empathy/C/figures/available.png -share/gnome/help/empathy/C/figures/away.png -share/gnome/help/empathy/C/figures/busy.png -share/gnome/help/empathy/C/figures/camera-web.png -share/gnome/help/empathy/C/figures/empathy-logo.png -share/gnome/help/empathy/C/figures/empathy-main-window.png -share/gnome/help/empathy/C/figures/gtk-add.png -share/gnome/help/empathy/C/figures/gtk-edit.png -share/gnome/help/empathy/C/figures/gtk-remove.png -share/gnome/help/empathy/C/figures/offline.png -share/gnome/help/empathy/C/geolocation-not-showing.page -share/gnome/help/empathy/C/geolocation-privacy.page -share/gnome/help/empathy/C/geolocation-supported.page -share/gnome/help/empathy/C/geolocation-turn.page -share/gnome/help/empathy/C/geolocation-what-is.page -share/gnome/help/empathy/C/geolocation.page -share/gnome/help/empathy/C/group-conversations.page -share/gnome/help/empathy/C/hide-contacts.page -share/gnome/help/empathy/C/import-account.page -share/gnome/help/empathy/C/index.page -share/gnome/help/empathy/C/introduction.page -share/gnome/help/empathy/C/irc-commands.page -share/gnome/help/empathy/C/irc-join-pwd.page -share/gnome/help/empathy/C/irc-join-room.page -share/gnome/help/empathy/C/irc-manage.page -share/gnome/help/empathy/C/irc-nick-password.page -share/gnome/help/empathy/C/irc-send-file.page -share/gnome/help/empathy/C/irc-start-conversation.page -share/gnome/help/empathy/C/license.page -share/gnome/help/empathy/C/link-contacts.page -share/gnome/help/empathy/C/prev-conv.page -share/gnome/help/empathy/C/prob-conn-acctdisabled.page -share/gnome/help/empathy/C/prob-conn-auth.page -share/gnome/help/empathy/C/prob-conn-name.page -share/gnome/help/empathy/C/prob-conn-neterror.page -share/gnome/help/empathy/C/prob-conn.page -share/gnome/help/empathy/C/remove-account.page -share/gnome/help/empathy/C/salut-protocol.page -share/gnome/help/empathy/C/send-file.page -share/gnome/help/empathy/C/send-message.page -share/gnome/help/empathy/C/set-custom-status.page -share/gnome/help/empathy/C/share-desktop.page -share/gnome/help/empathy/C/status-icons.page -share/gnome/help/empathy/C/video-call.page -share/gnome/help/empathy/ca/account-irc.page -share/gnome/help/empathy/ca/account-jabber.page -share/gnome/help/empathy/ca/accounts-window.page -share/gnome/help/empathy/ca/add-account.page -share/gnome/help/empathy/ca/add-contact.page -share/gnome/help/empathy/ca/audio-call.page -share/gnome/help/empathy/ca/audio-video.page -share/gnome/help/empathy/ca/change-status.page -share/gnome/help/empathy/ca/create-account.page -share/gnome/help/empathy/ca/disable-account.page -share/gnome/help/empathy/ca/favorite-rooms.page -share/gnome/help/empathy/ca/figures/audio-input-microphone.png -share/gnome/help/empathy/ca/figures/available.png -share/gnome/help/empathy/ca/figures/away.png -share/gnome/help/empathy/ca/figures/busy.png -share/gnome/help/empathy/ca/figures/camera-web.png -share/gnome/help/empathy/ca/figures/empathy-logo.png -share/gnome/help/empathy/ca/figures/empathy-main-window.png -share/gnome/help/empathy/ca/figures/gtk-add.png -share/gnome/help/empathy/ca/figures/gtk-edit.png -share/gnome/help/empathy/ca/figures/gtk-remove.png -share/gnome/help/empathy/ca/figures/offline.png -share/gnome/help/empathy/ca/geolocation-not-showing.page -share/gnome/help/empathy/ca/geolocation-privacy.page -share/gnome/help/empathy/ca/geolocation-supported.page -share/gnome/help/empathy/ca/geolocation-turn.page -share/gnome/help/empathy/ca/geolocation-what-is.page -share/gnome/help/empathy/ca/geolocation.page -share/gnome/help/empathy/ca/group-conversations.page -share/gnome/help/empathy/ca/hide-contacts.page -share/gnome/help/empathy/ca/import-account.page -share/gnome/help/empathy/ca/index.page -share/gnome/help/empathy/ca/introduction.page -share/gnome/help/empathy/ca/irc-commands.page -share/gnome/help/empathy/ca/irc-join-pwd.page -share/gnome/help/empathy/ca/irc-join-room.page -share/gnome/help/empathy/ca/irc-manage.page -share/gnome/help/empathy/ca/irc-nick-password.page -share/gnome/help/empathy/ca/irc-send-file.page -share/gnome/help/empathy/ca/irc-start-conversation.page -share/gnome/help/empathy/ca/license.page -share/gnome/help/empathy/ca/link-contacts.page -share/gnome/help/empathy/ca/prev-conv.page -share/gnome/help/empathy/ca/prob-conn-acctdisabled.page -share/gnome/help/empathy/ca/prob-conn-auth.page -share/gnome/help/empathy/ca/prob-conn-name.page -share/gnome/help/empathy/ca/prob-conn-neterror.page -share/gnome/help/empathy/ca/prob-conn.page -share/gnome/help/empathy/ca/remove-account.page -share/gnome/help/empathy/ca/salut-protocol.page -share/gnome/help/empathy/ca/send-file.page -share/gnome/help/empathy/ca/send-message.page -share/gnome/help/empathy/ca/set-custom-status.page -share/gnome/help/empathy/ca/share-desktop.page -share/gnome/help/empathy/ca/status-icons.page -share/gnome/help/empathy/ca/video-call.page -share/gnome/help/empathy/cs/account-irc.page -share/gnome/help/empathy/cs/account-jabber.page -share/gnome/help/empathy/cs/accounts-window.page -share/gnome/help/empathy/cs/add-account.page -share/gnome/help/empathy/cs/add-contact.page -share/gnome/help/empathy/cs/audio-call.page -share/gnome/help/empathy/cs/audio-video.page -share/gnome/help/empathy/cs/change-status.page -share/gnome/help/empathy/cs/create-account.page -share/gnome/help/empathy/cs/disable-account.page -share/gnome/help/empathy/cs/favorite-rooms.page -share/gnome/help/empathy/cs/figures/audio-input-microphone.png -share/gnome/help/empathy/cs/figures/available.png -share/gnome/help/empathy/cs/figures/away.png -share/gnome/help/empathy/cs/figures/busy.png -share/gnome/help/empathy/cs/figures/camera-web.png -share/gnome/help/empathy/cs/figures/empathy-logo.png -share/gnome/help/empathy/cs/figures/empathy-main-window.png -share/gnome/help/empathy/cs/figures/gtk-add.png -share/gnome/help/empathy/cs/figures/gtk-edit.png -share/gnome/help/empathy/cs/figures/gtk-remove.png -share/gnome/help/empathy/cs/figures/offline.png -share/gnome/help/empathy/cs/geolocation-not-showing.page -share/gnome/help/empathy/cs/geolocation-privacy.page -share/gnome/help/empathy/cs/geolocation-supported.page -share/gnome/help/empathy/cs/geolocation-turn.page -share/gnome/help/empathy/cs/geolocation-what-is.page -share/gnome/help/empathy/cs/geolocation.page -share/gnome/help/empathy/cs/group-conversations.page -share/gnome/help/empathy/cs/hide-contacts.page -share/gnome/help/empathy/cs/import-account.page -share/gnome/help/empathy/cs/index.page -share/gnome/help/empathy/cs/introduction.page -share/gnome/help/empathy/cs/irc-commands.page -share/gnome/help/empathy/cs/irc-join-pwd.page -share/gnome/help/empathy/cs/irc-join-room.page -share/gnome/help/empathy/cs/irc-manage.page -share/gnome/help/empathy/cs/irc-nick-password.page -share/gnome/help/empathy/cs/irc-send-file.page -share/gnome/help/empathy/cs/irc-start-conversation.page -share/gnome/help/empathy/cs/license.page -share/gnome/help/empathy/cs/link-contacts.page -share/gnome/help/empathy/cs/prev-conv.page -share/gnome/help/empathy/cs/prob-conn-acctdisabled.page -share/gnome/help/empathy/cs/prob-conn-auth.page -share/gnome/help/empathy/cs/prob-conn-name.page -share/gnome/help/empathy/cs/prob-conn-neterror.page -share/gnome/help/empathy/cs/prob-conn.page -share/gnome/help/empathy/cs/remove-account.page -share/gnome/help/empathy/cs/salut-protocol.page -share/gnome/help/empathy/cs/send-file.page -share/gnome/help/empathy/cs/send-message.page -share/gnome/help/empathy/cs/set-custom-status.page -share/gnome/help/empathy/cs/share-desktop.page -share/gnome/help/empathy/cs/status-icons.page -share/gnome/help/empathy/cs/video-call.page -share/gnome/help/empathy/de/account-irc.page -share/gnome/help/empathy/de/account-jabber.page -share/gnome/help/empathy/de/accounts-window.page -share/gnome/help/empathy/de/add-account.page -share/gnome/help/empathy/de/add-contact.page -share/gnome/help/empathy/de/audio-call.page -share/gnome/help/empathy/de/audio-video.page -share/gnome/help/empathy/de/change-status.page -share/gnome/help/empathy/de/create-account.page -share/gnome/help/empathy/de/disable-account.page -share/gnome/help/empathy/de/favorite-rooms.page -share/gnome/help/empathy/de/figures/audio-input-microphone.png -share/gnome/help/empathy/de/figures/available.png -share/gnome/help/empathy/de/figures/away.png -share/gnome/help/empathy/de/figures/busy.png -share/gnome/help/empathy/de/figures/camera-web.png -share/gnome/help/empathy/de/figures/empathy-logo.png -share/gnome/help/empathy/de/figures/empathy-main-window.png -share/gnome/help/empathy/de/figures/gtk-add.png -share/gnome/help/empathy/de/figures/gtk-edit.png -share/gnome/help/empathy/de/figures/gtk-remove.png -share/gnome/help/empathy/de/figures/offline.png -share/gnome/help/empathy/de/geolocation-not-showing.page -share/gnome/help/empathy/de/geolocation-privacy.page -share/gnome/help/empathy/de/geolocation-supported.page -share/gnome/help/empathy/de/geolocation-turn.page -share/gnome/help/empathy/de/geolocation-what-is.page -share/gnome/help/empathy/de/geolocation.page -share/gnome/help/empathy/de/group-conversations.page -share/gnome/help/empathy/de/hide-contacts.page -share/gnome/help/empathy/de/import-account.page -share/gnome/help/empathy/de/index.page -share/gnome/help/empathy/de/introduction.page -share/gnome/help/empathy/de/irc-commands.page -share/gnome/help/empathy/de/irc-join-pwd.page -share/gnome/help/empathy/de/irc-join-room.page -share/gnome/help/empathy/de/irc-manage.page -share/gnome/help/empathy/de/irc-nick-password.page -share/gnome/help/empathy/de/irc-send-file.page -share/gnome/help/empathy/de/irc-start-conversation.page -share/gnome/help/empathy/de/license.page -share/gnome/help/empathy/de/link-contacts.page -share/gnome/help/empathy/de/prev-conv.page -share/gnome/help/empathy/de/prob-conn-acctdisabled.page -share/gnome/help/empathy/de/prob-conn-auth.page -share/gnome/help/empathy/de/prob-conn-name.page -share/gnome/help/empathy/de/prob-conn-neterror.page -share/gnome/help/empathy/de/prob-conn.page -share/gnome/help/empathy/de/remove-account.page -share/gnome/help/empathy/de/salut-protocol.page -share/gnome/help/empathy/de/send-file.page -share/gnome/help/empathy/de/send-message.page -share/gnome/help/empathy/de/set-custom-status.page -share/gnome/help/empathy/de/share-desktop.page -share/gnome/help/empathy/de/status-icons.page -share/gnome/help/empathy/de/video-call.page -share/gnome/help/empathy/el/account-irc.page -share/gnome/help/empathy/el/account-jabber.page -share/gnome/help/empathy/el/accounts-window.page -share/gnome/help/empathy/el/add-account.page -share/gnome/help/empathy/el/add-contact.page -share/gnome/help/empathy/el/audio-call.page -share/gnome/help/empathy/el/audio-video.page -share/gnome/help/empathy/el/change-status.page -share/gnome/help/empathy/el/create-account.page -share/gnome/help/empathy/el/disable-account.page -share/gnome/help/empathy/el/favorite-rooms.page -share/gnome/help/empathy/el/figures/audio-input-microphone.png -share/gnome/help/empathy/el/figures/available.png -share/gnome/help/empathy/el/figures/away.png -share/gnome/help/empathy/el/figures/busy.png -share/gnome/help/empathy/el/figures/camera-web.png -share/gnome/help/empathy/el/figures/empathy-logo.png -share/gnome/help/empathy/el/figures/empathy-main-window.png -share/gnome/help/empathy/el/figures/gtk-add.png -share/gnome/help/empathy/el/figures/gtk-edit.png -share/gnome/help/empathy/el/figures/gtk-remove.png -share/gnome/help/empathy/el/figures/offline.png -share/gnome/help/empathy/el/geolocation-not-showing.page -share/gnome/help/empathy/el/geolocation-privacy.page -share/gnome/help/empathy/el/geolocation-supported.page -share/gnome/help/empathy/el/geolocation-turn.page -share/gnome/help/empathy/el/geolocation-what-is.page -share/gnome/help/empathy/el/geolocation.page -share/gnome/help/empathy/el/group-conversations.page -share/gnome/help/empathy/el/hide-contacts.page -share/gnome/help/empathy/el/import-account.page -share/gnome/help/empathy/el/index.page -share/gnome/help/empathy/el/introduction.page -share/gnome/help/empathy/el/irc-commands.page -share/gnome/help/empathy/el/irc-join-pwd.page -share/gnome/help/empathy/el/irc-join-room.page -share/gnome/help/empathy/el/irc-manage.page -share/gnome/help/empathy/el/irc-nick-password.page -share/gnome/help/empathy/el/irc-send-file.page -share/gnome/help/empathy/el/irc-start-conversation.page -share/gnome/help/empathy/el/license.page -share/gnome/help/empathy/el/link-contacts.page -share/gnome/help/empathy/el/prev-conv.page -share/gnome/help/empathy/el/prob-conn-acctdisabled.page -share/gnome/help/empathy/el/prob-conn-auth.page -share/gnome/help/empathy/el/prob-conn-name.page -share/gnome/help/empathy/el/prob-conn-neterror.page -share/gnome/help/empathy/el/prob-conn.page -share/gnome/help/empathy/el/remove-account.page -share/gnome/help/empathy/el/salut-protocol.page -share/gnome/help/empathy/el/send-file.page -share/gnome/help/empathy/el/send-message.page -share/gnome/help/empathy/el/set-custom-status.page -share/gnome/help/empathy/el/share-desktop.page -share/gnome/help/empathy/el/status-icons.page -share/gnome/help/empathy/el/video-call.page -share/gnome/help/empathy/en_GB/account-irc.page -share/gnome/help/empathy/en_GB/account-jabber.page -share/gnome/help/empathy/en_GB/accounts-window.page -share/gnome/help/empathy/en_GB/add-account.page -share/gnome/help/empathy/en_GB/add-contact.page -share/gnome/help/empathy/en_GB/audio-call.page -share/gnome/help/empathy/en_GB/audio-video.page -share/gnome/help/empathy/en_GB/change-status.page -share/gnome/help/empathy/en_GB/create-account.page -share/gnome/help/empathy/en_GB/disable-account.page -share/gnome/help/empathy/en_GB/favorite-rooms.page -share/gnome/help/empathy/en_GB/figures/audio-input-microphone.png -share/gnome/help/empathy/en_GB/figures/available.png -share/gnome/help/empathy/en_GB/figures/away.png -share/gnome/help/empathy/en_GB/figures/busy.png -share/gnome/help/empathy/en_GB/figures/camera-web.png -share/gnome/help/empathy/en_GB/figures/empathy-logo.png -share/gnome/help/empathy/en_GB/figures/empathy-main-window.png -share/gnome/help/empathy/en_GB/figures/gtk-add.png -share/gnome/help/empathy/en_GB/figures/gtk-edit.png -share/gnome/help/empathy/en_GB/figures/gtk-remove.png -share/gnome/help/empathy/en_GB/figures/offline.png -share/gnome/help/empathy/en_GB/geolocation-not-showing.page -share/gnome/help/empathy/en_GB/geolocation-privacy.page -share/gnome/help/empathy/en_GB/geolocation-supported.page -share/gnome/help/empathy/en_GB/geolocation-turn.page -share/gnome/help/empathy/en_GB/geolocation-what-is.page -share/gnome/help/empathy/en_GB/geolocation.page -share/gnome/help/empathy/en_GB/group-conversations.page -share/gnome/help/empathy/en_GB/hide-contacts.page -share/gnome/help/empathy/en_GB/import-account.page -share/gnome/help/empathy/en_GB/index.page -share/gnome/help/empathy/en_GB/introduction.page -share/gnome/help/empathy/en_GB/irc-commands.page -share/gnome/help/empathy/en_GB/irc-join-pwd.page -share/gnome/help/empathy/en_GB/irc-join-room.page -share/gnome/help/empathy/en_GB/irc-manage.page -share/gnome/help/empathy/en_GB/irc-nick-password.page -share/gnome/help/empathy/en_GB/irc-send-file.page -share/gnome/help/empathy/en_GB/irc-start-conversation.page -share/gnome/help/empathy/en_GB/license.page -share/gnome/help/empathy/en_GB/link-contacts.page -share/gnome/help/empathy/en_GB/prev-conv.page -share/gnome/help/empathy/en_GB/prob-conn-acctdisabled.page -share/gnome/help/empathy/en_GB/prob-conn-auth.page -share/gnome/help/empathy/en_GB/prob-conn-name.page -share/gnome/help/empathy/en_GB/prob-conn-neterror.page -share/gnome/help/empathy/en_GB/prob-conn.page -share/gnome/help/empathy/en_GB/remove-account.page -share/gnome/help/empathy/en_GB/salut-protocol.page -share/gnome/help/empathy/en_GB/send-file.page -share/gnome/help/empathy/en_GB/send-message.page -share/gnome/help/empathy/en_GB/set-custom-status.page -share/gnome/help/empathy/en_GB/share-desktop.page -share/gnome/help/empathy/en_GB/status-icons.page -share/gnome/help/empathy/en_GB/video-call.page -share/gnome/help/empathy/es/account-irc.page -share/gnome/help/empathy/es/account-jabber.page -share/gnome/help/empathy/es/accounts-window.page -share/gnome/help/empathy/es/add-account.page -share/gnome/help/empathy/es/add-contact.page -share/gnome/help/empathy/es/audio-call.page -share/gnome/help/empathy/es/audio-video.page -share/gnome/help/empathy/es/change-status.page -share/gnome/help/empathy/es/create-account.page -share/gnome/help/empathy/es/disable-account.page -share/gnome/help/empathy/es/favorite-rooms.page -share/gnome/help/empathy/es/figures/audio-input-microphone.png -share/gnome/help/empathy/es/figures/available.png -share/gnome/help/empathy/es/figures/away.png -share/gnome/help/empathy/es/figures/busy.png -share/gnome/help/empathy/es/figures/camera-web.png -share/gnome/help/empathy/es/figures/empathy-logo.png -share/gnome/help/empathy/es/figures/empathy-main-window.png -share/gnome/help/empathy/es/figures/gtk-add.png -share/gnome/help/empathy/es/figures/gtk-edit.png -share/gnome/help/empathy/es/figures/gtk-remove.png -share/gnome/help/empathy/es/figures/offline.png -share/gnome/help/empathy/es/geolocation-not-showing.page -share/gnome/help/empathy/es/geolocation-privacy.page -share/gnome/help/empathy/es/geolocation-supported.page -share/gnome/help/empathy/es/geolocation-turn.page -share/gnome/help/empathy/es/geolocation-what-is.page -share/gnome/help/empathy/es/geolocation.page -share/gnome/help/empathy/es/group-conversations.page -share/gnome/help/empathy/es/hide-contacts.page -share/gnome/help/empathy/es/import-account.page -share/gnome/help/empathy/es/index.page -share/gnome/help/empathy/es/introduction.page -share/gnome/help/empathy/es/irc-commands.page -share/gnome/help/empathy/es/irc-join-pwd.page -share/gnome/help/empathy/es/irc-join-room.page -share/gnome/help/empathy/es/irc-manage.page -share/gnome/help/empathy/es/irc-nick-password.page -share/gnome/help/empathy/es/irc-send-file.page -share/gnome/help/empathy/es/irc-start-conversation.page -share/gnome/help/empathy/es/license.page -share/gnome/help/empathy/es/link-contacts.page -share/gnome/help/empathy/es/prev-conv.page -share/gnome/help/empathy/es/prob-conn-acctdisabled.page -share/gnome/help/empathy/es/prob-conn-auth.page -share/gnome/help/empathy/es/prob-conn-name.page -share/gnome/help/empathy/es/prob-conn-neterror.page -share/gnome/help/empathy/es/prob-conn.page -share/gnome/help/empathy/es/remove-account.page -share/gnome/help/empathy/es/salut-protocol.page -share/gnome/help/empathy/es/send-file.page -share/gnome/help/empathy/es/send-message.page -share/gnome/help/empathy/es/set-custom-status.page -share/gnome/help/empathy/es/share-desktop.page -share/gnome/help/empathy/es/status-icons.page -share/gnome/help/empathy/es/video-call.page -share/gnome/help/empathy/fi/account-irc.page -share/gnome/help/empathy/fi/account-jabber.page -share/gnome/help/empathy/fi/accounts-window.page -share/gnome/help/empathy/fi/add-account.page -share/gnome/help/empathy/fi/add-contact.page -share/gnome/help/empathy/fi/audio-call.page -share/gnome/help/empathy/fi/audio-video.page -share/gnome/help/empathy/fi/change-status.page -share/gnome/help/empathy/fi/create-account.page -share/gnome/help/empathy/fi/disable-account.page -share/gnome/help/empathy/fi/favorite-rooms.page -share/gnome/help/empathy/fi/figures/audio-input-microphone.png -share/gnome/help/empathy/fi/figures/available.png -share/gnome/help/empathy/fi/figures/away.png -share/gnome/help/empathy/fi/figures/busy.png -share/gnome/help/empathy/fi/figures/camera-web.png -share/gnome/help/empathy/fi/figures/empathy-logo.png -share/gnome/help/empathy/fi/figures/empathy-main-window.png -share/gnome/help/empathy/fi/figures/gtk-add.png -share/gnome/help/empathy/fi/figures/gtk-edit.png -share/gnome/help/empathy/fi/figures/gtk-remove.png -share/gnome/help/empathy/fi/figures/offline.png -share/gnome/help/empathy/fi/geolocation-not-showing.page -share/gnome/help/empathy/fi/geolocation-privacy.page -share/gnome/help/empathy/fi/geolocation-supported.page -share/gnome/help/empathy/fi/geolocation-turn.page -share/gnome/help/empathy/fi/geolocation-what-is.page -share/gnome/help/empathy/fi/geolocation.page -share/gnome/help/empathy/fi/group-conversations.page -share/gnome/help/empathy/fi/hide-contacts.page -share/gnome/help/empathy/fi/import-account.page -share/gnome/help/empathy/fi/index.page -share/gnome/help/empathy/fi/introduction.page -share/gnome/help/empathy/fi/irc-commands.page -share/gnome/help/empathy/fi/irc-join-pwd.page -share/gnome/help/empathy/fi/irc-join-room.page -share/gnome/help/empathy/fi/irc-manage.page -share/gnome/help/empathy/fi/irc-nick-password.page -share/gnome/help/empathy/fi/irc-send-file.page -share/gnome/help/empathy/fi/irc-start-conversation.page -share/gnome/help/empathy/fi/license.page -share/gnome/help/empathy/fi/link-contacts.page -share/gnome/help/empathy/fi/prev-conv.page -share/gnome/help/empathy/fi/prob-conn-acctdisabled.page -share/gnome/help/empathy/fi/prob-conn-auth.page -share/gnome/help/empathy/fi/prob-conn-name.page -share/gnome/help/empathy/fi/prob-conn-neterror.page -share/gnome/help/empathy/fi/prob-conn.page -share/gnome/help/empathy/fi/remove-account.page -share/gnome/help/empathy/fi/salut-protocol.page -share/gnome/help/empathy/fi/send-file.page -share/gnome/help/empathy/fi/send-message.page -share/gnome/help/empathy/fi/set-custom-status.page -share/gnome/help/empathy/fi/share-desktop.page -share/gnome/help/empathy/fi/status-icons.page -share/gnome/help/empathy/fi/video-call.page -share/gnome/help/empathy/fr/account-irc.page -share/gnome/help/empathy/fr/account-jabber.page -share/gnome/help/empathy/fr/accounts-window.page -share/gnome/help/empathy/fr/add-account.page -share/gnome/help/empathy/fr/add-contact.page -share/gnome/help/empathy/fr/audio-call.page -share/gnome/help/empathy/fr/audio-video.page -share/gnome/help/empathy/fr/change-status.page -share/gnome/help/empathy/fr/create-account.page -share/gnome/help/empathy/fr/disable-account.page -share/gnome/help/empathy/fr/favorite-rooms.page -share/gnome/help/empathy/fr/figures/audio-input-microphone.png -share/gnome/help/empathy/fr/figures/available.png -share/gnome/help/empathy/fr/figures/away.png -share/gnome/help/empathy/fr/figures/busy.png -share/gnome/help/empathy/fr/figures/camera-web.png -share/gnome/help/empathy/fr/figures/empathy-logo.png -share/gnome/help/empathy/fr/figures/empathy-main-window.png -share/gnome/help/empathy/fr/figures/gtk-add.png -share/gnome/help/empathy/fr/figures/gtk-edit.png -share/gnome/help/empathy/fr/figures/gtk-remove.png -share/gnome/help/empathy/fr/figures/offline.png -share/gnome/help/empathy/fr/geolocation-not-showing.page -share/gnome/help/empathy/fr/geolocation-privacy.page -share/gnome/help/empathy/fr/geolocation-supported.page -share/gnome/help/empathy/fr/geolocation-turn.page -share/gnome/help/empathy/fr/geolocation-what-is.page -share/gnome/help/empathy/fr/geolocation.page -share/gnome/help/empathy/fr/group-conversations.page -share/gnome/help/empathy/fr/hide-contacts.page -share/gnome/help/empathy/fr/import-account.page -share/gnome/help/empathy/fr/index.page -share/gnome/help/empathy/fr/introduction.page -share/gnome/help/empathy/fr/irc-commands.page -share/gnome/help/empathy/fr/irc-join-pwd.page -share/gnome/help/empathy/fr/irc-join-room.page -share/gnome/help/empathy/fr/irc-manage.page -share/gnome/help/empathy/fr/irc-nick-password.page -share/gnome/help/empathy/fr/irc-send-file.page -share/gnome/help/empathy/fr/irc-start-conversation.page -share/gnome/help/empathy/fr/license.page -share/gnome/help/empathy/fr/link-contacts.page -share/gnome/help/empathy/fr/prev-conv.page -share/gnome/help/empathy/fr/prob-conn-acctdisabled.page -share/gnome/help/empathy/fr/prob-conn-auth.page -share/gnome/help/empathy/fr/prob-conn-name.page -share/gnome/help/empathy/fr/prob-conn-neterror.page -share/gnome/help/empathy/fr/prob-conn.page -share/gnome/help/empathy/fr/remove-account.page -share/gnome/help/empathy/fr/salut-protocol.page -share/gnome/help/empathy/fr/send-file.page -share/gnome/help/empathy/fr/send-message.page -share/gnome/help/empathy/fr/set-custom-status.page -share/gnome/help/empathy/fr/share-desktop.page -share/gnome/help/empathy/fr/status-icons.page -share/gnome/help/empathy/fr/video-call.page -share/gnome/help/empathy/gl/account-irc.page -share/gnome/help/empathy/gl/account-jabber.page -share/gnome/help/empathy/gl/accounts-window.page -share/gnome/help/empathy/gl/add-account.page -share/gnome/help/empathy/gl/add-contact.page -share/gnome/help/empathy/gl/audio-call.page -share/gnome/help/empathy/gl/audio-video.page -share/gnome/help/empathy/gl/change-status.page -share/gnome/help/empathy/gl/create-account.page -share/gnome/help/empathy/gl/disable-account.page -share/gnome/help/empathy/gl/favorite-rooms.page -share/gnome/help/empathy/gl/figures/audio-input-microphone.png -share/gnome/help/empathy/gl/figures/available.png -share/gnome/help/empathy/gl/figures/away.png -share/gnome/help/empathy/gl/figures/busy.png -share/gnome/help/empathy/gl/figures/camera-web.png -share/gnome/help/empathy/gl/figures/empathy-logo.png -share/gnome/help/empathy/gl/figures/empathy-main-window.png -share/gnome/help/empathy/gl/figures/gtk-add.png -share/gnome/help/empathy/gl/figures/gtk-edit.png -share/gnome/help/empathy/gl/figures/gtk-remove.png -share/gnome/help/empathy/gl/figures/offline.png -share/gnome/help/empathy/gl/geolocation-not-showing.page -share/gnome/help/empathy/gl/geolocation-privacy.page -share/gnome/help/empathy/gl/geolocation-supported.page -share/gnome/help/empathy/gl/geolocation-turn.page -share/gnome/help/empathy/gl/geolocation-what-is.page -share/gnome/help/empathy/gl/geolocation.page -share/gnome/help/empathy/gl/group-conversations.page -share/gnome/help/empathy/gl/hide-contacts.page -share/gnome/help/empathy/gl/import-account.page -share/gnome/help/empathy/gl/index.page -share/gnome/help/empathy/gl/introduction.page -share/gnome/help/empathy/gl/irc-commands.page -share/gnome/help/empathy/gl/irc-join-pwd.page -share/gnome/help/empathy/gl/irc-join-room.page -share/gnome/help/empathy/gl/irc-manage.page -share/gnome/help/empathy/gl/irc-nick-password.page -share/gnome/help/empathy/gl/irc-send-file.page -share/gnome/help/empathy/gl/irc-start-conversation.page -share/gnome/help/empathy/gl/license.page -share/gnome/help/empathy/gl/link-contacts.page -share/gnome/help/empathy/gl/prev-conv.page -share/gnome/help/empathy/gl/prob-conn-acctdisabled.page -share/gnome/help/empathy/gl/prob-conn-auth.page -share/gnome/help/empathy/gl/prob-conn-name.page -share/gnome/help/empathy/gl/prob-conn-neterror.page -share/gnome/help/empathy/gl/prob-conn.page -share/gnome/help/empathy/gl/remove-account.page -share/gnome/help/empathy/gl/salut-protocol.page -share/gnome/help/empathy/gl/send-file.page -share/gnome/help/empathy/gl/send-message.page -share/gnome/help/empathy/gl/set-custom-status.page -share/gnome/help/empathy/gl/share-desktop.page -share/gnome/help/empathy/gl/status-icons.page -share/gnome/help/empathy/gl/video-call.page -share/gnome/help/empathy/hu/account-irc.page -share/gnome/help/empathy/hu/account-jabber.page -share/gnome/help/empathy/hu/accounts-window.page -share/gnome/help/empathy/hu/add-account.page -share/gnome/help/empathy/hu/add-contact.page -share/gnome/help/empathy/hu/audio-call.page -share/gnome/help/empathy/hu/audio-video.page -share/gnome/help/empathy/hu/change-status.page -share/gnome/help/empathy/hu/create-account.page -share/gnome/help/empathy/hu/disable-account.page -share/gnome/help/empathy/hu/favorite-rooms.page -share/gnome/help/empathy/hu/figures/audio-input-microphone.png -share/gnome/help/empathy/hu/figures/available.png -share/gnome/help/empathy/hu/figures/away.png -share/gnome/help/empathy/hu/figures/busy.png -share/gnome/help/empathy/hu/figures/camera-web.png -share/gnome/help/empathy/hu/figures/empathy-logo.png -share/gnome/help/empathy/hu/figures/empathy-main-window.png -share/gnome/help/empathy/hu/figures/gtk-add.png -share/gnome/help/empathy/hu/figures/gtk-edit.png -share/gnome/help/empathy/hu/figures/gtk-remove.png -share/gnome/help/empathy/hu/figures/offline.png -share/gnome/help/empathy/hu/geolocation-not-showing.page -share/gnome/help/empathy/hu/geolocation-privacy.page -share/gnome/help/empathy/hu/geolocation-supported.page -share/gnome/help/empathy/hu/geolocation-turn.page -share/gnome/help/empathy/hu/geolocation-what-is.page -share/gnome/help/empathy/hu/geolocation.page -share/gnome/help/empathy/hu/group-conversations.page -share/gnome/help/empathy/hu/hide-contacts.page -share/gnome/help/empathy/hu/import-account.page -share/gnome/help/empathy/hu/index.page -share/gnome/help/empathy/hu/introduction.page -share/gnome/help/empathy/hu/irc-commands.page -share/gnome/help/empathy/hu/irc-join-pwd.page -share/gnome/help/empathy/hu/irc-join-room.page -share/gnome/help/empathy/hu/irc-manage.page -share/gnome/help/empathy/hu/irc-nick-password.page -share/gnome/help/empathy/hu/irc-send-file.page -share/gnome/help/empathy/hu/irc-start-conversation.page -share/gnome/help/empathy/hu/license.page -share/gnome/help/empathy/hu/link-contacts.page -share/gnome/help/empathy/hu/prev-conv.page -share/gnome/help/empathy/hu/prob-conn-acctdisabled.page -share/gnome/help/empathy/hu/prob-conn-auth.page -share/gnome/help/empathy/hu/prob-conn-name.page -share/gnome/help/empathy/hu/prob-conn-neterror.page -share/gnome/help/empathy/hu/prob-conn.page -share/gnome/help/empathy/hu/remove-account.page -share/gnome/help/empathy/hu/salut-protocol.page -share/gnome/help/empathy/hu/send-file.page -share/gnome/help/empathy/hu/send-message.page -share/gnome/help/empathy/hu/set-custom-status.page -share/gnome/help/empathy/hu/share-desktop.page -share/gnome/help/empathy/hu/status-icons.page -share/gnome/help/empathy/hu/video-call.page -share/gnome/help/empathy/it/account-irc.page -share/gnome/help/empathy/it/account-jabber.page -share/gnome/help/empathy/it/accounts-window.page -share/gnome/help/empathy/it/add-account.page -share/gnome/help/empathy/it/add-contact.page -share/gnome/help/empathy/it/audio-call.page -share/gnome/help/empathy/it/audio-video.page -share/gnome/help/empathy/it/change-status.page -share/gnome/help/empathy/it/create-account.page -share/gnome/help/empathy/it/disable-account.page -share/gnome/help/empathy/it/favorite-rooms.page -share/gnome/help/empathy/it/figures/audio-input-microphone.png -share/gnome/help/empathy/it/figures/available.png -share/gnome/help/empathy/it/figures/away.png -share/gnome/help/empathy/it/figures/busy.png -share/gnome/help/empathy/it/figures/camera-web.png -share/gnome/help/empathy/it/figures/empathy-logo.png -share/gnome/help/empathy/it/figures/empathy-main-window.png -share/gnome/help/empathy/it/figures/gtk-add.png -share/gnome/help/empathy/it/figures/gtk-edit.png -share/gnome/help/empathy/it/figures/gtk-remove.png -share/gnome/help/empathy/it/figures/offline.png -share/gnome/help/empathy/it/geolocation-not-showing.page -share/gnome/help/empathy/it/geolocation-privacy.page -share/gnome/help/empathy/it/geolocation-supported.page -share/gnome/help/empathy/it/geolocation-turn.page -share/gnome/help/empathy/it/geolocation-what-is.page -share/gnome/help/empathy/it/geolocation.page -share/gnome/help/empathy/it/group-conversations.page -share/gnome/help/empathy/it/hide-contacts.page -share/gnome/help/empathy/it/import-account.page -share/gnome/help/empathy/it/index.page -share/gnome/help/empathy/it/introduction.page -share/gnome/help/empathy/it/irc-commands.page -share/gnome/help/empathy/it/irc-join-pwd.page -share/gnome/help/empathy/it/irc-join-room.page -share/gnome/help/empathy/it/irc-manage.page -share/gnome/help/empathy/it/irc-nick-password.page -share/gnome/help/empathy/it/irc-send-file.page -share/gnome/help/empathy/it/irc-start-conversation.page -share/gnome/help/empathy/it/license.page -share/gnome/help/empathy/it/link-contacts.page -share/gnome/help/empathy/it/prev-conv.page -share/gnome/help/empathy/it/prob-conn-acctdisabled.page -share/gnome/help/empathy/it/prob-conn-auth.page -share/gnome/help/empathy/it/prob-conn-name.page -share/gnome/help/empathy/it/prob-conn-neterror.page -share/gnome/help/empathy/it/prob-conn.page -share/gnome/help/empathy/it/remove-account.page -share/gnome/help/empathy/it/salut-protocol.page -share/gnome/help/empathy/it/send-file.page -share/gnome/help/empathy/it/send-message.page -share/gnome/help/empathy/it/set-custom-status.page -share/gnome/help/empathy/it/share-desktop.page -share/gnome/help/empathy/it/status-icons.page -share/gnome/help/empathy/it/video-call.page -share/gnome/help/empathy/ru/account-irc.page -share/gnome/help/empathy/ru/account-jabber.page -share/gnome/help/empathy/ru/accounts-window.page -share/gnome/help/empathy/ru/add-account.page -share/gnome/help/empathy/ru/add-contact.page -share/gnome/help/empathy/ru/audio-call.page -share/gnome/help/empathy/ru/audio-video.page -share/gnome/help/empathy/ru/change-status.page -share/gnome/help/empathy/ru/create-account.page -share/gnome/help/empathy/ru/disable-account.page -share/gnome/help/empathy/ru/favorite-rooms.page -share/gnome/help/empathy/ru/figures/audio-input-microphone.png -share/gnome/help/empathy/ru/figures/available.png -share/gnome/help/empathy/ru/figures/away.png -share/gnome/help/empathy/ru/figures/busy.png -share/gnome/help/empathy/ru/figures/camera-web.png -share/gnome/help/empathy/ru/figures/empathy-logo.png -share/gnome/help/empathy/ru/figures/empathy-main-window.png -share/gnome/help/empathy/ru/figures/gtk-add.png -share/gnome/help/empathy/ru/figures/gtk-edit.png -share/gnome/help/empathy/ru/figures/gtk-remove.png -share/gnome/help/empathy/ru/figures/offline.png -share/gnome/help/empathy/ru/geolocation-not-showing.page -share/gnome/help/empathy/ru/geolocation-privacy.page -share/gnome/help/empathy/ru/geolocation-supported.page -share/gnome/help/empathy/ru/geolocation-turn.page -share/gnome/help/empathy/ru/geolocation-what-is.page -share/gnome/help/empathy/ru/geolocation.page -share/gnome/help/empathy/ru/group-conversations.page -share/gnome/help/empathy/ru/hide-contacts.page -share/gnome/help/empathy/ru/import-account.page -share/gnome/help/empathy/ru/index.page -share/gnome/help/empathy/ru/introduction.page -share/gnome/help/empathy/ru/irc-commands.page -share/gnome/help/empathy/ru/irc-join-pwd.page -share/gnome/help/empathy/ru/irc-join-room.page -share/gnome/help/empathy/ru/irc-manage.page -share/gnome/help/empathy/ru/irc-nick-password.page -share/gnome/help/empathy/ru/irc-send-file.page -share/gnome/help/empathy/ru/irc-start-conversation.page -share/gnome/help/empathy/ru/license.page -share/gnome/help/empathy/ru/link-contacts.page -share/gnome/help/empathy/ru/prev-conv.page -share/gnome/help/empathy/ru/prob-conn-acctdisabled.page -share/gnome/help/empathy/ru/prob-conn-auth.page -share/gnome/help/empathy/ru/prob-conn-name.page -share/gnome/help/empathy/ru/prob-conn-neterror.page -share/gnome/help/empathy/ru/prob-conn.page -share/gnome/help/empathy/ru/remove-account.page -share/gnome/help/empathy/ru/salut-protocol.page -share/gnome/help/empathy/ru/send-file.page -share/gnome/help/empathy/ru/send-message.page -share/gnome/help/empathy/ru/set-custom-status.page -share/gnome/help/empathy/ru/share-desktop.page -share/gnome/help/empathy/ru/status-icons.page -share/gnome/help/empathy/ru/video-call.page -share/gnome/help/empathy/sv/account-irc.page -share/gnome/help/empathy/sv/account-jabber.page -share/gnome/help/empathy/sv/accounts-window.page -share/gnome/help/empathy/sv/add-account.page -share/gnome/help/empathy/sv/add-contact.page -share/gnome/help/empathy/sv/audio-call.page -share/gnome/help/empathy/sv/audio-video.page -share/gnome/help/empathy/sv/change-status.page -share/gnome/help/empathy/sv/create-account.page -share/gnome/help/empathy/sv/disable-account.page -share/gnome/help/empathy/sv/favorite-rooms.page -share/gnome/help/empathy/sv/figures/audio-input-microphone.png -share/gnome/help/empathy/sv/figures/available.png -share/gnome/help/empathy/sv/figures/away.png -share/gnome/help/empathy/sv/figures/busy.png -share/gnome/help/empathy/sv/figures/camera-web.png -share/gnome/help/empathy/sv/figures/empathy-logo.png -share/gnome/help/empathy/sv/figures/empathy-main-window.png -share/gnome/help/empathy/sv/figures/gtk-add.png -share/gnome/help/empathy/sv/figures/gtk-edit.png -share/gnome/help/empathy/sv/figures/gtk-remove.png -share/gnome/help/empathy/sv/figures/offline.png -share/gnome/help/empathy/sv/geolocation-not-showing.page -share/gnome/help/empathy/sv/geolocation-privacy.page -share/gnome/help/empathy/sv/geolocation-supported.page -share/gnome/help/empathy/sv/geolocation-turn.page -share/gnome/help/empathy/sv/geolocation-what-is.page -share/gnome/help/empathy/sv/geolocation.page -share/gnome/help/empathy/sv/group-conversations.page -share/gnome/help/empathy/sv/hide-contacts.page -share/gnome/help/empathy/sv/import-account.page -share/gnome/help/empathy/sv/index.page -share/gnome/help/empathy/sv/introduction.page -share/gnome/help/empathy/sv/irc-commands.page -share/gnome/help/empathy/sv/irc-join-pwd.page -share/gnome/help/empathy/sv/irc-join-room.page -share/gnome/help/empathy/sv/irc-manage.page -share/gnome/help/empathy/sv/irc-nick-password.page -share/gnome/help/empathy/sv/irc-send-file.page -share/gnome/help/empathy/sv/irc-start-conversation.page -share/gnome/help/empathy/sv/license.page -share/gnome/help/empathy/sv/link-contacts.page -share/gnome/help/empathy/sv/prev-conv.page -share/gnome/help/empathy/sv/prob-conn-acctdisabled.page -share/gnome/help/empathy/sv/prob-conn-auth.page -share/gnome/help/empathy/sv/prob-conn-name.page -share/gnome/help/empathy/sv/prob-conn-neterror.page -share/gnome/help/empathy/sv/prob-conn.page -share/gnome/help/empathy/sv/remove-account.page -share/gnome/help/empathy/sv/salut-protocol.page -share/gnome/help/empathy/sv/send-file.page -share/gnome/help/empathy/sv/send-message.page -share/gnome/help/empathy/sv/set-custom-status.page -share/gnome/help/empathy/sv/share-desktop.page -share/gnome/help/empathy/sv/status-icons.page -share/gnome/help/empathy/sv/video-call.page -share/gnome/help/empathy/zh_CN/account-irc.page -share/gnome/help/empathy/zh_CN/account-jabber.page -share/gnome/help/empathy/zh_CN/accounts-window.page -share/gnome/help/empathy/zh_CN/add-account.page -share/gnome/help/empathy/zh_CN/add-contact.page -share/gnome/help/empathy/zh_CN/audio-call.page -share/gnome/help/empathy/zh_CN/audio-video.page -share/gnome/help/empathy/zh_CN/change-status.page -share/gnome/help/empathy/zh_CN/create-account.page -share/gnome/help/empathy/zh_CN/disable-account.page -share/gnome/help/empathy/zh_CN/favorite-rooms.page -share/gnome/help/empathy/zh_CN/figures/audio-input-microphone.png -share/gnome/help/empathy/zh_CN/figures/available.png -share/gnome/help/empathy/zh_CN/figures/away.png -share/gnome/help/empathy/zh_CN/figures/busy.png -share/gnome/help/empathy/zh_CN/figures/camera-web.png -share/gnome/help/empathy/zh_CN/figures/empathy-logo.png -share/gnome/help/empathy/zh_CN/figures/empathy-main-window.png -share/gnome/help/empathy/zh_CN/figures/gtk-add.png -share/gnome/help/empathy/zh_CN/figures/gtk-edit.png -share/gnome/help/empathy/zh_CN/figures/gtk-remove.png -share/gnome/help/empathy/zh_CN/figures/offline.png -share/gnome/help/empathy/zh_CN/geolocation-not-showing.page -share/gnome/help/empathy/zh_CN/geolocation-privacy.page -share/gnome/help/empathy/zh_CN/geolocation-supported.page -share/gnome/help/empathy/zh_CN/geolocation-turn.page -share/gnome/help/empathy/zh_CN/geolocation-what-is.page -share/gnome/help/empathy/zh_CN/geolocation.page -share/gnome/help/empathy/zh_CN/group-conversations.page -share/gnome/help/empathy/zh_CN/hide-contacts.page -share/gnome/help/empathy/zh_CN/import-account.page -share/gnome/help/empathy/zh_CN/index.page -share/gnome/help/empathy/zh_CN/introduction.page -share/gnome/help/empathy/zh_CN/irc-commands.page -share/gnome/help/empathy/zh_CN/irc-join-pwd.page -share/gnome/help/empathy/zh_CN/irc-join-room.page -share/gnome/help/empathy/zh_CN/irc-manage.page -share/gnome/help/empathy/zh_CN/irc-nick-password.page -share/gnome/help/empathy/zh_CN/irc-send-file.page -share/gnome/help/empathy/zh_CN/irc-start-conversation.page -share/gnome/help/empathy/zh_CN/license.page -share/gnome/help/empathy/zh_CN/link-contacts.page -share/gnome/help/empathy/zh_CN/prev-conv.page -share/gnome/help/empathy/zh_CN/prob-conn-acctdisabled.page -share/gnome/help/empathy/zh_CN/prob-conn-auth.page -share/gnome/help/empathy/zh_CN/prob-conn-name.page -share/gnome/help/empathy/zh_CN/prob-conn-neterror.page -share/gnome/help/empathy/zh_CN/prob-conn.page -share/gnome/help/empathy/zh_CN/remove-account.page -share/gnome/help/empathy/zh_CN/salut-protocol.page -share/gnome/help/empathy/zh_CN/send-file.page -share/gnome/help/empathy/zh_CN/send-message.page -share/gnome/help/empathy/zh_CN/set-custom-status.page -share/gnome/help/empathy/zh_CN/share-desktop.page -share/gnome/help/empathy/zh_CN/status-icons.page -share/gnome/help/empathy/zh_CN/video-call.page +share/help/C/empathy/account-irc.page +share/help/C/empathy/account-jabber.page +share/help/C/empathy/accounts-window.page +share/help/C/empathy/add-account.page +share/help/C/empathy/add-contact.page +share/help/C/empathy/audio-call.page +share/help/C/empathy/audio-video.page +share/help/C/empathy/change-status.page +share/help/C/empathy/create-account.page +share/help/C/empathy/disable-account.page +share/help/C/empathy/favorite-rooms.page +share/help/C/empathy/geolocation-not-showing.page +share/help/C/empathy/geolocation-privacy.page +share/help/C/empathy/geolocation-supported.page +share/help/C/empathy/geolocation-turn.page +share/help/C/empathy/geolocation-what-is.page +share/help/C/empathy/geolocation.page +share/help/C/empathy/group-conversations.page +share/help/C/empathy/hide-contacts.page +share/help/C/empathy/import-account.page +share/help/C/empathy/index.page +share/help/C/empathy/introduction.page +share/help/C/empathy/irc-commands.page +share/help/C/empathy/irc-join-pwd.page +share/help/C/empathy/irc-join-room.page +share/help/C/empathy/irc-manage.page +share/help/C/empathy/irc-nick-password.page +share/help/C/empathy/irc-send-file.page +share/help/C/empathy/irc-start-conversation.page +share/help/C/empathy/license.page +share/help/C/empathy/link-contacts.page +share/help/C/empathy/overview.page +share/help/C/empathy/prev-conv.page +share/help/C/empathy/prob-conn-acctdisabled.page +share/help/C/empathy/prob-conn-auth.page +share/help/C/empathy/prob-conn-name.page +share/help/C/empathy/prob-conn-neterror.page +share/help/C/empathy/prob-conn.page +share/help/C/empathy/remove-account.page +share/help/C/empathy/salut-protocol.page +share/help/C/empathy/send-file.page +share/help/C/empathy/send-message.page +share/help/C/empathy/set-custom-status.page +share/help/C/empathy/share-desktop.page +share/help/C/empathy/status-icons.page +share/help/C/empathy/video-call.page +share/help/C/empathy/figures/available.png +share/help/C/empathy/figures/away.png +share/help/C/empathy/figures/busy.png +share/help/C/empathy/figures/conf_overview.png +share/help/C/empathy/figures/croom_overview.png +share/help/C/empathy/figures/empathy-logo.png +share/help/C/empathy/figures/empathy-main-window.png +share/help/C/empathy/figures/gtk-add.png +share/help/C/empathy/figures/gtk-edit.png +share/help/C/empathy/figures/gtk-remove.png +share/help/C/empathy/figures/offline.png +share/help/C/empathy/figures/video_overview.png +share/help/ca/empathy/account-irc.page +share/help/ca/empathy/account-jabber.page +share/help/ca/empathy/accounts-window.page +share/help/ca/empathy/add-account.page +share/help/ca/empathy/add-contact.page +share/help/ca/empathy/audio-call.page +share/help/ca/empathy/audio-video.page +share/help/ca/empathy/change-status.page +share/help/ca/empathy/create-account.page +share/help/ca/empathy/disable-account.page +share/help/ca/empathy/favorite-rooms.page +share/help/ca/empathy/geolocation-not-showing.page +share/help/ca/empathy/geolocation-privacy.page +share/help/ca/empathy/geolocation-supported.page +share/help/ca/empathy/geolocation-turn.page +share/help/ca/empathy/geolocation-what-is.page +share/help/ca/empathy/geolocation.page +share/help/ca/empathy/group-conversations.page +share/help/ca/empathy/hide-contacts.page +share/help/ca/empathy/import-account.page +share/help/ca/empathy/index.page +share/help/ca/empathy/introduction.page +share/help/ca/empathy/irc-commands.page +share/help/ca/empathy/irc-join-pwd.page +share/help/ca/empathy/irc-join-room.page +share/help/ca/empathy/irc-manage.page +share/help/ca/empathy/irc-nick-password.page +share/help/ca/empathy/irc-send-file.page +share/help/ca/empathy/irc-start-conversation.page +share/help/ca/empathy/license.page +share/help/ca/empathy/link-contacts.page +share/help/ca/empathy/overview.page +share/help/ca/empathy/prev-conv.page +share/help/ca/empathy/prob-conn-acctdisabled.page +share/help/ca/empathy/prob-conn-auth.page +share/help/ca/empathy/prob-conn-name.page +share/help/ca/empathy/prob-conn-neterror.page +share/help/ca/empathy/prob-conn.page +share/help/ca/empathy/remove-account.page +share/help/ca/empathy/salut-protocol.page +share/help/ca/empathy/send-file.page +share/help/ca/empathy/send-message.page +share/help/ca/empathy/set-custom-status.page +share/help/ca/empathy/share-desktop.page +share/help/ca/empathy/status-icons.page +share/help/ca/empathy/video-call.page +share/help/ca/empathy/figures/available.png +share/help/ca/empathy/figures/away.png +share/help/ca/empathy/figures/busy.png +share/help/ca/empathy/figures/conf_overview.png +share/help/ca/empathy/figures/croom_overview.png +share/help/ca/empathy/figures/empathy-logo.png +share/help/ca/empathy/figures/empathy-main-window.png +share/help/ca/empathy/figures/gtk-add.png +share/help/ca/empathy/figures/gtk-edit.png +share/help/ca/empathy/figures/gtk-remove.png +share/help/ca/empathy/figures/offline.png +share/help/ca/empathy/figures/video_overview.png +share/help/cs/empathy/account-irc.page +share/help/cs/empathy/account-jabber.page +share/help/cs/empathy/accounts-window.page +share/help/cs/empathy/add-account.page +share/help/cs/empathy/add-contact.page +share/help/cs/empathy/audio-call.page +share/help/cs/empathy/audio-video.page +share/help/cs/empathy/change-status.page +share/help/cs/empathy/create-account.page +share/help/cs/empathy/disable-account.page +share/help/cs/empathy/favorite-rooms.page +share/help/cs/empathy/geolocation-not-showing.page +share/help/cs/empathy/geolocation-privacy.page +share/help/cs/empathy/geolocation-supported.page +share/help/cs/empathy/geolocation-turn.page +share/help/cs/empathy/geolocation-what-is.page +share/help/cs/empathy/geolocation.page +share/help/cs/empathy/group-conversations.page +share/help/cs/empathy/hide-contacts.page +share/help/cs/empathy/import-account.page +share/help/cs/empathy/index.page +share/help/cs/empathy/introduction.page +share/help/cs/empathy/irc-commands.page +share/help/cs/empathy/irc-join-pwd.page +share/help/cs/empathy/irc-join-room.page +share/help/cs/empathy/irc-manage.page +share/help/cs/empathy/irc-nick-password.page +share/help/cs/empathy/irc-send-file.page +share/help/cs/empathy/irc-start-conversation.page +share/help/cs/empathy/license.page +share/help/cs/empathy/link-contacts.page +share/help/cs/empathy/overview.page +share/help/cs/empathy/prev-conv.page +share/help/cs/empathy/prob-conn-acctdisabled.page +share/help/cs/empathy/prob-conn-auth.page +share/help/cs/empathy/prob-conn-name.page +share/help/cs/empathy/prob-conn-neterror.page +share/help/cs/empathy/prob-conn.page +share/help/cs/empathy/remove-account.page +share/help/cs/empathy/salut-protocol.page +share/help/cs/empathy/send-file.page +share/help/cs/empathy/send-message.page +share/help/cs/empathy/set-custom-status.page +share/help/cs/empathy/share-desktop.page +share/help/cs/empathy/status-icons.page +share/help/cs/empathy/video-call.page +share/help/cs/empathy/figures/available.png +share/help/cs/empathy/figures/away.png +share/help/cs/empathy/figures/busy.png +share/help/cs/empathy/figures/conf_overview.png +share/help/cs/empathy/figures/croom_overview.png +share/help/cs/empathy/figures/empathy-logo.png +share/help/cs/empathy/figures/empathy-main-window.png +share/help/cs/empathy/figures/gtk-add.png +share/help/cs/empathy/figures/gtk-edit.png +share/help/cs/empathy/figures/gtk-remove.png +share/help/cs/empathy/figures/offline.png +share/help/cs/empathy/figures/video_overview.png +share/help/de/empathy/account-irc.page +share/help/de/empathy/account-jabber.page +share/help/de/empathy/accounts-window.page +share/help/de/empathy/add-account.page +share/help/de/empathy/add-contact.page +share/help/de/empathy/audio-call.page +share/help/de/empathy/audio-video.page +share/help/de/empathy/change-status.page +share/help/de/empathy/create-account.page +share/help/de/empathy/disable-account.page +share/help/de/empathy/favorite-rooms.page +share/help/de/empathy/geolocation-not-showing.page +share/help/de/empathy/geolocation-privacy.page +share/help/de/empathy/geolocation-supported.page +share/help/de/empathy/geolocation-turn.page +share/help/de/empathy/geolocation-what-is.page +share/help/de/empathy/geolocation.page +share/help/de/empathy/group-conversations.page +share/help/de/empathy/hide-contacts.page +share/help/de/empathy/import-account.page +share/help/de/empathy/index.page +share/help/de/empathy/introduction.page +share/help/de/empathy/irc-commands.page +share/help/de/empathy/irc-join-pwd.page +share/help/de/empathy/irc-join-room.page +share/help/de/empathy/irc-manage.page +share/help/de/empathy/irc-nick-password.page +share/help/de/empathy/irc-send-file.page +share/help/de/empathy/irc-start-conversation.page +share/help/de/empathy/license.page +share/help/de/empathy/link-contacts.page +share/help/de/empathy/overview.page +share/help/de/empathy/prev-conv.page +share/help/de/empathy/prob-conn-acctdisabled.page +share/help/de/empathy/prob-conn-auth.page +share/help/de/empathy/prob-conn-name.page +share/help/de/empathy/prob-conn-neterror.page +share/help/de/empathy/prob-conn.page +share/help/de/empathy/remove-account.page +share/help/de/empathy/salut-protocol.page +share/help/de/empathy/send-file.page +share/help/de/empathy/send-message.page +share/help/de/empathy/set-custom-status.page +share/help/de/empathy/share-desktop.page +share/help/de/empathy/status-icons.page +share/help/de/empathy/video-call.page +share/help/de/empathy/figures/available.png +share/help/de/empathy/figures/away.png +share/help/de/empathy/figures/busy.png +share/help/de/empathy/figures/conf_overview.png +share/help/de/empathy/figures/croom_overview.png +share/help/de/empathy/figures/empathy-logo.png +share/help/de/empathy/figures/empathy-main-window.png +share/help/de/empathy/figures/gtk-add.png +share/help/de/empathy/figures/gtk-edit.png +share/help/de/empathy/figures/gtk-remove.png +share/help/de/empathy/figures/offline.png +share/help/de/empathy/figures/video_overview.png +share/help/el/empathy/account-irc.page +share/help/el/empathy/account-jabber.page +share/help/el/empathy/accounts-window.page +share/help/el/empathy/add-account.page +share/help/el/empathy/add-contact.page +share/help/el/empathy/audio-call.page +share/help/el/empathy/audio-video.page +share/help/el/empathy/change-status.page +share/help/el/empathy/create-account.page +share/help/el/empathy/disable-account.page +share/help/el/empathy/favorite-rooms.page +share/help/el/empathy/geolocation-not-showing.page +share/help/el/empathy/geolocation-privacy.page +share/help/el/empathy/geolocation-supported.page +share/help/el/empathy/geolocation-turn.page +share/help/el/empathy/geolocation-what-is.page +share/help/el/empathy/geolocation.page +share/help/el/empathy/group-conversations.page +share/help/el/empathy/hide-contacts.page +share/help/el/empathy/import-account.page +share/help/el/empathy/index.page +share/help/el/empathy/introduction.page +share/help/el/empathy/irc-commands.page +share/help/el/empathy/irc-join-pwd.page +share/help/el/empathy/irc-join-room.page +share/help/el/empathy/irc-manage.page +share/help/el/empathy/irc-nick-password.page +share/help/el/empathy/irc-send-file.page +share/help/el/empathy/irc-start-conversation.page +share/help/el/empathy/license.page +share/help/el/empathy/link-contacts.page +share/help/el/empathy/overview.page +share/help/el/empathy/prev-conv.page +share/help/el/empathy/prob-conn-acctdisabled.page +share/help/el/empathy/prob-conn-auth.page +share/help/el/empathy/prob-conn-name.page +share/help/el/empathy/prob-conn-neterror.page +share/help/el/empathy/prob-conn.page +share/help/el/empathy/remove-account.page +share/help/el/empathy/salut-protocol.page +share/help/el/empathy/send-file.page +share/help/el/empathy/send-message.page +share/help/el/empathy/set-custom-status.page +share/help/el/empathy/share-desktop.page +share/help/el/empathy/status-icons.page +share/help/el/empathy/video-call.page +share/help/el/empathy/figures/available.png +share/help/el/empathy/figures/away.png +share/help/el/empathy/figures/busy.png +share/help/el/empathy/figures/conf_overview.png +share/help/el/empathy/figures/croom_overview.png +share/help/el/empathy/figures/empathy-logo.png +share/help/el/empathy/figures/empathy-main-window.png +share/help/el/empathy/figures/gtk-add.png +share/help/el/empathy/figures/gtk-edit.png +share/help/el/empathy/figures/gtk-remove.png +share/help/el/empathy/figures/offline.png +share/help/el/empathy/figures/video_overview.png +share/help/en_GB/empathy/account-irc.page +share/help/en_GB/empathy/account-jabber.page +share/help/en_GB/empathy/accounts-window.page +share/help/en_GB/empathy/add-account.page +share/help/en_GB/empathy/add-contact.page +share/help/en_GB/empathy/audio-call.page +share/help/en_GB/empathy/audio-video.page +share/help/en_GB/empathy/change-status.page +share/help/en_GB/empathy/create-account.page +share/help/en_GB/empathy/disable-account.page +share/help/en_GB/empathy/favorite-rooms.page +share/help/en_GB/empathy/geolocation-not-showing.page +share/help/en_GB/empathy/geolocation-privacy.page +share/help/en_GB/empathy/geolocation-supported.page +share/help/en_GB/empathy/geolocation-turn.page +share/help/en_GB/empathy/geolocation-what-is.page +share/help/en_GB/empathy/geolocation.page +share/help/en_GB/empathy/group-conversations.page +share/help/en_GB/empathy/hide-contacts.page +share/help/en_GB/empathy/import-account.page +share/help/en_GB/empathy/index.page +share/help/en_GB/empathy/introduction.page +share/help/en_GB/empathy/irc-commands.page +share/help/en_GB/empathy/irc-join-pwd.page +share/help/en_GB/empathy/irc-join-room.page +share/help/en_GB/empathy/irc-manage.page +share/help/en_GB/empathy/irc-nick-password.page +share/help/en_GB/empathy/irc-send-file.page +share/help/en_GB/empathy/irc-start-conversation.page +share/help/en_GB/empathy/license.page +share/help/en_GB/empathy/link-contacts.page +share/help/en_GB/empathy/overview.page +share/help/en_GB/empathy/prev-conv.page +share/help/en_GB/empathy/prob-conn-acctdisabled.page +share/help/en_GB/empathy/prob-conn-auth.page +share/help/en_GB/empathy/prob-conn-name.page +share/help/en_GB/empathy/prob-conn-neterror.page +share/help/en_GB/empathy/prob-conn.page +share/help/en_GB/empathy/remove-account.page +share/help/en_GB/empathy/salut-protocol.page +share/help/en_GB/empathy/send-file.page +share/help/en_GB/empathy/send-message.page +share/help/en_GB/empathy/set-custom-status.page +share/help/en_GB/empathy/share-desktop.page +share/help/en_GB/empathy/status-icons.page +share/help/en_GB/empathy/video-call.page +share/help/en_GB/empathy/figures/available.png +share/help/en_GB/empathy/figures/away.png +share/help/en_GB/empathy/figures/busy.png +share/help/en_GB/empathy/figures/conf_overview.png +share/help/en_GB/empathy/figures/croom_overview.png +share/help/en_GB/empathy/figures/empathy-logo.png +share/help/en_GB/empathy/figures/empathy-main-window.png +share/help/en_GB/empathy/figures/gtk-add.png +share/help/en_GB/empathy/figures/gtk-edit.png +share/help/en_GB/empathy/figures/gtk-remove.png +share/help/en_GB/empathy/figures/offline.png +share/help/en_GB/empathy/figures/video_overview.png +share/help/es/empathy/account-irc.page +share/help/es/empathy/account-jabber.page +share/help/es/empathy/accounts-window.page +share/help/es/empathy/add-account.page +share/help/es/empathy/add-contact.page +share/help/es/empathy/audio-call.page +share/help/es/empathy/audio-video.page +share/help/es/empathy/change-status.page +share/help/es/empathy/create-account.page +share/help/es/empathy/disable-account.page +share/help/es/empathy/favorite-rooms.page +share/help/es/empathy/geolocation-not-showing.page +share/help/es/empathy/geolocation-privacy.page +share/help/es/empathy/geolocation-supported.page +share/help/es/empathy/geolocation-turn.page +share/help/es/empathy/geolocation-what-is.page +share/help/es/empathy/geolocation.page +share/help/es/empathy/group-conversations.page +share/help/es/empathy/hide-contacts.page +share/help/es/empathy/import-account.page +share/help/es/empathy/index.page +share/help/es/empathy/introduction.page +share/help/es/empathy/irc-commands.page +share/help/es/empathy/irc-join-pwd.page +share/help/es/empathy/irc-join-room.page +share/help/es/empathy/irc-manage.page +share/help/es/empathy/irc-nick-password.page +share/help/es/empathy/irc-send-file.page +share/help/es/empathy/irc-start-conversation.page +share/help/es/empathy/license.page +share/help/es/empathy/link-contacts.page +share/help/es/empathy/overview.page +share/help/es/empathy/prev-conv.page +share/help/es/empathy/prob-conn-acctdisabled.page +share/help/es/empathy/prob-conn-auth.page +share/help/es/empathy/prob-conn-name.page +share/help/es/empathy/prob-conn-neterror.page +share/help/es/empathy/prob-conn.page +share/help/es/empathy/remove-account.page +share/help/es/empathy/salut-protocol.page +share/help/es/empathy/send-file.page +share/help/es/empathy/send-message.page +share/help/es/empathy/set-custom-status.page +share/help/es/empathy/share-desktop.page +share/help/es/empathy/status-icons.page +share/help/es/empathy/video-call.page +share/help/es/empathy/figures/available.png +share/help/es/empathy/figures/away.png +share/help/es/empathy/figures/busy.png +share/help/es/empathy/figures/conf_overview.png +share/help/es/empathy/figures/croom_overview.png +share/help/es/empathy/figures/empathy-logo.png +share/help/es/empathy/figures/empathy-main-window.png +share/help/es/empathy/figures/gtk-add.png +share/help/es/empathy/figures/gtk-edit.png +share/help/es/empathy/figures/gtk-remove.png +share/help/es/empathy/figures/offline.png +share/help/es/empathy/figures/video_overview.png +share/help/eu/empathy/account-irc.page +share/help/eu/empathy/account-jabber.page +share/help/eu/empathy/accounts-window.page +share/help/eu/empathy/add-account.page +share/help/eu/empathy/add-contact.page +share/help/eu/empathy/audio-call.page +share/help/eu/empathy/audio-video.page +share/help/eu/empathy/change-status.page +share/help/eu/empathy/create-account.page +share/help/eu/empathy/disable-account.page +share/help/eu/empathy/favorite-rooms.page +share/help/eu/empathy/geolocation-not-showing.page +share/help/eu/empathy/geolocation-privacy.page +share/help/eu/empathy/geolocation-supported.page +share/help/eu/empathy/geolocation-turn.page +share/help/eu/empathy/geolocation-what-is.page +share/help/eu/empathy/geolocation.page +share/help/eu/empathy/group-conversations.page +share/help/eu/empathy/hide-contacts.page +share/help/eu/empathy/import-account.page +share/help/eu/empathy/index.page +share/help/eu/empathy/introduction.page +share/help/eu/empathy/irc-commands.page +share/help/eu/empathy/irc-join-pwd.page +share/help/eu/empathy/irc-join-room.page +share/help/eu/empathy/irc-manage.page +share/help/eu/empathy/irc-nick-password.page +share/help/eu/empathy/irc-send-file.page +share/help/eu/empathy/irc-start-conversation.page +share/help/eu/empathy/license.page +share/help/eu/empathy/link-contacts.page +share/help/eu/empathy/overview.page +share/help/eu/empathy/prev-conv.page +share/help/eu/empathy/prob-conn-acctdisabled.page +share/help/eu/empathy/prob-conn-auth.page +share/help/eu/empathy/prob-conn-name.page +share/help/eu/empathy/prob-conn-neterror.page +share/help/eu/empathy/prob-conn.page +share/help/eu/empathy/remove-account.page +share/help/eu/empathy/salut-protocol.page +share/help/eu/empathy/send-file.page +share/help/eu/empathy/send-message.page +share/help/eu/empathy/set-custom-status.page +share/help/eu/empathy/share-desktop.page +share/help/eu/empathy/status-icons.page +share/help/eu/empathy/video-call.page +share/help/eu/empathy/figures/available.png +share/help/eu/empathy/figures/away.png +share/help/eu/empathy/figures/busy.png +share/help/eu/empathy/figures/conf_overview.png +share/help/eu/empathy/figures/croom_overview.png +share/help/eu/empathy/figures/empathy-logo.png +share/help/eu/empathy/figures/empathy-main-window.png +share/help/eu/empathy/figures/gtk-add.png +share/help/eu/empathy/figures/gtk-edit.png +share/help/eu/empathy/figures/gtk-remove.png +share/help/eu/empathy/figures/offline.png +share/help/eu/empathy/figures/video_overview.png +share/help/fi/empathy/account-irc.page +share/help/fi/empathy/account-jabber.page +share/help/fi/empathy/accounts-window.page +share/help/fi/empathy/add-account.page +share/help/fi/empathy/add-contact.page +share/help/fi/empathy/audio-call.page +share/help/fi/empathy/audio-video.page +share/help/fi/empathy/change-status.page +share/help/fi/empathy/create-account.page +share/help/fi/empathy/disable-account.page +share/help/fi/empathy/favorite-rooms.page +share/help/fi/empathy/geolocation-not-showing.page +share/help/fi/empathy/geolocation-privacy.page +share/help/fi/empathy/geolocation-supported.page +share/help/fi/empathy/geolocation-turn.page +share/help/fi/empathy/geolocation-what-is.page +share/help/fi/empathy/geolocation.page +share/help/fi/empathy/group-conversations.page +share/help/fi/empathy/hide-contacts.page +share/help/fi/empathy/import-account.page +share/help/fi/empathy/index.page +share/help/fi/empathy/introduction.page +share/help/fi/empathy/irc-commands.page +share/help/fi/empathy/irc-join-pwd.page +share/help/fi/empathy/irc-join-room.page +share/help/fi/empathy/irc-manage.page +share/help/fi/empathy/irc-nick-password.page +share/help/fi/empathy/irc-send-file.page +share/help/fi/empathy/irc-start-conversation.page +share/help/fi/empathy/license.page +share/help/fi/empathy/link-contacts.page +share/help/fi/empathy/overview.page +share/help/fi/empathy/prev-conv.page +share/help/fi/empathy/prob-conn-acctdisabled.page +share/help/fi/empathy/prob-conn-auth.page +share/help/fi/empathy/prob-conn-name.page +share/help/fi/empathy/prob-conn-neterror.page +share/help/fi/empathy/prob-conn.page +share/help/fi/empathy/remove-account.page +share/help/fi/empathy/salut-protocol.page +share/help/fi/empathy/send-file.page +share/help/fi/empathy/send-message.page +share/help/fi/empathy/set-custom-status.page +share/help/fi/empathy/share-desktop.page +share/help/fi/empathy/status-icons.page +share/help/fi/empathy/video-call.page +share/help/fi/empathy/figures/available.png +share/help/fi/empathy/figures/away.png +share/help/fi/empathy/figures/busy.png +share/help/fi/empathy/figures/conf_overview.png +share/help/fi/empathy/figures/croom_overview.png +share/help/fi/empathy/figures/empathy-logo.png +share/help/fi/empathy/figures/empathy-main-window.png +share/help/fi/empathy/figures/gtk-add.png +share/help/fi/empathy/figures/gtk-edit.png +share/help/fi/empathy/figures/gtk-remove.png +share/help/fi/empathy/figures/offline.png +share/help/fi/empathy/figures/video_overview.png +share/help/fr/empathy/account-irc.page +share/help/fr/empathy/account-jabber.page +share/help/fr/empathy/accounts-window.page +share/help/fr/empathy/add-account.page +share/help/fr/empathy/add-contact.page +share/help/fr/empathy/audio-call.page +share/help/fr/empathy/audio-video.page +share/help/fr/empathy/change-status.page +share/help/fr/empathy/create-account.page +share/help/fr/empathy/disable-account.page +share/help/fr/empathy/favorite-rooms.page +share/help/fr/empathy/geolocation-not-showing.page +share/help/fr/empathy/geolocation-privacy.page +share/help/fr/empathy/geolocation-supported.page +share/help/fr/empathy/geolocation-turn.page +share/help/fr/empathy/geolocation-what-is.page +share/help/fr/empathy/geolocation.page +share/help/fr/empathy/group-conversations.page +share/help/fr/empathy/hide-contacts.page +share/help/fr/empathy/import-account.page +share/help/fr/empathy/index.page +share/help/fr/empathy/introduction.page +share/help/fr/empathy/irc-commands.page +share/help/fr/empathy/irc-join-pwd.page +share/help/fr/empathy/irc-join-room.page +share/help/fr/empathy/irc-manage.page +share/help/fr/empathy/irc-nick-password.page +share/help/fr/empathy/irc-send-file.page +share/help/fr/empathy/irc-start-conversation.page +share/help/fr/empathy/license.page +share/help/fr/empathy/link-contacts.page +share/help/fr/empathy/overview.page +share/help/fr/empathy/prev-conv.page +share/help/fr/empathy/prob-conn-acctdisabled.page +share/help/fr/empathy/prob-conn-auth.page +share/help/fr/empathy/prob-conn-name.page +share/help/fr/empathy/prob-conn-neterror.page +share/help/fr/empathy/prob-conn.page +share/help/fr/empathy/remove-account.page +share/help/fr/empathy/salut-protocol.page +share/help/fr/empathy/send-file.page +share/help/fr/empathy/send-message.page +share/help/fr/empathy/set-custom-status.page +share/help/fr/empathy/share-desktop.page +share/help/fr/empathy/status-icons.page +share/help/fr/empathy/video-call.page +share/help/fr/empathy/figures/available.png +share/help/fr/empathy/figures/away.png +share/help/fr/empathy/figures/busy.png +share/help/fr/empathy/figures/conf_overview.png +share/help/fr/empathy/figures/croom_overview.png +share/help/fr/empathy/figures/empathy-logo.png +share/help/fr/empathy/figures/empathy-main-window.png +share/help/fr/empathy/figures/gtk-add.png +share/help/fr/empathy/figures/gtk-edit.png +share/help/fr/empathy/figures/gtk-remove.png +share/help/fr/empathy/figures/offline.png +share/help/fr/empathy/figures/video_overview.png +share/help/gl/empathy/account-irc.page +share/help/gl/empathy/account-jabber.page +share/help/gl/empathy/accounts-window.page +share/help/gl/empathy/add-account.page +share/help/gl/empathy/add-contact.page +share/help/gl/empathy/audio-call.page +share/help/gl/empathy/audio-video.page +share/help/gl/empathy/change-status.page +share/help/gl/empathy/create-account.page +share/help/gl/empathy/disable-account.page +share/help/gl/empathy/favorite-rooms.page +share/help/gl/empathy/geolocation-not-showing.page +share/help/gl/empathy/geolocation-privacy.page +share/help/gl/empathy/geolocation-supported.page +share/help/gl/empathy/geolocation-turn.page +share/help/gl/empathy/geolocation-what-is.page +share/help/gl/empathy/geolocation.page +share/help/gl/empathy/group-conversations.page +share/help/gl/empathy/hide-contacts.page +share/help/gl/empathy/import-account.page +share/help/gl/empathy/index.page +share/help/gl/empathy/introduction.page +share/help/gl/empathy/irc-commands.page +share/help/gl/empathy/irc-join-pwd.page +share/help/gl/empathy/irc-join-room.page +share/help/gl/empathy/irc-manage.page +share/help/gl/empathy/irc-nick-password.page +share/help/gl/empathy/irc-send-file.page +share/help/gl/empathy/irc-start-conversation.page +share/help/gl/empathy/license.page +share/help/gl/empathy/link-contacts.page +share/help/gl/empathy/overview.page +share/help/gl/empathy/prev-conv.page +share/help/gl/empathy/prob-conn-acctdisabled.page +share/help/gl/empathy/prob-conn-auth.page +share/help/gl/empathy/prob-conn-name.page +share/help/gl/empathy/prob-conn-neterror.page +share/help/gl/empathy/prob-conn.page +share/help/gl/empathy/remove-account.page +share/help/gl/empathy/salut-protocol.page +share/help/gl/empathy/send-file.page +share/help/gl/empathy/send-message.page +share/help/gl/empathy/set-custom-status.page +share/help/gl/empathy/share-desktop.page +share/help/gl/empathy/status-icons.page +share/help/gl/empathy/video-call.page +share/help/gl/empathy/figures/available.png +share/help/gl/empathy/figures/away.png +share/help/gl/empathy/figures/busy.png +share/help/gl/empathy/figures/conf_overview.png +share/help/gl/empathy/figures/croom_overview.png +share/help/gl/empathy/figures/empathy-logo.png +share/help/gl/empathy/figures/empathy-main-window.png +share/help/gl/empathy/figures/gtk-add.png +share/help/gl/empathy/figures/gtk-edit.png +share/help/gl/empathy/figures/gtk-remove.png +share/help/gl/empathy/figures/offline.png +share/help/gl/empathy/figures/video_overview.png +share/help/hu/empathy/account-irc.page +share/help/hu/empathy/account-jabber.page +share/help/hu/empathy/accounts-window.page +share/help/hu/empathy/add-account.page +share/help/hu/empathy/add-contact.page +share/help/hu/empathy/audio-call.page +share/help/hu/empathy/audio-video.page +share/help/hu/empathy/change-status.page +share/help/hu/empathy/create-account.page +share/help/hu/empathy/disable-account.page +share/help/hu/empathy/favorite-rooms.page +share/help/hu/empathy/geolocation-not-showing.page +share/help/hu/empathy/geolocation-privacy.page +share/help/hu/empathy/geolocation-supported.page +share/help/hu/empathy/geolocation-turn.page +share/help/hu/empathy/geolocation-what-is.page +share/help/hu/empathy/geolocation.page +share/help/hu/empathy/group-conversations.page +share/help/hu/empathy/hide-contacts.page +share/help/hu/empathy/import-account.page +share/help/hu/empathy/index.page +share/help/hu/empathy/introduction.page +share/help/hu/empathy/irc-commands.page +share/help/hu/empathy/irc-join-pwd.page +share/help/hu/empathy/irc-join-room.page +share/help/hu/empathy/irc-manage.page +share/help/hu/empathy/irc-nick-password.page +share/help/hu/empathy/irc-send-file.page +share/help/hu/empathy/irc-start-conversation.page +share/help/hu/empathy/license.page +share/help/hu/empathy/link-contacts.page +share/help/hu/empathy/overview.page +share/help/hu/empathy/prev-conv.page +share/help/hu/empathy/prob-conn-acctdisabled.page +share/help/hu/empathy/prob-conn-auth.page +share/help/hu/empathy/prob-conn-name.page +share/help/hu/empathy/prob-conn-neterror.page +share/help/hu/empathy/prob-conn.page +share/help/hu/empathy/remove-account.page +share/help/hu/empathy/salut-protocol.page +share/help/hu/empathy/send-file.page +share/help/hu/empathy/send-message.page +share/help/hu/empathy/set-custom-status.page +share/help/hu/empathy/share-desktop.page +share/help/hu/empathy/status-icons.page +share/help/hu/empathy/video-call.page +share/help/hu/empathy/figures/available.png +share/help/hu/empathy/figures/away.png +share/help/hu/empathy/figures/busy.png +share/help/hu/empathy/figures/conf_overview.png +share/help/hu/empathy/figures/croom_overview.png +share/help/hu/empathy/figures/empathy-logo.png +share/help/hu/empathy/figures/empathy-main-window.png +share/help/hu/empathy/figures/gtk-add.png +share/help/hu/empathy/figures/gtk-edit.png +share/help/hu/empathy/figures/gtk-remove.png +share/help/hu/empathy/figures/offline.png +share/help/hu/empathy/figures/video_overview.png +share/help/it/empathy/account-irc.page +share/help/it/empathy/account-jabber.page +share/help/it/empathy/accounts-window.page +share/help/it/empathy/add-account.page +share/help/it/empathy/add-contact.page +share/help/it/empathy/audio-call.page +share/help/it/empathy/audio-video.page +share/help/it/empathy/change-status.page +share/help/it/empathy/create-account.page +share/help/it/empathy/disable-account.page +share/help/it/empathy/favorite-rooms.page +share/help/it/empathy/geolocation-not-showing.page +share/help/it/empathy/geolocation-privacy.page +share/help/it/empathy/geolocation-supported.page +share/help/it/empathy/geolocation-turn.page +share/help/it/empathy/geolocation-what-is.page +share/help/it/empathy/geolocation.page +share/help/it/empathy/group-conversations.page +share/help/it/empathy/hide-contacts.page +share/help/it/empathy/import-account.page +share/help/it/empathy/index.page +share/help/it/empathy/introduction.page +share/help/it/empathy/irc-commands.page +share/help/it/empathy/irc-join-pwd.page +share/help/it/empathy/irc-join-room.page +share/help/it/empathy/irc-manage.page +share/help/it/empathy/irc-nick-password.page +share/help/it/empathy/irc-send-file.page +share/help/it/empathy/irc-start-conversation.page +share/help/it/empathy/license.page +share/help/it/empathy/link-contacts.page +share/help/it/empathy/overview.page +share/help/it/empathy/prev-conv.page +share/help/it/empathy/prob-conn-acctdisabled.page +share/help/it/empathy/prob-conn-auth.page +share/help/it/empathy/prob-conn-name.page +share/help/it/empathy/prob-conn-neterror.page +share/help/it/empathy/prob-conn.page +share/help/it/empathy/remove-account.page +share/help/it/empathy/salut-protocol.page +share/help/it/empathy/send-file.page +share/help/it/empathy/send-message.page +share/help/it/empathy/set-custom-status.page +share/help/it/empathy/share-desktop.page +share/help/it/empathy/status-icons.page +share/help/it/empathy/video-call.page +share/help/it/empathy/figures/available.png +share/help/it/empathy/figures/away.png +share/help/it/empathy/figures/busy.png +share/help/it/empathy/figures/conf_overview.png +share/help/it/empathy/figures/croom_overview.png +share/help/it/empathy/figures/empathy-logo.png +share/help/it/empathy/figures/empathy-main-window.png +share/help/it/empathy/figures/gtk-add.png +share/help/it/empathy/figures/gtk-edit.png +share/help/it/empathy/figures/gtk-remove.png +share/help/it/empathy/figures/offline.png +share/help/it/empathy/figures/video_overview.png +share/help/ja/empathy/account-irc.page +share/help/ja/empathy/account-jabber.page +share/help/ja/empathy/accounts-window.page +share/help/ja/empathy/add-account.page +share/help/ja/empathy/add-contact.page +share/help/ja/empathy/audio-call.page +share/help/ja/empathy/audio-video.page +share/help/ja/empathy/change-status.page +share/help/ja/empathy/create-account.page +share/help/ja/empathy/disable-account.page +share/help/ja/empathy/favorite-rooms.page +share/help/ja/empathy/geolocation-not-showing.page +share/help/ja/empathy/geolocation-privacy.page +share/help/ja/empathy/geolocation-supported.page +share/help/ja/empathy/geolocation-turn.page +share/help/ja/empathy/geolocation-what-is.page +share/help/ja/empathy/geolocation.page +share/help/ja/empathy/group-conversations.page +share/help/ja/empathy/hide-contacts.page +share/help/ja/empathy/import-account.page +share/help/ja/empathy/index.page +share/help/ja/empathy/introduction.page +share/help/ja/empathy/irc-commands.page +share/help/ja/empathy/irc-join-pwd.page +share/help/ja/empathy/irc-join-room.page +share/help/ja/empathy/irc-manage.page +share/help/ja/empathy/irc-nick-password.page +share/help/ja/empathy/irc-send-file.page +share/help/ja/empathy/irc-start-conversation.page +share/help/ja/empathy/license.page +share/help/ja/empathy/link-contacts.page +share/help/ja/empathy/overview.page +share/help/ja/empathy/prev-conv.page +share/help/ja/empathy/prob-conn-acctdisabled.page +share/help/ja/empathy/prob-conn-auth.page +share/help/ja/empathy/prob-conn-name.page +share/help/ja/empathy/prob-conn-neterror.page +share/help/ja/empathy/prob-conn.page +share/help/ja/empathy/remove-account.page +share/help/ja/empathy/salut-protocol.page +share/help/ja/empathy/send-file.page +share/help/ja/empathy/send-message.page +share/help/ja/empathy/set-custom-status.page +share/help/ja/empathy/share-desktop.page +share/help/ja/empathy/status-icons.page +share/help/ja/empathy/video-call.page +share/help/ja/empathy/figures/available.png +share/help/ja/empathy/figures/away.png +share/help/ja/empathy/figures/busy.png +share/help/ja/empathy/figures/conf_overview.png +share/help/ja/empathy/figures/croom_overview.png +share/help/ja/empathy/figures/empathy-logo.png +share/help/ja/empathy/figures/empathy-main-window.png +share/help/ja/empathy/figures/gtk-add.png +share/help/ja/empathy/figures/gtk-edit.png +share/help/ja/empathy/figures/gtk-remove.png +share/help/ja/empathy/figures/offline.png +share/help/ja/empathy/figures/video_overview.png +share/help/lv/empathy/account-irc.page +share/help/lv/empathy/account-jabber.page +share/help/lv/empathy/accounts-window.page +share/help/lv/empathy/add-account.page +share/help/lv/empathy/add-contact.page +share/help/lv/empathy/audio-call.page +share/help/lv/empathy/audio-video.page +share/help/lv/empathy/change-status.page +share/help/lv/empathy/create-account.page +share/help/lv/empathy/disable-account.page +share/help/lv/empathy/favorite-rooms.page +share/help/lv/empathy/geolocation-not-showing.page +share/help/lv/empathy/geolocation-privacy.page +share/help/lv/empathy/geolocation-supported.page +share/help/lv/empathy/geolocation-turn.page +share/help/lv/empathy/geolocation-what-is.page +share/help/lv/empathy/geolocation.page +share/help/lv/empathy/group-conversations.page +share/help/lv/empathy/hide-contacts.page +share/help/lv/empathy/import-account.page +share/help/lv/empathy/index.page +share/help/lv/empathy/introduction.page +share/help/lv/empathy/irc-commands.page +share/help/lv/empathy/irc-join-pwd.page +share/help/lv/empathy/irc-join-room.page +share/help/lv/empathy/irc-manage.page +share/help/lv/empathy/irc-nick-password.page +share/help/lv/empathy/irc-send-file.page +share/help/lv/empathy/irc-start-conversation.page +share/help/lv/empathy/license.page +share/help/lv/empathy/link-contacts.page +share/help/lv/empathy/overview.page +share/help/lv/empathy/prev-conv.page +share/help/lv/empathy/prob-conn-acctdisabled.page +share/help/lv/empathy/prob-conn-auth.page +share/help/lv/empathy/prob-conn-name.page +share/help/lv/empathy/prob-conn-neterror.page +share/help/lv/empathy/prob-conn.page +share/help/lv/empathy/remove-account.page +share/help/lv/empathy/salut-protocol.page +share/help/lv/empathy/send-file.page +share/help/lv/empathy/send-message.page +share/help/lv/empathy/set-custom-status.page +share/help/lv/empathy/share-desktop.page +share/help/lv/empathy/status-icons.page +share/help/lv/empathy/video-call.page +share/help/lv/empathy/figures/available.png +share/help/lv/empathy/figures/away.png +share/help/lv/empathy/figures/busy.png +share/help/lv/empathy/figures/conf_overview.png +share/help/lv/empathy/figures/croom_overview.png +share/help/lv/empathy/figures/empathy-logo.png +share/help/lv/empathy/figures/empathy-main-window.png +share/help/lv/empathy/figures/gtk-add.png +share/help/lv/empathy/figures/gtk-edit.png +share/help/lv/empathy/figures/gtk-remove.png +share/help/lv/empathy/figures/offline.png +share/help/lv/empathy/figures/video_overview.png +share/help/pl/empathy/account-irc.page +share/help/pl/empathy/account-jabber.page +share/help/pl/empathy/accounts-window.page +share/help/pl/empathy/add-account.page +share/help/pl/empathy/add-contact.page +share/help/pl/empathy/audio-call.page +share/help/pl/empathy/audio-video.page +share/help/pl/empathy/change-status.page +share/help/pl/empathy/create-account.page +share/help/pl/empathy/disable-account.page +share/help/pl/empathy/favorite-rooms.page +share/help/pl/empathy/geolocation-not-showing.page +share/help/pl/empathy/geolocation-privacy.page +share/help/pl/empathy/geolocation-supported.page +share/help/pl/empathy/geolocation-turn.page +share/help/pl/empathy/geolocation-what-is.page +share/help/pl/empathy/geolocation.page +share/help/pl/empathy/group-conversations.page +share/help/pl/empathy/hide-contacts.page +share/help/pl/empathy/import-account.page +share/help/pl/empathy/index.page +share/help/pl/empathy/introduction.page +share/help/pl/empathy/irc-commands.page +share/help/pl/empathy/irc-join-pwd.page +share/help/pl/empathy/irc-join-room.page +share/help/pl/empathy/irc-manage.page +share/help/pl/empathy/irc-nick-password.page +share/help/pl/empathy/irc-send-file.page +share/help/pl/empathy/irc-start-conversation.page +share/help/pl/empathy/license.page +share/help/pl/empathy/link-contacts.page +share/help/pl/empathy/overview.page +share/help/pl/empathy/prev-conv.page +share/help/pl/empathy/prob-conn-acctdisabled.page +share/help/pl/empathy/prob-conn-auth.page +share/help/pl/empathy/prob-conn-name.page +share/help/pl/empathy/prob-conn-neterror.page +share/help/pl/empathy/prob-conn.page +share/help/pl/empathy/remove-account.page +share/help/pl/empathy/salut-protocol.page +share/help/pl/empathy/send-file.page +share/help/pl/empathy/send-message.page +share/help/pl/empathy/set-custom-status.page +share/help/pl/empathy/share-desktop.page +share/help/pl/empathy/status-icons.page +share/help/pl/empathy/video-call.page +share/help/pl/empathy/figures/available.png +share/help/pl/empathy/figures/away.png +share/help/pl/empathy/figures/busy.png +share/help/pl/empathy/figures/conf_overview.png +share/help/pl/empathy/figures/croom_overview.png +share/help/pl/empathy/figures/empathy-logo.png +share/help/pl/empathy/figures/empathy-main-window.png +share/help/pl/empathy/figures/gtk-add.png +share/help/pl/empathy/figures/gtk-edit.png +share/help/pl/empathy/figures/gtk-remove.png +share/help/pl/empathy/figures/offline.png +share/help/pl/empathy/figures/video_overview.png +share/help/pt_BR/empathy/account-irc.page +share/help/pt_BR/empathy/account-jabber.page +share/help/pt_BR/empathy/accounts-window.page +share/help/pt_BR/empathy/add-account.page +share/help/pt_BR/empathy/add-contact.page +share/help/pt_BR/empathy/audio-call.page +share/help/pt_BR/empathy/audio-video.page +share/help/pt_BR/empathy/change-status.page +share/help/pt_BR/empathy/create-account.page +share/help/pt_BR/empathy/disable-account.page +share/help/pt_BR/empathy/favorite-rooms.page +share/help/pt_BR/empathy/geolocation-not-showing.page +share/help/pt_BR/empathy/geolocation-privacy.page +share/help/pt_BR/empathy/geolocation-supported.page +share/help/pt_BR/empathy/geolocation-turn.page +share/help/pt_BR/empathy/geolocation-what-is.page +share/help/pt_BR/empathy/geolocation.page +share/help/pt_BR/empathy/group-conversations.page +share/help/pt_BR/empathy/hide-contacts.page +share/help/pt_BR/empathy/import-account.page +share/help/pt_BR/empathy/index.page +share/help/pt_BR/empathy/introduction.page +share/help/pt_BR/empathy/irc-commands.page +share/help/pt_BR/empathy/irc-join-pwd.page +share/help/pt_BR/empathy/irc-join-room.page +share/help/pt_BR/empathy/irc-manage.page +share/help/pt_BR/empathy/irc-nick-password.page +share/help/pt_BR/empathy/irc-send-file.page +share/help/pt_BR/empathy/irc-start-conversation.page +share/help/pt_BR/empathy/license.page +share/help/pt_BR/empathy/link-contacts.page +share/help/pt_BR/empathy/overview.page +share/help/pt_BR/empathy/prev-conv.page +share/help/pt_BR/empathy/prob-conn-acctdisabled.page +share/help/pt_BR/empathy/prob-conn-auth.page +share/help/pt_BR/empathy/prob-conn-name.page +share/help/pt_BR/empathy/prob-conn-neterror.page +share/help/pt_BR/empathy/prob-conn.page +share/help/pt_BR/empathy/remove-account.page +share/help/pt_BR/empathy/salut-protocol.page +share/help/pt_BR/empathy/send-file.page +share/help/pt_BR/empathy/send-message.page +share/help/pt_BR/empathy/set-custom-status.page +share/help/pt_BR/empathy/share-desktop.page +share/help/pt_BR/empathy/status-icons.page +share/help/pt_BR/empathy/video-call.page +share/help/pt_BR/empathy/figures/available.png +share/help/pt_BR/empathy/figures/away.png +share/help/pt_BR/empathy/figures/busy.png +share/help/pt_BR/empathy/figures/conf_overview.png +share/help/pt_BR/empathy/figures/croom_overview.png +share/help/pt_BR/empathy/figures/empathy-logo.png +share/help/pt_BR/empathy/figures/empathy-main-window.png +share/help/pt_BR/empathy/figures/gtk-add.png +share/help/pt_BR/empathy/figures/gtk-edit.png +share/help/pt_BR/empathy/figures/gtk-remove.png +share/help/pt_BR/empathy/figures/offline.png +share/help/pt_BR/empathy/figures/video_overview.png +share/help/ru/empathy/account-irc.page +share/help/ru/empathy/account-jabber.page +share/help/ru/empathy/accounts-window.page +share/help/ru/empathy/add-account.page +share/help/ru/empathy/add-contact.page +share/help/ru/empathy/audio-call.page +share/help/ru/empathy/audio-video.page +share/help/ru/empathy/change-status.page +share/help/ru/empathy/create-account.page +share/help/ru/empathy/disable-account.page +share/help/ru/empathy/favorite-rooms.page +share/help/ru/empathy/geolocation-not-showing.page +share/help/ru/empathy/geolocation-privacy.page +share/help/ru/empathy/geolocation-supported.page +share/help/ru/empathy/geolocation-turn.page +share/help/ru/empathy/geolocation-what-is.page +share/help/ru/empathy/geolocation.page +share/help/ru/empathy/group-conversations.page +share/help/ru/empathy/hide-contacts.page +share/help/ru/empathy/import-account.page +share/help/ru/empathy/index.page +share/help/ru/empathy/introduction.page +share/help/ru/empathy/irc-commands.page +share/help/ru/empathy/irc-join-pwd.page +share/help/ru/empathy/irc-join-room.page +share/help/ru/empathy/irc-manage.page +share/help/ru/empathy/irc-nick-password.page +share/help/ru/empathy/irc-send-file.page +share/help/ru/empathy/irc-start-conversation.page +share/help/ru/empathy/license.page +share/help/ru/empathy/link-contacts.page +share/help/ru/empathy/overview.page +share/help/ru/empathy/prev-conv.page +share/help/ru/empathy/prob-conn-acctdisabled.page +share/help/ru/empathy/prob-conn-auth.page +share/help/ru/empathy/prob-conn-name.page +share/help/ru/empathy/prob-conn-neterror.page +share/help/ru/empathy/prob-conn.page +share/help/ru/empathy/remove-account.page +share/help/ru/empathy/salut-protocol.page +share/help/ru/empathy/send-file.page +share/help/ru/empathy/send-message.page +share/help/ru/empathy/set-custom-status.page +share/help/ru/empathy/share-desktop.page +share/help/ru/empathy/status-icons.page +share/help/ru/empathy/video-call.page +share/help/ru/empathy/figures/available.png +share/help/ru/empathy/figures/away.png +share/help/ru/empathy/figures/busy.png +share/help/ru/empathy/figures/conf_overview.png +share/help/ru/empathy/figures/croom_overview.png +share/help/ru/empathy/figures/empathy-logo.png +share/help/ru/empathy/figures/empathy-main-window.png +share/help/ru/empathy/figures/gtk-add.png +share/help/ru/empathy/figures/gtk-edit.png +share/help/ru/empathy/figures/gtk-remove.png +share/help/ru/empathy/figures/offline.png +share/help/ru/empathy/figures/video_overview.png +share/help/sl/empathy/account-irc.page +share/help/sl/empathy/account-jabber.page +share/help/sl/empathy/accounts-window.page +share/help/sl/empathy/add-account.page +share/help/sl/empathy/add-contact.page +share/help/sl/empathy/audio-call.page +share/help/sl/empathy/audio-video.page +share/help/sl/empathy/change-status.page +share/help/sl/empathy/create-account.page +share/help/sl/empathy/disable-account.page +share/help/sl/empathy/favorite-rooms.page +share/help/sl/empathy/geolocation-not-showing.page +share/help/sl/empathy/geolocation-privacy.page +share/help/sl/empathy/geolocation-supported.page +share/help/sl/empathy/geolocation-turn.page +share/help/sl/empathy/geolocation-what-is.page +share/help/sl/empathy/geolocation.page +share/help/sl/empathy/group-conversations.page +share/help/sl/empathy/hide-contacts.page +share/help/sl/empathy/import-account.page +share/help/sl/empathy/index.page +share/help/sl/empathy/introduction.page +share/help/sl/empathy/irc-commands.page +share/help/sl/empathy/irc-join-pwd.page +share/help/sl/empathy/irc-join-room.page +share/help/sl/empathy/irc-manage.page +share/help/sl/empathy/irc-nick-password.page +share/help/sl/empathy/irc-send-file.page +share/help/sl/empathy/irc-start-conversation.page +share/help/sl/empathy/license.page +share/help/sl/empathy/link-contacts.page +share/help/sl/empathy/overview.page +share/help/sl/empathy/prev-conv.page +share/help/sl/empathy/prob-conn-acctdisabled.page +share/help/sl/empathy/prob-conn-auth.page +share/help/sl/empathy/prob-conn-name.page +share/help/sl/empathy/prob-conn-neterror.page +share/help/sl/empathy/prob-conn.page +share/help/sl/empathy/remove-account.page +share/help/sl/empathy/salut-protocol.page +share/help/sl/empathy/send-file.page +share/help/sl/empathy/send-message.page +share/help/sl/empathy/set-custom-status.page +share/help/sl/empathy/share-desktop.page +share/help/sl/empathy/status-icons.page +share/help/sl/empathy/video-call.page +share/help/sl/empathy/figures/available.png +share/help/sl/empathy/figures/away.png +share/help/sl/empathy/figures/busy.png +share/help/sl/empathy/figures/conf_overview.png +share/help/sl/empathy/figures/croom_overview.png +share/help/sl/empathy/figures/empathy-logo.png +share/help/sl/empathy/figures/empathy-main-window.png +share/help/sl/empathy/figures/gtk-add.png +share/help/sl/empathy/figures/gtk-edit.png +share/help/sl/empathy/figures/gtk-remove.png +share/help/sl/empathy/figures/offline.png +share/help/sl/empathy/figures/video_overview.png +share/help/sv/empathy/account-irc.page +share/help/sv/empathy/account-jabber.page +share/help/sv/empathy/accounts-window.page +share/help/sv/empathy/add-account.page +share/help/sv/empathy/add-contact.page +share/help/sv/empathy/audio-call.page +share/help/sv/empathy/audio-video.page +share/help/sv/empathy/change-status.page +share/help/sv/empathy/create-account.page +share/help/sv/empathy/disable-account.page +share/help/sv/empathy/favorite-rooms.page +share/help/sv/empathy/geolocation-not-showing.page +share/help/sv/empathy/geolocation-privacy.page +share/help/sv/empathy/geolocation-supported.page +share/help/sv/empathy/geolocation-turn.page +share/help/sv/empathy/geolocation-what-is.page +share/help/sv/empathy/geolocation.page +share/help/sv/empathy/group-conversations.page +share/help/sv/empathy/hide-contacts.page +share/help/sv/empathy/import-account.page +share/help/sv/empathy/index.page +share/help/sv/empathy/introduction.page +share/help/sv/empathy/irc-commands.page +share/help/sv/empathy/irc-join-pwd.page +share/help/sv/empathy/irc-join-room.page +share/help/sv/empathy/irc-manage.page +share/help/sv/empathy/irc-nick-password.page +share/help/sv/empathy/irc-send-file.page +share/help/sv/empathy/irc-start-conversation.page +share/help/sv/empathy/license.page +share/help/sv/empathy/link-contacts.page +share/help/sv/empathy/overview.page +share/help/sv/empathy/prev-conv.page +share/help/sv/empathy/prob-conn-acctdisabled.page +share/help/sv/empathy/prob-conn-auth.page +share/help/sv/empathy/prob-conn-name.page +share/help/sv/empathy/prob-conn-neterror.page +share/help/sv/empathy/prob-conn.page +share/help/sv/empathy/remove-account.page +share/help/sv/empathy/salut-protocol.page +share/help/sv/empathy/send-file.page +share/help/sv/empathy/send-message.page +share/help/sv/empathy/set-custom-status.page +share/help/sv/empathy/share-desktop.page +share/help/sv/empathy/status-icons.page +share/help/sv/empathy/video-call.page +share/help/sv/empathy/figures/available.png +share/help/sv/empathy/figures/away.png +share/help/sv/empathy/figures/busy.png +share/help/sv/empathy/figures/conf_overview.png +share/help/sv/empathy/figures/croom_overview.png +share/help/sv/empathy/figures/empathy-logo.png +share/help/sv/empathy/figures/empathy-main-window.png +share/help/sv/empathy/figures/gtk-add.png +share/help/sv/empathy/figures/gtk-edit.png +share/help/sv/empathy/figures/gtk-remove.png +share/help/sv/empathy/figures/offline.png +share/help/sv/empathy/figures/video_overview.png +share/help/te/empathy/account-irc.page +share/help/te/empathy/account-jabber.page +share/help/te/empathy/accounts-window.page +share/help/te/empathy/add-account.page +share/help/te/empathy/add-contact.page +share/help/te/empathy/audio-call.page +share/help/te/empathy/audio-video.page +share/help/te/empathy/change-status.page +share/help/te/empathy/create-account.page +share/help/te/empathy/disable-account.page +share/help/te/empathy/favorite-rooms.page +share/help/te/empathy/geolocation-not-showing.page +share/help/te/empathy/geolocation-privacy.page +share/help/te/empathy/geolocation-supported.page +share/help/te/empathy/geolocation-turn.page +share/help/te/empathy/geolocation-what-is.page +share/help/te/empathy/geolocation.page +share/help/te/empathy/group-conversations.page +share/help/te/empathy/hide-contacts.page +share/help/te/empathy/import-account.page +share/help/te/empathy/index.page +share/help/te/empathy/introduction.page +share/help/te/empathy/irc-commands.page +share/help/te/empathy/irc-join-pwd.page +share/help/te/empathy/irc-join-room.page +share/help/te/empathy/irc-manage.page +share/help/te/empathy/irc-nick-password.page +share/help/te/empathy/irc-send-file.page +share/help/te/empathy/irc-start-conversation.page +share/help/te/empathy/license.page +share/help/te/empathy/link-contacts.page +share/help/te/empathy/overview.page +share/help/te/empathy/prev-conv.page +share/help/te/empathy/prob-conn-acctdisabled.page +share/help/te/empathy/prob-conn-auth.page +share/help/te/empathy/prob-conn-name.page +share/help/te/empathy/prob-conn-neterror.page +share/help/te/empathy/prob-conn.page +share/help/te/empathy/remove-account.page +share/help/te/empathy/salut-protocol.page +share/help/te/empathy/send-file.page +share/help/te/empathy/send-message.page +share/help/te/empathy/set-custom-status.page +share/help/te/empathy/share-desktop.page +share/help/te/empathy/status-icons.page +share/help/te/empathy/video-call.page +share/help/te/empathy/figures/available.png +share/help/te/empathy/figures/away.png +share/help/te/empathy/figures/busy.png +share/help/te/empathy/figures/conf_overview.png +share/help/te/empathy/figures/croom_overview.png +share/help/te/empathy/figures/empathy-logo.png +share/help/te/empathy/figures/empathy-main-window.png +share/help/te/empathy/figures/gtk-add.png +share/help/te/empathy/figures/gtk-edit.png +share/help/te/empathy/figures/gtk-remove.png +share/help/te/empathy/figures/offline.png +share/help/te/empathy/figures/video_overview.png +share/help/zh_CN/empathy/account-irc.page +share/help/zh_CN/empathy/account-jabber.page +share/help/zh_CN/empathy/accounts-window.page +share/help/zh_CN/empathy/add-account.page +share/help/zh_CN/empathy/add-contact.page +share/help/zh_CN/empathy/audio-call.page +share/help/zh_CN/empathy/audio-video.page +share/help/zh_CN/empathy/change-status.page +share/help/zh_CN/empathy/create-account.page +share/help/zh_CN/empathy/disable-account.page +share/help/zh_CN/empathy/favorite-rooms.page +share/help/zh_CN/empathy/geolocation-not-showing.page +share/help/zh_CN/empathy/geolocation-privacy.page +share/help/zh_CN/empathy/geolocation-supported.page +share/help/zh_CN/empathy/geolocation-turn.page +share/help/zh_CN/empathy/geolocation-what-is.page +share/help/zh_CN/empathy/geolocation.page +share/help/zh_CN/empathy/group-conversations.page +share/help/zh_CN/empathy/hide-contacts.page +share/help/zh_CN/empathy/import-account.page +share/help/zh_CN/empathy/index.page +share/help/zh_CN/empathy/introduction.page +share/help/zh_CN/empathy/irc-commands.page +share/help/zh_CN/empathy/irc-join-pwd.page +share/help/zh_CN/empathy/irc-join-room.page +share/help/zh_CN/empathy/irc-manage.page +share/help/zh_CN/empathy/irc-nick-password.page +share/help/zh_CN/empathy/irc-send-file.page +share/help/zh_CN/empathy/irc-start-conversation.page +share/help/zh_CN/empathy/license.page +share/help/zh_CN/empathy/link-contacts.page +share/help/zh_CN/empathy/overview.page +share/help/zh_CN/empathy/prev-conv.page +share/help/zh_CN/empathy/prob-conn-acctdisabled.page +share/help/zh_CN/empathy/prob-conn-auth.page +share/help/zh_CN/empathy/prob-conn-name.page +share/help/zh_CN/empathy/prob-conn-neterror.page +share/help/zh_CN/empathy/prob-conn.page +share/help/zh_CN/empathy/remove-account.page +share/help/zh_CN/empathy/salut-protocol.page +share/help/zh_CN/empathy/send-file.page +share/help/zh_CN/empathy/send-message.page +share/help/zh_CN/empathy/set-custom-status.page +share/help/zh_CN/empathy/share-desktop.page +share/help/zh_CN/empathy/status-icons.page +share/help/zh_CN/empathy/video-call.page +share/help/zh_CN/empathy/figures/available.png +share/help/zh_CN/empathy/figures/away.png +share/help/zh_CN/empathy/figures/busy.png +share/help/zh_CN/empathy/figures/conf_overview.png +share/help/zh_CN/empathy/figures/croom_overview.png +share/help/zh_CN/empathy/figures/empathy-logo.png +share/help/zh_CN/empathy/figures/empathy-main-window.png +share/help/zh_CN/empathy/figures/gtk-add.png +share/help/zh_CN/empathy/figures/gtk-edit.png +share/help/zh_CN/empathy/figures/gtk-remove.png +share/help/zh_CN/empathy/figures/offline.png +share/help/zh_CN/empathy/figures/video_overview.png share/icons/hicolor/16x16/apps/empathy.png share/icons/hicolor/22x22/apps/empathy.png share/icons/hicolor/24x24/apps/empathy.png share/icons/hicolor/256x256/apps/empathy.png share/icons/hicolor/32x32/apps/empathy.png share/icons/hicolor/48x48/apps/empathy.png -share/icons/hicolor/scalable/apps/empathy.svg -share/locale/an/LC_MESSAGES/empathy.mo -share/locale/ar/LC_MESSAGES/empathy.mo -share/locale/as/LC_MESSAGES/empathy.mo -share/locale/ast/LC_MESSAGES/empathy.mo -share/locale/az/LC_MESSAGES/empathy.mo -share/locale/be/LC_MESSAGES/empathy.mo -share/locale/be@latin/LC_MESSAGES/empathy.mo -share/locale/bg/LC_MESSAGES/empathy.mo -share/locale/bn/LC_MESSAGES/empathy.mo -share/locale/bn_IN/LC_MESSAGES/empathy.mo -share/locale/br/LC_MESSAGES/empathy.mo -share/locale/ca/LC_MESSAGES/empathy.mo -share/locale/ca@valencia/LC_MESSAGES/empathy.mo -share/locale/crh/LC_MESSAGES/empathy.mo -share/locale/cs/LC_MESSAGES/empathy.mo -share/locale/cy/LC_MESSAGES/empathy.mo -share/locale/da/LC_MESSAGES/empathy.mo -share/locale/de/LC_MESSAGES/empathy.mo -share/locale/dz/LC_MESSAGES/empathy.mo -share/locale/el/LC_MESSAGES/empathy.mo -share/locale/en@shaw/LC_MESSAGES/empathy.mo -share/locale/en_CA/LC_MESSAGES/empathy.mo -share/locale/en_GB/LC_MESSAGES/empathy.mo -share/locale/eo/LC_MESSAGES/empathy.mo -share/locale/es/LC_MESSAGES/empathy.mo -share/locale/et/LC_MESSAGES/empathy.mo -share/locale/eu/LC_MESSAGES/empathy.mo -share/locale/fi/LC_MESSAGES/empathy.mo -share/locale/fr/LC_MESSAGES/empathy.mo -share/locale/ga/LC_MESSAGES/empathy.mo -share/locale/gl/LC_MESSAGES/empathy.mo -share/locale/gu/LC_MESSAGES/empathy.mo -share/locale/he/LC_MESSAGES/empathy.mo -share/locale/hi/LC_MESSAGES/empathy.mo -share/locale/hr/LC_MESSAGES/empathy.mo -share/locale/hu/LC_MESSAGES/empathy.mo -share/locale/id/LC_MESSAGES/empathy.mo -share/locale/it/LC_MESSAGES/empathy.mo -share/locale/ja/LC_MESSAGES/empathy.mo -share/locale/kk/LC_MESSAGES/empathy.mo -share/locale/kn/LC_MESSAGES/empathy.mo -share/locale/ko/LC_MESSAGES/empathy.mo -share/locale/ku/LC_MESSAGES/empathy.mo -share/locale/lt/LC_MESSAGES/empathy.mo -share/locale/lv/LC_MESSAGES/empathy.mo -share/locale/mai/LC_MESSAGES/empathy.mo -share/locale/mk/LC_MESSAGES/empathy.mo -share/locale/ml/LC_MESSAGES/empathy.mo -share/locale/mr/LC_MESSAGES/empathy.mo -share/locale/ms/LC_MESSAGES/empathy.mo -share/locale/nb/LC_MESSAGES/empathy.mo -share/locale/ne/LC_MESSAGES/empathy.mo -share/locale/nl/LC_MESSAGES/empathy.mo -share/locale/nn/LC_MESSAGES/empathy.mo -share/locale/oc/LC_MESSAGES/empathy.mo -share/locale/or/LC_MESSAGES/empathy.mo -share/locale/pa/LC_MESSAGES/empathy.mo -share/locale/pl/LC_MESSAGES/empathy.mo -share/locale/ps/LC_MESSAGES/empathy.mo -share/locale/pt/LC_MESSAGES/empathy.mo -share/locale/pt_BR/LC_MESSAGES/empathy.mo -share/locale/ro/LC_MESSAGES/empathy.mo -share/locale/ru/LC_MESSAGES/empathy.mo -share/locale/si/LC_MESSAGES/empathy.mo -share/locale/sl/LC_MESSAGES/empathy.mo -share/locale/sq/LC_MESSAGES/empathy.mo -share/locale/sr/LC_MESSAGES/empathy.mo -share/locale/sr@latin/LC_MESSAGES/empathy.mo -share/locale/sv/LC_MESSAGES/empathy.mo -share/locale/ta/LC_MESSAGES/empathy.mo -share/locale/te/LC_MESSAGES/empathy.mo -share/locale/th/LC_MESSAGES/empathy.mo -share/locale/tr/LC_MESSAGES/empathy.mo -share/locale/uk/LC_MESSAGES/empathy.mo -share/locale/vi/LC_MESSAGES/empathy.mo -share/locale/zh_CN/LC_MESSAGES/empathy.mo -share/locale/zh_HK/LC_MESSAGES/empathy.mo -share/locale/zh_TW/LC_MESSAGES/empathy.mo -share/telepathy/clients/Empathy.AudioVideo.client share/telepathy/clients/Empathy.Auth.client share/telepathy/clients/Empathy.Call.client -share/telepathy/clients/Empathy.client -@dirrmtry share/telepathy/clients -@dirrmtry share/telepathy -@dirrm share/gnome/help/empathy/zh_CN/figures -@dirrm share/gnome/help/empathy/zh_CN -@dirrm share/gnome/help/empathy/sv/figures -@dirrm share/gnome/help/empathy/sv -@dirrm share/gnome/help/empathy/ru/figures -@dirrm share/gnome/help/empathy/ru -@dirrm share/gnome/help/empathy/it/figures -@dirrm share/gnome/help/empathy/it -@dirrm share/gnome/help/empathy/hu/figures -@dirrm share/gnome/help/empathy/hu -@dirrm share/gnome/help/empathy/gl/figures -@dirrm share/gnome/help/empathy/gl -@dirrm share/gnome/help/empathy/fr/figures -@dirrm share/gnome/help/empathy/fr -@dirrm share/gnome/help/empathy/fi/figures -@dirrm share/gnome/help/empathy/fi -@dirrm share/gnome/help/empathy/es/figures -@dirrm share/gnome/help/empathy/es -@dirrm share/gnome/help/empathy/en_GB/figures -@dirrm share/gnome/help/empathy/en_GB -@dirrm share/gnome/help/empathy/el/figures -@dirrm share/gnome/help/empathy/el -@dirrm share/gnome/help/empathy/de/figures -@dirrm share/gnome/help/empathy/de -@dirrm share/gnome/help/empathy/cs/figures -@dirrm share/gnome/help/empathy/cs -@dirrm share/gnome/help/empathy/ca/figures -@dirrm share/gnome/help/empathy/ca -@dirrm share/gnome/help/empathy/C/figures -@dirrm share/gnome/help/empathy/C -@dirrm share/gnome/help/empathy -@dirrm %%DATADIR%%/icons/hicolor/scalable/status -@dirrm %%DATADIR%%/icons/hicolor/scalable/apps -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/48x48/status -@dirrm %%DATADIR%%/icons/hicolor/48x48/apps -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/32x32/status -@dirrm %%DATADIR%%/icons/hicolor/32x32/apps -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/status -@dirrm %%DATADIR%%/icons/hicolor/24x24/apps -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/status -@dirrm %%DATADIR%%/icons/hicolor/22x22/apps -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16/apps -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/an/LC_MESSAGES -@dirrmtry share/locale/an +share/telepathy/clients/Empathy.Chat.client +share/telepathy/clients/Empathy.FileTransfer.client diff --git a/net-im/farsight2/Makefile b/net-im/farsight2/Makefile index c3686eeadb8f..8f29f2f81aef 100644 --- a/net-im/farsight2/Makefile +++ b/net-im/farsight2/Makefile @@ -1,10 +1,10 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/farsight2/Makefile,v 1.10 2012/06/13 09:31:14 kwm Exp $ +# $MCom: ports/trunk/net-im/farsight2/Makefile 19804 2014-08-13 14:55:11Z kwm $ PORTNAME= farsight2 PORTVERSION= 0.0.31 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im devel MASTER_SITES= http://www.freedesktop.org/software/farstream/releases/farsight2/ \ http://miwibox.org/distfiles/ @@ -13,10 +13,9 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= Collection of GStreamer modules and libraries for videoconferencing LIB_DEPENDS= libnice.so:${PORTSDIR}/net-im/libnice +RUN_DEPENDS= libnice-gst010>=0:${PORTSDIR}/net-im/libnice-gst010 -CONFLICTS= farstream-[0-9]* - -USES= gettext gmake libtool pathfix pkgconfig python +USES= gettext libtool gmake pathfix pkgconfig python USE_LDCONFIG= yes USE_GNOME= glib20 USE_GSTREAMER= core good bad python diff --git a/net-im/farsight2/pkg-plist b/net-im/farsight2/pkg-plist index c7f072b1149b..c6045f3adf4b 100644 --- a/net-im/farsight2/pkg-plist +++ b/net-im/farsight2/pkg-plist @@ -109,12 +109,3 @@ share/gtk-doc/html/farsight2-plugins-0.10/pt03.html share/gtk-doc/html/farsight2-plugins-0.10/right.png share/gtk-doc/html/farsight2-plugins-0.10/style.css share/gtk-doc/html/farsight2-plugins-0.10/up.png -@dirrm share/gtk-doc/html/farsight2-plugins-0.10 -@dirrm share/gtk-doc/html/farsight2-libs-0.10 -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -@dirrm share/farsight2/0.0/fsrtpconference -@dirrm share/farsight2/0.0 -@dirrm share/farsight2 -@dirrm lib/farsight2-0.0 -@dirrm include/gstreamer-0.10/gst/farsight diff --git a/net-im/farstream/Makefile b/net-im/farstream/Makefile new file mode 100644 index 000000000000..9323cd7160c0 --- /dev/null +++ b/net-im/farstream/Makefile @@ -0,0 +1,26 @@ +# Created by: Joe Marcus Clarke <marcus@FreeBSD.org> +# $FreeBSD$ +# $MCom: ports/trunk/net-im/farstream/Makefile 19804 2014-08-13 14:55:11Z kwm $ + +PORTNAME= farstream +PORTVERSION= 0.2.4 +CATEGORIES= net-im devel +MASTER_SITES= http://freedesktop.org/software/farstream/releases/farstream/ + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Collection of GStreamer modules and libraries for videoconferencing + +LIB_DEPENDS= libnice.so:${PORTSDIR}/net-im/libnice +RUN_DEPENDS= libnice-gst1>=0:${PORTSDIR}/net-im/libnice-gst1 + +USE_LDCONFIG= yes +USES= gettext libtool gmake pathfix pkgconfig python +USE_GNOME= glib20 introspection:build +USE_GSTREAMER1= good bad +GNU_CONFIGURE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip + +.include <bsd.port.mk> diff --git a/net-im/farstream/distinfo b/net-im/farstream/distinfo new file mode 100644 index 000000000000..ad426b38abeb --- /dev/null +++ b/net-im/farstream/distinfo @@ -0,0 +1,2 @@ +SHA256 (farstream-0.2.4.tar.gz) = 120d5b5cd79fcbe19d9e046526fc4bc059e0a3733b3de2d7e5299dc5a3a7bb30 +SIZE (farstream-0.2.4.tar.gz) = 1274905 diff --git a/net-im/farstream/pkg-descr b/net-im/farstream/pkg-descr new file mode 100644 index 000000000000..c1f8083c27c1 --- /dev/null +++ b/net-im/farstream/pkg-descr @@ -0,0 +1,7 @@ +The Farstream (formerly Farsight) project is an effort to create a framework +to deal with all known audio/video conferencing protocols. On one side it +offers a generic API that makes it possible to write plugins for different +streaming protocols, on the other side it offers an API for clients to use +those plugins. + +WWW: http://www.freedesktop.org/wiki/Software/Farstream diff --git a/net-im/farstream/pkg-plist b/net-im/farstream/pkg-plist new file mode 100644 index 000000000000..e7126aa876a3 --- /dev/null +++ b/net-im/farstream/pkg-plist @@ -0,0 +1,91 @@ +include/farstream-0.2/farstream/fs-candidate.h +include/farstream-0.2/farstream/fs-codec.h +include/farstream-0.2/farstream/fs-conference.h +include/farstream-0.2/farstream/fs-element-added-notifier.h +include/farstream-0.2/farstream/fs-enumtypes.h +include/farstream-0.2/farstream/fs-participant.h +include/farstream-0.2/farstream/fs-plugin.h +include/farstream-0.2/farstream/fs-rtp.h +include/farstream-0.2/farstream/fs-session.h +include/farstream-0.2/farstream/fs-stream-transmitter.h +include/farstream-0.2/farstream/fs-stream.h +include/farstream-0.2/farstream/fs-transmitter.h +include/farstream-0.2/farstream/fs-utils.h +lib/farstream-0.2/libmulticast-transmitter.so +lib/farstream-0.2/libnice-transmitter.so +lib/farstream-0.2/librawudp-transmitter.so +lib/farstream-0.2/libshm-transmitter.so +lib/girepository-1.0/Farstream-0.2.typelib +lib/gstreamer-1.0/libfsmsnconference.so +lib/gstreamer-1.0/libfsrawconference.so +lib/gstreamer-1.0/libfsrtcpfilter.so +lib/gstreamer-1.0/libfsrtpconference.so +lib/gstreamer-1.0/libfsvideoanyrate.so +lib/libfarstream-0.2.so +lib/libfarstream-0.2.so.2 +lib/libfarstream-0.2.so.2.1.1 +libdata/pkgconfig/farstream-0.2.pc +%%DATADIR%%/0.2/fsrawconference/default-element-properties +%%DATADIR%%/0.2/fsrtpconference/default-codec-preferences +%%DATADIR%%/0.2/fsrtpconference/default-element-properties +share/gir-1.0/Farstream-0.2.gir +share/gtk-doc/html/farstream-libs-0.2/FsConference.html +share/gtk-doc/html/farstream-libs-0.2/FsElementAddedNotifier.html +share/gtk-doc/html/farstream-libs-0.2/FsParticipant.html +share/gtk-doc/html/farstream-libs-0.2/FsSession.html +share/gtk-doc/html/farstream-libs-0.2/FsStream.html +share/gtk-doc/html/farstream-libs-0.2/FsStreamTransmitter.html +share/gtk-doc/html/farstream-libs-0.2/FsTransmitter.html +share/gtk-doc/html/farstream-libs-0.2/ch01.html +share/gtk-doc/html/farstream-libs-0.2/ch02.html +share/gtk-doc/html/farstream-libs-0.2/ch03.html +share/gtk-doc/html/farstream-libs-0.2/ch04.html +share/gtk-doc/html/farstream-libs-0.2/ch05.html +share/gtk-doc/html/farstream-libs-0.2/farstream-libs-0.2.devhelp2 +share/gtk-doc/html/farstream-libs-0.2/farstream-libs-FsCandidate.html +share/gtk-doc/html/farstream-libs-0.2/farstream-libs-FsCodec.html +share/gtk-doc/html/farstream-libs-0.2/farstream-libs-FsPlugin.html +share/gtk-doc/html/farstream-libs-0.2/farstream-libs-RTP-Specific-types.html +share/gtk-doc/html/farstream-libs-0.2/farstream-libs-Utility-functions.html +share/gtk-doc/html/farstream-libs-0.2/home.png +share/gtk-doc/html/farstream-libs-0.2/index.html +share/gtk-doc/html/farstream-libs-0.2/index.sgml +share/gtk-doc/html/farstream-libs-0.2/left.png +share/gtk-doc/html/farstream-libs-0.2/pt01.html +share/gtk-doc/html/farstream-libs-0.2/pt02.html +share/gtk-doc/html/farstream-libs-0.2/right.png +share/gtk-doc/html/farstream-libs-0.2/style.css +share/gtk-doc/html/farstream-libs-0.2/up.png +share/gtk-doc/html/farstream-plugins-0.2/FsMsnCamSendConference.html +share/gtk-doc/html/farstream-plugins-0.2/FsMsnConference.html +share/gtk-doc/html/farstream-plugins-0.2/FsMsnParticipant.html +share/gtk-doc/html/farstream-plugins-0.2/FsRawConference.html +share/gtk-doc/html/farstream-plugins-0.2/FsRtpConference.html +share/gtk-doc/html/farstream-plugins-0.2/FsRtpParticipant.html +share/gtk-doc/html/farstream-plugins-0.2/FsRtpSession.html +share/gtk-doc/html/farstream-plugins-0.2/FsRtpStream.html +share/gtk-doc/html/farstream-plugins-0.2/GstVideoanyrate.html +share/gtk-doc/html/farstream-plugins-0.2/ch01.html +share/gtk-doc/html/farstream-plugins-0.2/ch02.html +share/gtk-doc/html/farstream-plugins-0.2/ch03.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-0.2.devhelp2 +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsMsnCamCamRecvConference.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsMsnSession.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsMsnStream.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsMulticastStreamTransmitter.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsNiceStreamTransmitter.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsRawParticipant.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsRawSession.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsRawStream.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsRawUdpStreamTransmitter.html +share/gtk-doc/html/farstream-plugins-0.2/farstream-plugins-FsShmStreamTransmitter.html +share/gtk-doc/html/farstream-plugins-0.2/home.png +share/gtk-doc/html/farstream-plugins-0.2/index.html +share/gtk-doc/html/farstream-plugins-0.2/index.sgml +share/gtk-doc/html/farstream-plugins-0.2/left.png +share/gtk-doc/html/farstream-plugins-0.2/pt01.html +share/gtk-doc/html/farstream-plugins-0.2/pt02.html +share/gtk-doc/html/farstream-plugins-0.2/pt03.html +share/gtk-doc/html/farstream-plugins-0.2/right.png +share/gtk-doc/html/farstream-plugins-0.2/style.css +share/gtk-doc/html/farstream-plugins-0.2/up.png diff --git a/net-im/folks/Makefile b/net-im/folks/Makefile index ed5644900ccf..9ab0392074fc 100644 --- a/net-im/folks/Makefile +++ b/net-im/folks/Makefile @@ -1,46 +1,51 @@ # Created by: Koop Mast <kwm@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/folks/Makefile,v 1.29 2012/08/17 19:06:45 kwm Exp $ +# $MCom: ports/trunk/net-im/folks/Makefile 20031 2014-11-02 21:47:55Z kwm $ PORTNAME= folks -PORTVERSION= 0.7.0 +PORTVERSION= 0.10.0 CATEGORIES= net-im MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org COMMENT= library to aggregates people from multiple sources -BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala-vapigen \ - g-ir-scanner:${PORTSDIR}/devel/gobject-introspection -LIB_DEPENDS= libgee.so:${PORTSDIR}/devel/libgee06 \ +BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala +LIB_DEPENDS= libgee-0.8.so:${PORTSDIR}/devel/libgee \ + libgcr-3.so:${PORTSDIR}/security/gcr \ + libzeitgeist-1.0.so:${PORTSDIR}/sysutils/libzeitgeist \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib -IGNORE= Doesn't build currently, missing components CONFLICTS= folks-0.4.[0-9]* -USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -USE_GNOME= gnomehier gnomehack intlhack ltverhack evolutiondataserver3 -USES= gettext gmake tar:xz +USES= gettext libtool gmake pathfix pkgconfig tar:xz +USE_GNOME= evolutiondataserver3 intlhack \ + introspection:build GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS= --disable-bluez-backend +CPPFLAGS+= -I${LOCALBASE}/include -Wno-error=deprecated-declarations +LIBS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip -PLIST_SUB= LIBVER=25 VERSION=33 +GLIB_SCHEMAS= org.freedesktop.folks.gschema.xml -#OPTIONS= SOCIALWEB "Enable social web backend" on +PLIST_SUB= LIBVER=25 VERSION=42 LIBVERLONG=25.17.2 -#.include <bsd.port.options.mk> - -#.if defined(WITH_SOCIALWEB) -#LIB_DEPENDS+= socialweb.0:${PORTSDIR}/www/libsocialweb -#CONFIGURE_ARGS+=--enable-libsocialweb-backend=yes -#.else -CONFIGURE_ARGS+=--enable-libsocialweb-backend=no -#.endif +OPTIONS_SUB= yes +OPTIONS_DEFINE= SOCIALWEB TRACKER +OPTIONS_DEFAULT=SOCIALWEB TRACKER +SOCIALWEB_DESC= Social web backend +TRACKER_DESC= Tracker backend +SOCIALWEB_CONFIGURE_ENABLE= libsocialweb-backend +SOCIALWEB_LIB_DEPENDS= libsocialweb.so:${PORTSDIR}/www/libsocialweb +TRACKER_CONFIGURE_ENABLE= tracker-backend +TRACKER_LIB_DEPENDS= libtracker-control-1.0.so:${PORTSDIR}/sysutils/tracker post-patch: - @${REINPLACE_CMD} -e 's|^build_old_libs=yes|build_old_libs=no|g' \ - ${WRKDIR}/gnome-libtool +# @${REINPLACE_CMD} -e 's|TRACKER_SPARQL_MAJOR=0.16|TRACKER_SPARQL_MAJOR=1.0|g' \ +# ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|--fatal-warnings||g' \ + ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/net-im/folks/distinfo b/net-im/folks/distinfo index 65e986124ef7..d3dd7620cecc 100644 --- a/net-im/folks/distinfo +++ b/net-im/folks/distinfo @@ -1,2 +1,2 @@ -SHA256 (folks-0.7.0.tar.xz) = 861da1007e859e6bad43388a3bee56c31b3e9d003329086a5038fa6b19c6abf7 -SIZE (folks-0.7.0.tar.xz) = 1415856 +SHA256 (folks-0.10.0.tar.xz) = 66e76bb9d095b6c0ba41e37e791e11762c67fd36498511a65085d7a39b771cc2 +SIZE (folks-0.10.0.tar.xz) = 1868128 diff --git a/net-im/folks/files/patch-backends_eds_lib_edsf-persona-store.c b/net-im/folks/files/patch-backends_eds_lib_edsf-persona-store.c new file mode 100644 index 000000000000..0e7c00c084c7 --- /dev/null +++ b/net-im/folks/files/patch-backends_eds_lib_edsf-persona-store.c @@ -0,0 +1,27 @@ +--- backends/eds/lib/edsf-persona-store.c.orig 2014-06-22 23:29:00.567592303 +0000 ++++ backends/eds/lib/edsf-persona-store.c 2014-06-22 23:30:17.689586171 +0000 +@@ -10968,6 +10968,24 @@ + _edsf_persona_store_notify_if_default (self); + } + ++struct _FolksPersonaStorePrivate { ++ gchar* _display_name; ++ gchar* _id; ++ gboolean _is_writeable; ++ FolksPersonaStoreTrust _trust_level; ++ gboolean _is_primary_store; ++ gboolean _is_user_set_default; ++}; ++ ++void folks_persona_store_set_is_user_set_default (FolksPersonaStore* self, gboolean value); ++ ++void folks_persona_store_set_is_user_set_default (FolksPersonaStore* self, gboolean value) { ++ gboolean _tmp0_ = FALSE; ++ g_return_if_fail (self != NULL); ++ _tmp0_ = value; ++ self->priv->_is_user_set_default = _tmp0_; ++ g_object_notify ((GObject *) self, "is-user-set-default"); ++} + + static void _edsf_persona_store_notify_if_default (EdsfPersonaStore* self) { + gboolean is_default = FALSE; diff --git a/net-im/folks/pkg-plist b/net-im/folks/pkg-plist index 09989046be10..de92dbdae02a 100644 --- a/net-im/folks/pkg-plist +++ b/net-im/folks/pkg-plist @@ -1,51 +1,118 @@ bin/folks-import +bin/folks-inspect +%%SOCIALWEB%%include/folks/folks-libsocialweb.h +include/folks/folks-dummy.h include/folks/folks-eds.h include/folks/folks-telepathy.h +%%TRACKER%%include/folks/folks-tracker.h include/folks/folks.h -lib/folks/%%VERSION%%/backends/eds/eds.la +lib/folks/%%VERSION%%/backends/dummy/dummy.so lib/folks/%%VERSION%%/backends/eds/eds.so -lib/folks/%%VERSION%%/backends/key-file/key-file.la lib/folks/%%VERSION%%/backends/key-file/key-file.so -lib/folks/%%VERSION%%/backends/telepathy/telepathy.la +%%SOCIALWEB%%lib/folks/%%VERSION%%/backends/libsocialweb/libsocialweb.so +lib/folks/%%VERSION%%/backends/ofono/ofono.so lib/folks/%%VERSION%%/backends/telepathy/telepathy.so +%%TRACKER%%lib/folks/%%VERSION%%/backends/tracker/tracker.so lib/girepository-1.0/Folks-0.6.typelib -lib/libfolks-eds.la +lib/girepository-1.0/FolksDummy-0.6.typelib +lib/girepository-1.0/FolksEds-0.6.typelib +%%SOCIALWEB%%lib/girepository-1.0/FolksLibsocialweb-0.6.typelib +lib/girepository-1.0/FolksTelepathy-0.6.typelib +%%TRACKER%%lib/girepository-1.0/FolksTracker-0.6.typelib +lib/libfolks-dummy.so +lib/libfolks-dummy.so.%%LIBVER%% +lib/libfolks-dummy.so.%%LIBVERLONG%% lib/libfolks-eds.so lib/libfolks-eds.so.%%LIBVER%% -lib/libfolks-telepathy.la +lib/libfolks-eds.so.%%LIBVERLONG%% +%%SOCIALWEB%%lib/libfolks-libsocialweb.so +%%SOCIALWEB%%lib/libfolks-libsocialweb.so.%%LIBVER%% +%%SOCIALWEB%%lib/libfolks-libsocialweb.so.%%LIBVERLONG%% lib/libfolks-telepathy.so lib/libfolks-telepathy.so.%%LIBVER%% -lib/libfolks.la +lib/libfolks-telepathy.so.%%LIBVERLONG%% +%%TRACKER%%lib/libfolks-tracker.so +%%TRACKER%%lib/libfolks-tracker.so.%%LIBVER%% +%%TRACKER%%lib/libfolks-tracker.so.%%LIBVERLONG%% lib/libfolks.so lib/libfolks.so.%%LIBVER%% +lib/libfolks.so.%%LIBVERLONG%% +libdata/pkgconfig/folks-dummy.pc libdata/pkgconfig/folks-eds.pc +%%SOCIALWEB%%libdata/pkgconfig/folks-libsocialweb.pc libdata/pkgconfig/folks-telepathy.pc +%%TRACKER%%libdata/pkgconfig/folks-tracker.pc libdata/pkgconfig/folks.pc +share/GConf/gsettings/folks.convert share/gir-1.0/Folks-0.6.gir +share/gir-1.0/FolksDummy-0.6.gir +share/gir-1.0/FolksEds-0.6.gir +%%TRACKER%%share/gir-1.0/FolksTracker-0.6.gir +%%SOCIALWEB%%share/gir-1.0/FolksLibsocialweb-0.6.gir +share/gir-1.0/FolksTelepathy-0.6.gir +share/locale/ar/LC_MESSAGES/folks.mo +share/locale/as/LC_MESSAGES/folks.mo +share/locale/be/LC_MESSAGES/folks.mo +share/locale/bg/LC_MESSAGES/folks.mo +share/locale/bn_IN/LC_MESSAGES/folks.mo +share/locale/ca/LC_MESSAGES/folks.mo +share/locale/ca@valencia/LC_MESSAGES/folks.mo share/locale/cs/LC_MESSAGES/folks.mo +share/locale/da/LC_MESSAGES/folks.mo share/locale/de/LC_MESSAGES/folks.mo +share/locale/el/LC_MESSAGES/folks.mo share/locale/en_GB/LC_MESSAGES/folks.mo share/locale/eo/LC_MESSAGES/folks.mo share/locale/es/LC_MESSAGES/folks.mo +share/locale/eu/LC_MESSAGES/folks.mo +share/locale/fa/LC_MESSAGES/folks.mo +share/locale/fi/LC_MESSAGES/folks.mo +share/locale/fr/LC_MESSAGES/folks.mo share/locale/gl/LC_MESSAGES/folks.mo +share/locale/gu/LC_MESSAGES/folks.mo +share/locale/he/LC_MESSAGES/folks.mo +share/locale/hi/LC_MESSAGES/folks.mo +share/locale/hu/LC_MESSAGES/folks.mo +share/locale/id/LC_MESSAGES/folks.mo share/locale/it/LC_MESSAGES/folks.mo +share/locale/ja/LC_MESSAGES/folks.mo +share/locale/kn/LC_MESSAGES/folks.mo +share/locale/ko/LC_MESSAGES/folks.mo +share/locale/lt/LC_MESSAGES/folks.mo +share/locale/lv/LC_MESSAGES/folks.mo +share/locale/ml/LC_MESSAGES/folks.mo +share/locale/mr/LC_MESSAGES/folks.mo share/locale/nb/LC_MESSAGES/folks.mo +share/locale/or/LC_MESSAGES/folks.mo +share/locale/pa/LC_MESSAGES/folks.mo share/locale/pl/LC_MESSAGES/folks.mo +share/locale/pt/LC_MESSAGES/folks.mo share/locale/pt_BR/LC_MESSAGES/folks.mo +share/locale/ru/LC_MESSAGES/folks.mo +share/locale/sk/LC_MESSAGES/folks.mo share/locale/sl/LC_MESSAGES/folks.mo +share/locale/sr/LC_MESSAGES/folks.mo +share/locale/sr@latin/LC_MESSAGES/folks.mo share/locale/sv/LC_MESSAGES/folks.mo +share/locale/ta/LC_MESSAGES/folks.mo +share/locale/te/LC_MESSAGES/folks.mo +share/locale/tg/LC_MESSAGES/folks.mo +share/locale/tr/LC_MESSAGES/folks.mo +share/locale/ug/LC_MESSAGES/folks.mo share/locale/uk/LC_MESSAGES/folks.mo +share/locale/vi/LC_MESSAGES/folks.mo share/locale/zh_CN/LC_MESSAGES/folks.mo +share/locale/zh_HK/LC_MESSAGES/folks.mo +share/locale/zh_TW/LC_MESSAGES/folks.mo +share/vala/vapi/folks-dummy.deps +share/vala/vapi/folks-dummy.vapi share/vala/vapi/folks-eds.deps share/vala/vapi/folks-eds.vapi +%%SOCIALWEB%%share/vala/vapi/folks-libsocialweb.deps +%%SOCIALWEB%%share/vala/vapi/folks-libsocialweb.vapi share/vala/vapi/folks-telepathy.deps share/vala/vapi/folks-telepathy.vapi +%%TRACKER%%share/vala/vapi/folks-tracker.deps +%%TRACKER%%share/vala/vapi/folks-tracker.vapi share/vala/vapi/folks.deps share/vala/vapi/folks.vapi -@dirrm lib/folks/%%VERSION%%/backends/telepathy -@dirrm lib/folks/%%VERSION%%/backends/key-file -@dirrm lib/folks/%%VERSION%%/backends/eds -@dirrm lib/folks/%%VERSION%%/backends -@dirrm lib/folks/%%VERSION%% -@dirrm lib/folks -@dirrm include/folks diff --git a/net-im/folks04/Makefile b/net-im/folks04/Makefile index 01a59a43fc20..d8ac75cad2da 100644 --- a/net-im/folks04/Makefile +++ b/net-im/folks04/Makefile @@ -12,7 +12,7 @@ PKGNAMESUFFIX= 04 MAINTAINER= gnome@FreeBSD.org COMMENT= Library to aggregate people from multiple sources -BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala-vapigen +BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala LIB_DEPENDS= libgee.so:${PORTSDIR}/devel/libgee06 \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib diff --git a/net-im/libnice-gst010/Makefile b/net-im/libnice-gst010/Makefile new file mode 100644 index 000000000000..82cb08921bf6 --- /dev/null +++ b/net-im/libnice-gst010/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ +# $MCom: ports/trunk/net-im/libnice-gst010/Makefile 18965 2013-12-20 11:02:42Z kwm $ + +PORTREVISION= 1 +PKGNAMESUFFIX= -gst010 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GStreamer 0.10 plugin from libnice + +LIB_DEPENDS= libnice.so:${PORTSDIR}/net-im/libnice + +MASTERDIR= ${.CURDIR}/../libnice +DESCR= ${.CURDIR}/pkg-descr +PLIST= ${.CURDIR}/pkg-plist + +BUILD_WRKSRC= ${WRKSRC}/gst +INSTALL_WRKSRC= ${WRKSRC}/gst + +LIBNICE_SLAVE= gstreamer010 + +.include "${MASTERDIR}/Makefile" diff --git a/net-im/libnice-gst010/pkg-descr b/net-im/libnice-gst010/pkg-descr new file mode 100644 index 000000000000..7eeae1737b6a --- /dev/null +++ b/net-im/libnice-gst010/pkg-descr @@ -0,0 +1,3 @@ +Gstreamer 0.10 plugin from the libnice port. + +WWW: http://nice.freedesktop.org/ diff --git a/net-im/libnice-gst010/pkg-plist b/net-im/libnice-gst010/pkg-plist new file mode 100644 index 000000000000..ac99e7768b32 --- /dev/null +++ b/net-im/libnice-gst010/pkg-plist @@ -0,0 +1,2 @@ +lib/gstreamer-0.10/libgstnice010.a +lib/gstreamer-0.10/libgstnice010.so diff --git a/net-im/libnice-gst1/Makefile b/net-im/libnice-gst1/Makefile new file mode 100644 index 000000000000..097e68c21536 --- /dev/null +++ b/net-im/libnice-gst1/Makefile @@ -0,0 +1,22 @@ +# Created by: Joe Marcus Clarke <marcus@FreeBSD.org> +# $FreeBSD$ +# $MCom: ports/trunk/net-im/libnice-gst1/Makefile 19801 2014-08-13 09:46:10Z gusi $ + +PORTREVISION= 1 +PKGNAMESUFFIX= -gst1 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GStreamer 1 plugin from libnice + +LIB_DEPENDS= libnice.so:${PORTSDIR}/net-im/libnice + +MASTERDIR= ${.CURDIR}/../libnice +DESCR= ${.CURDIR}/pkg-descr +PLIST= ${.CURDIR}/pkg-plist + +BUILD_WRKSRC= ${WRKSRC}/gst +INSTALL_WRKSRC= ${WRKSRC}/gst + +LIBNICE_SLAVE= gstreamer1 + +.include "${MASTERDIR}/Makefile" diff --git a/net-im/libnice-gst1/pkg-descr b/net-im/libnice-gst1/pkg-descr new file mode 100644 index 000000000000..b34b5273d7e4 --- /dev/null +++ b/net-im/libnice-gst1/pkg-descr @@ -0,0 +1,3 @@ +Gstreamer 1 plugin from the libnice port. + +WWW: http://nice.freedesktop.org/ diff --git a/net-im/libnice-gst1/pkg-plist b/net-im/libnice-gst1/pkg-plist new file mode 100644 index 000000000000..aaaec9bc5fb0 --- /dev/null +++ b/net-im/libnice-gst1/pkg-plist @@ -0,0 +1,2 @@ +lib/gstreamer-1.0/libgstnice.a +lib/gstreamer-1.0/libgstnice.so diff --git a/net-im/libnice/Makefile b/net-im/libnice/Makefile index 95cbb8752498..a9cd612eb92d 100644 --- a/net-im/libnice/Makefile +++ b/net-im/libnice/Makefile @@ -1,13 +1,12 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -# $MCom$ +# $MCom: ports/trunk/net-im/libnice/Makefile 19801 2014-08-13 09:46:10Z gusi $ PORTNAME= libnice -PORTVERSION= 0.1.3 +PORTVERSION= 0.1.7 PORTREVISION= 1 CATEGORIES= net-im devel -MASTER_SITES= http://nice.freedesktop.org/releases/ \ - http://miwibox.org/distfiles/ +MASTER_SITES= http://nice.freedesktop.org/releases/ MAINTAINER= gnome@FreeBSD.org COMMENT= Library and transmitter that implements ICE-19 @@ -15,17 +14,37 @@ COMMENT= Library and transmitter that implements ICE-19 USES= gettext gmake libtool pathfix pkgconfig USE_LDCONFIG= yes USE_GNOME= glib20 -USE_GSTREAMER= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-gstreamer --with-gstreamer-0.10 CPPFLAGS+= -I${LOCALBASE}/include -DHAVE_GETIFADDRS LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip +.if !defined(LIBNICE_SLAVE) +OPTIONS_DEFINE= GUPNP +GUPNP_DESC= UPnP IGD port mapping support +GUPNP_LIB_DEPENDS+= libgupnp-igd-1.0.so:${PORTSDIR}/net/gupnp-igd +GUPNP_CONFIGURE_ENABLE= gupnp +.endif + +#.include <bsd.port.options.mk> + +.if defined(LIBNICE_SLAVE) +. if ${LIBNICE_SLAVE}==gstreamer010 +USE_GSTREAMER= yes +CONFIGURE_ARGS+=--without-gstreamer --with-gstreamer-0.10 +. endif +. if ${LIBNICE_SLAVE}==gstreamer1 +USE_GSTREAMER1= yes +CONFIGURE_ARGS+=--with-gstreamer --without-gstreamer-0.10 +. endif +.else +CONFIGURE_ARGS= --without-gstreamer --without-gstreamer-0.10 +.endif + post-patch: @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ 's|-Wno-missing-field-initializers|#|g' - @${REINPLACE_CMD} -e 's|-Wno-missing-field-initializers|#|g' \ - ${WRKSRC}/common.mk + @${REINPLACE_CMD} -e 's|-Werror||g' ${WRKSRC}/configure .include <bsd.port.mk> + diff --git a/net-im/libnice/distinfo b/net-im/libnice/distinfo index fbc6a2d7b975..a70cdd538c20 100644 --- a/net-im/libnice/distinfo +++ b/net-im/libnice/distinfo @@ -1,2 +1,2 @@ -SHA256 (libnice-0.1.3.tar.gz) = 046ce11f66638b54f2e042e7b1fbcc537ec99c27185fb006edbfd80d7f990074 -SIZE (libnice-0.1.3.tar.gz) = 672174 +SHA256 (libnice-0.1.7.tar.gz) = 4ed165aa2203136dce548c7cef735d8becf5d9869793f96b99dcbbaa9acf78d8 +SIZE (libnice-0.1.7.tar.gz) = 827258 diff --git a/net-im/libnice/files/patch-Makefile.in b/net-im/libnice/files/patch-Makefile.in new file mode 100644 index 000000000000..1b43415d2283 --- /dev/null +++ b/net-im/libnice/files/patch-Makefile.in @@ -0,0 +1,13 @@ +--- Makefile.in.orig 2013-05-22 07:47:08.000000000 +0000 ++++ Makefile.in 2013-05-22 07:47:23.000000000 +0000 +@@ -311,9 +311,7 @@ + agent \ + nice \ + gst \ +- docs \ +- tests \ +- examples ++ docs + + DISTCHECK_CONFIGURE_FLAGS = --disable-assert -enable-gtk-doc + EXTRA_DIST = \ diff --git a/net-im/libnice/files/patch-gst_Makefile.in b/net-im/libnice/files/patch-gst_Makefile.in new file mode 100644 index 000000000000..43f4f8475453 --- /dev/null +++ b/net-im/libnice/files/patch-gst_Makefile.in @@ -0,0 +1,11 @@ +--- gst/Makefile.in.orig 2013-05-22 07:56:38.000000000 +0000 ++++ gst/Makefile.in 2013-05-22 07:58:56.000000000 +0000 +@@ -319,7 +319,7 @@ + -I $(top_srcdir)/stun + + COMMON_LIBADD = \ +- $(top_builddir)/nice/libnice.la ++ -lnice + + + # libgstnice diff --git a/net-im/libnice/pkg-descr b/net-im/libnice/pkg-descr index 93cfe2b5457e..754fbb1777c9 100644 --- a/net-im/libnice/pkg-descr +++ b/net-im/libnice/pkg-descr @@ -1,2 +1,4 @@ Libnice is a library and a transmitter that does ICE (as defined in the ICE-19 draft), as well as Google Talk and MSN compatible ICE-like protocols. + +WWW: http://nice.freedesktop.org/ diff --git a/net-im/libnice/pkg-plist b/net-im/libnice/pkg-plist index d0acb5732a2a..a7ecc8032562 100644 --- a/net-im/libnice/pkg-plist +++ b/net-im/libnice/pkg-plist @@ -16,14 +16,15 @@ include/stun/usages/ice.h include/stun/usages/timer.h include/stun/usages/turn.h include/stun/win32_common.h -lib/gstreamer-0.10/libgstnice010.a -lib/gstreamer-0.10/libgstnice010.so lib/libnice.a lib/libnice.so lib/libnice.so.10 -lib/libnice.so.10.1.0 +lib/libnice.so.10.4.1 libdata/pkgconfig/nice.pc share/gtk-doc/html/libnice/NiceAgent.html +share/gtk-doc/html/libnice/annotation-glossary.html +share/gtk-doc/html/libnice/api-index-deprecated.html +share/gtk-doc/html/libnice/api-index-full.html share/gtk-doc/html/libnice/ch01.html share/gtk-doc/html/libnice/ch02.html share/gtk-doc/html/libnice/ch03.html @@ -32,6 +33,15 @@ share/gtk-doc/html/libnice/ch05.html share/gtk-doc/html/libnice/home.png share/gtk-doc/html/libnice/index.html share/gtk-doc/html/libnice/index.sgml +share/gtk-doc/html/libnice/ix03.html +share/gtk-doc/html/libnice/ix04.html +share/gtk-doc/html/libnice/ix05.html +share/gtk-doc/html/libnice/ix06.html +share/gtk-doc/html/libnice/ix07.html +share/gtk-doc/html/libnice/ix08.html +share/gtk-doc/html/libnice/ix09.html +share/gtk-doc/html/libnice/ix10.html +share/gtk-doc/html/libnice/ix11.html share/gtk-doc/html/libnice/left.png share/gtk-doc/html/libnice/libnice-Bind.html share/gtk-doc/html/libnice/libnice-Debug-messages.html @@ -40,6 +50,7 @@ share/gtk-doc/html/libnice/libnice-Network-interfaces-discovery.html share/gtk-doc/html/libnice/libnice-NiceAddress.html share/gtk-doc/html/libnice/libnice-NiceCandidate.html share/gtk-doc/html/libnice/libnice-Pseudo-TCP-Socket.html +share/gtk-doc/html/libnice/libnice-STUN-Constants.html share/gtk-doc/html/libnice/libnice-StunAgent.html share/gtk-doc/html/libnice/libnice-StunMessage.html share/gtk-doc/html/libnice/libnice-TURN.html @@ -48,12 +59,7 @@ share/gtk-doc/html/libnice/libnice.devhelp2 share/gtk-doc/html/libnice/pt01.html share/gtk-doc/html/libnice/pt02.html share/gtk-doc/html/libnice/pt03.html +share/gtk-doc/html/libnice/pt04.html share/gtk-doc/html/libnice/right.png share/gtk-doc/html/libnice/style.css share/gtk-doc/html/libnice/up.png -@dirrm share/gtk-doc/html/libnice -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -@dirrm include/stun/usages -@dirrm include/stun -@dirrm include/nice diff --git a/net-im/libtelepathy/Makefile b/net-im/libtelepathy/Makefile index 0106c963f8e6..bde0e673ea6b 100644 --- a/net-im/libtelepathy/Makefile +++ b/net-im/libtelepathy/Makefile @@ -1,5 +1,6 @@ +# Created by: FreeBSD GNOME Team <gnome@freebsd.org> # $FreeBSD$ -# $MCom: ports/net-im/libtelepathy/Makefile,v 1.3 2008/02/27 14:00:06 ahze Exp $ +# $MCom: ports/trunk/net-im/libtelepathy/Makefile 19913 2014-09-25 22:29:26Z kwm $ PORTNAME= libtelepathy PORTVERSION= 0.3.3 @@ -13,11 +14,12 @@ COMMENT= Flexible Communications Framework LIB_DEPENDS= libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib -USES= gmake libtool:keepla pkgconfig python:build +USES= gmake libtool pathfix pkgconfig python:build USE_LDCONFIG= yes -USE_GNOME= gnomehack glib20 libxslt:build +USE_GNOME= glib20 libxslt:build GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib `pkg-config --libs glib-2.0 telepathy-glib` +LDFLAGS+= -L${LOCALBASE}/lib -lglib-2.0 `pkg-config --libs telepathy-glib` +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/net-im/libtelepathy/pkg-plist b/net-im/libtelepathy/pkg-plist index 446dbcdd7588..a8d094e557a9 100644 --- a/net-im/libtelepathy/pkg-plist +++ b/net-im/libtelepathy/pkg-plist @@ -45,10 +45,7 @@ include/telepathy-1.0/libtelepathy/tp-media-stream-handler-gen.h include/telepathy-1.0/libtelepathy/tp-props-iface-gen.h include/telepathy-1.0/libtelepathy/tp-props-iface.h lib/libtelepathy.a -lib/libtelepathy.la lib/libtelepathy.so lib/libtelepathy.so.2 lib/libtelepathy.so.2.7.1 libdata/pkgconfig/libtelepathy.pc -@dirrm include/telepathy-1.0/libtelepathy -@dirrm include/telepathy-1.0 diff --git a/net-im/loudmouth/Makefile b/net-im/loudmouth/Makefile index fbf0fa578928..c13c69353ff1 100644 --- a/net-im/loudmouth/Makefile +++ b/net-im/loudmouth/Makefile @@ -1,5 +1,6 @@ # Created by: Adam Weinberger <adamw@FreeBSD.org> # $FreeBSD$ +# $MCom: ports/trunk/net-im/loudmouth/Makefile 19914 2014-09-25 22:33:21Z kwm $ PORTNAME= loudmouth PORTVERSION= 1.4.3 @@ -13,12 +14,13 @@ COMMENT= Lightweight Jabber client library LIB_DEPENDS= libidn.so:${PORTSDIR}/dns/libidn USES= gettext gmake libtool pathfix pkgconfig tar:bzip2 +USE_GNOME= glib20 GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_GNOME= glib20 CONFIGURE_ARGS= --disable-gtk-doc CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -Wl,-Bsymbolic -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip OPTIONS_DEFAULT=GNUTLS OPTIONS_RADIO= SSL diff --git a/net-im/loudmouth/pkg-plist b/net-im/loudmouth/pkg-plist index b133569f90d3..a7824e37d336 100644 --- a/net-im/loudmouth/pkg-plist +++ b/net-im/loudmouth/pkg-plist @@ -30,8 +30,3 @@ share/gtk-doc/html/loudmouth/loudmouth.devhelp2 share/gtk-doc/html/loudmouth/right.png share/gtk-doc/html/loudmouth/style.css share/gtk-doc/html/loudmouth/up.png -@dirrm share/gtk-doc/html/loudmouth -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -@dirrm include/loudmouth-1.0/loudmouth -@dirrm include/loudmouth-1.0 diff --git a/net-im/pidgin-skype/Makefile b/net-im/pidgin-skype/Makefile index b9f905a452c9..acc5d471d1bb 100644 --- a/net-im/pidgin-skype/Makefile +++ b/net-im/pidgin-skype/Makefile @@ -38,6 +38,7 @@ mycflags= -shared -fPIC -DPIC ${PTHREAD_CFLAGS} \ -I${LOCALBASE}/include/libpurple \ -I${LOCALBASE}/include/pidgin \ -I${LOCALBASE}/include/glib-2.0 \ + -I${LOCALBASE}/lib/glib-2.0/include \ -DPURPLE_PLUGINS mylibs= ${PTHREAD_LIBS} diff --git a/net-im/telepathy-farstream/Makefile b/net-im/telepathy-farstream/Makefile new file mode 100644 index 000000000000..a4941639fd7f --- /dev/null +++ b/net-im/telepathy-farstream/Makefile @@ -0,0 +1,30 @@ +# Created by: Joe Marcus Clarke <marcus@FreeBSD.org> +# $FreeBSD$ +# $MCom: ports/trunk/net-im/telepathy-farstream/Makefile 19955 2014-10-15 10:15:00Z gusi $ + +PORTNAME= telepathy-farstream +PORTVERSION= 0.6.2 +CATEGORIES= net-im +MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Farstream Connection Manager for Telepathy Framework + +BUILD_DEPENDS= gtkdoc-check:${PORTSDIR}/textproc/gtk-doc +LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ + libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib \ + libfarstream-0.2.so:${PORTSDIR}/net-im/farstream + +USES= gmake libtool pathfix pkgconfig python +USE_GNOME= glib20 libxslt:build introspection:build +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip + +post-patch: + @${REINPLACE_CMD} -e 's|\(^pkgconfigdir =\).*|\1 ${PREFIX}/libdata/pkgconfig|' \ + ${WRKSRC}/telepathy-farstream/Makefile.in + +.include <bsd.port.mk> diff --git a/net-im/telepathy-farstream/distinfo b/net-im/telepathy-farstream/distinfo new file mode 100644 index 000000000000..323383d7bf55 --- /dev/null +++ b/net-im/telepathy-farstream/distinfo @@ -0,0 +1,2 @@ +SHA256 (telepathy-farstream-0.6.2.tar.gz) = 6fa099f22d13a2a49240445a13e918928aef097675d76e5cc9f98ab496087e0a +SIZE (telepathy-farstream-0.6.2.tar.gz) = 601409 diff --git a/net-im/telepathy-farstream/pkg-descr b/net-im/telepathy-farstream/pkg-descr new file mode 100644 index 000000000000..ed34c5aade78 --- /dev/null +++ b/net-im/telepathy-farstream/pkg-descr @@ -0,0 +1,4 @@ +Telepathy Farstream is a Telepathy client library that uses Farstream +to handle Call channels. + +WWW: http://telepathy.freedesktop.org/ diff --git a/net-im/telepathy-farstream/pkg-plist b/net-im/telepathy-farstream/pkg-plist new file mode 100644 index 000000000000..7c24f4706473 --- /dev/null +++ b/net-im/telepathy-farstream/pkg-plist @@ -0,0 +1,21 @@ +include/telepathy-1.0/telepathy-farstream/channel.h +include/telepathy-1.0/telepathy-farstream/content.h +include/telepathy-1.0/telepathy-farstream/telepathy-farstream.h +lib/girepository-1.0/TelepathyFarstream-0.6.typelib +lib/libtelepathy-farstream.a +lib/libtelepathy-farstream.so +lib/libtelepathy-farstream.so.3 +lib/libtelepathy-farstream.so.3.0.1 +libdata/pkgconfig/telepathy-farstream.pc +share/gir-1.0/TelepathyFarstream-0.6.gir +share/gtk-doc/html/telepathy-farstream/TfChannel.html +share/gtk-doc/html/telepathy-farstream/TfContent.html +share/gtk-doc/html/telepathy-farstream/ch01.html +share/gtk-doc/html/telepathy-farstream/home.png +share/gtk-doc/html/telepathy-farstream/index.html +share/gtk-doc/html/telepathy-farstream/index.sgml +share/gtk-doc/html/telepathy-farstream/left.png +share/gtk-doc/html/telepathy-farstream/right.png +share/gtk-doc/html/telepathy-farstream/style.css +share/gtk-doc/html/telepathy-farstream/telepathy-farstream.devhelp2 +share/gtk-doc/html/telepathy-farstream/up.png diff --git a/net-im/telepathy-gabble/Makefile b/net-im/telepathy-gabble/Makefile index fad002bd02db..c81c72307afd 100644 --- a/net-im/telepathy-gabble/Makefile +++ b/net-im/telepathy-gabble/Makefile @@ -1,33 +1,37 @@ +# Created by: Florent Thoumie <flz@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/trunk/net-im/telepathy-gabble/Makefile 17271 2013-04-01 15:16:27Z kwm $ +# $MCom: ports/trunk/net-im/telepathy-gabble/Makefile 19804 2014-08-13 14:55:11Z kwm $ PORTNAME= telepathy-gabble -PORTVERSION= 0.16.6 -PORTREVISION= 2 +PORTVERSION= 0.18.3 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ MAINTAINER= gnome@FreeBSD.org COMMENT= Jabber Connection Manager for Telepathy Framework -BUILD_DEPENDS= telepathy-glib>=0.18.0:${PORTSDIR}/net-im/telepathy-glib \ - ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss +BUILD_DEPENDS= telepathy-glib>=0.22.0:${PORTSDIR}/net-im/telepathy-glib \ + ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/devel/libsoup \ libnice.so:${PORTSDIR}/net-im/libnice \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ libloudmouth-1.so:${PORTSDIR}/net-im/loudmouth -RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss +RUN_DEPENDS= ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss \ + libnice-gst1>=0:${PORTSDIR}/net-im/libnice-gst1 PORTSCOUT= limitw:1,even -GNU_CONFIGURE= yes USES= alias gmake libtool pathfix pkgconfig python:build USE_GNOME= glib20 libxslt:build -USE_SQLITE= yes +USE_SQLITE= 3 USE_OPENSSL= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt +CONFIGURE_ENV= LIBS="-pthread" +INSTALL_TARGET= install-strip PLIST_SUB= PVERSION=${PORTVERSION} diff --git a/net-im/telepathy-gabble/distinfo b/net-im/telepathy-gabble/distinfo index 1b77e5bbce7d..153637551791 100644 --- a/net-im/telepathy-gabble/distinfo +++ b/net-im/telepathy-gabble/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-gabble-0.16.6.tar.gz) = 0a4726241f3e0ef6a42281eca954ff63948c44d2faa264242faa3a92fb02b792 -SIZE (telepathy-gabble-0.16.6.tar.gz) = 2434346 +SHA256 (telepathy-gabble-0.18.3.tar.gz) = 8ec714607e9bcb8d5a3f44adf871e7b07d5db8e326e47536e74e09cba59989c2 +SIZE (telepathy-gabble-0.18.3.tar.gz) = 2793195 diff --git a/net-im/telepathy-gabble/pkg-plist b/net-im/telepathy-gabble/pkg-plist index ad98f0f098d6..a6b4c83418d3 100644 --- a/net-im/telepathy-gabble/pkg-plist +++ b/net-im/telepathy-gabble/pkg-plist @@ -15,10 +15,3 @@ share/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.gabble.service %%DOCSDIR%%/si-multiple.html %%DOCSDIR%%/tubes.html share/telepathy/managers/gabble.manager -@dirrmtry share/telepathy/managers -@dirrmtry share/telepathy -@dirrm %%DOCSDIR%% -@dirrmtry lib/telepathy/gabble-0/plugins -@dirrmtry lib/telepathy/gabble-0/lib -@dirrmtry lib/telepathy/gabble-0 -@dirrmtry lib/telepathy diff --git a/net-im/telepathy-glib/Makefile b/net-im/telepathy-glib/Makefile index 1af5128e4cf7..4a648663b59d 100644 --- a/net-im/telepathy-glib/Makefile +++ b/net-im/telepathy-glib/Makefile @@ -1,26 +1,26 @@ +# Created by: gnome@freebsd.org # $FreeBSD$ -# $MCom: ports/trunk/net-im/telepathy-glib/Makefile 18610 2013-06-30 16:33:05Z marcus $ +# $MCom: ports/trunk/net-im/telepathy-glib/Makefile 20031 2014-11-02 21:47:55Z kwm $ PORTNAME= telepathy-glib -PORTVERSION= 0.20.2 -PORTREVISION= 1 +PORTVERSION= 0.24.1 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ MAINTAINER= gnome@FreeBSD.org COMMENT= GLib utility library for the Telepathy framework -BUILD_DEPENDS= vala-vapigen>=0.20.0:${PORTSDIR}/lang/vala-vapigen +BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib -RUN_DEPENDS= vapigen:${PORTSDIR}/lang/vala-vapigen +RUN_DEPENDS= vapigen:${PORTSDIR}/lang/vala PORTSCOUT= limitw:1,even +USES= gmake libtool pathfix pkgconfig python:build +USE_GNOME= glib20 introspection:build libxslt:build USE_LDCONFIG= yes -USES= gmake libtool:keepla pathfix pkgconfig python:build -USE_GNOME= glib20 gnomehier introspection:build libxslt:build -MAKE_JOBS_UNSAFE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-vala-bindings +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/net-im/telepathy-glib/distinfo b/net-im/telepathy-glib/distinfo index df425cbb5895..58d67d4c1e77 100644 --- a/net-im/telepathy-glib/distinfo +++ b/net-im/telepathy-glib/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-glib-0.20.2.tar.gz) = 43c7d576576d9c5856bc56a45a86f42d770b427371e10698c9ed3f9ced65c7ed -SIZE (telepathy-glib-0.20.2.tar.gz) = 3776255 +SHA256 (telepathy-glib-0.24.1.tar.gz) = 9e0df1d8f857e0270cf0b32e2d1ca5a24aa7282873361785d573f72ad7f7d5eb +SIZE (telepathy-glib-0.24.1.tar.gz) = 3898149 diff --git a/net-im/telepathy-glib/pkg-plist b/net-im/telepathy-glib/pkg-plist index b468d5884117..23025de25966 100644 --- a/net-im/telepathy-glib/pkg-plist +++ b/net-im/telepathy-glib/pkg-plist @@ -164,10 +164,9 @@ include/telepathy-1.0/telepathy-glib/verify.h include/telepathy-1.0/telepathy-glib/version.h lib/girepository-1.0/TelepathyGLib-0.12.typelib lib/libtelepathy-glib.a -lib/libtelepathy-glib.la lib/libtelepathy-glib.so lib/libtelepathy-glib.so.0 -lib/libtelepathy-glib.so.0.78.2 +lib/libtelepathy-glib.so.0.84.1 libdata/pkgconfig/telepathy-glib.pc share/gir-1.0/TelepathyGLib-0.12.gir share/gtk-doc/html/telepathy-glib/TpBaseCallChannel.html @@ -274,7 +273,9 @@ share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-mail.html share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-manager.html share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-powersaving.html share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-presence.html +share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-renaming.html share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-requests.html +share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-sidecars.html share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-simple-presence.html share/gtk-doc/html/telepathy-glib/telepathy-glib-connection.html share/gtk-doc/html/telepathy-glib/telepathy-glib-contact-search-result.html @@ -354,9 +355,3 @@ share/gtk-doc/html/telepathy-glib/telepathy-glib.devhelp2 share/gtk-doc/html/telepathy-glib/up.png share/vala/vapi/telepathy-glib.deps share/vala/vapi/telepathy-glib.vapi -@dirrm share/gtk-doc/html/telepathy-glib -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -@dirrm include/telepathy-1.0/telepathy-glib/_gen -@dirrm include/telepathy-1.0/telepathy-glib -@dirrmtry include/telepathy-1.0 diff --git a/net-im/telepathy-haze/Makefile b/net-im/telepathy-haze/Makefile index 085682af1a84..08eb87739db0 100644 --- a/net-im/telepathy-haze/Makefile +++ b/net-im/telepathy-haze/Makefile @@ -1,10 +1,9 @@ # Created by: Michael Johnson <ahze@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/telepathy-haze/Makefile,v 1.7 2012/06/13 00:59:50 mezz Exp $ +# $MCom: ports/trunk/net-im/telepathy-haze/Makefile 19801 2014-08-13 09:46:10Z gusi $ PORTNAME= telepathy-haze -PORTVERSION= 0.6.0 -PORTREVISION= 2 +PORTVERSION= 0.8.0 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/telepathy-haze/ @@ -15,9 +14,10 @@ LIB_DEPENDS= libpurple.so:${PORTSDIR}/net-im/libpurple \ libidn.so:${PORTSDIR}/dns/libidn \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib +USES= gmake pathfix pkgconfig +USE_GNOME= libxslt:build CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= gmake libtool pkgconfig -USE_GNOME= libxslt:build +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/net-im/telepathy-haze/distinfo b/net-im/telepathy-haze/distinfo index 29a2001ae072..c5966aea4447 100644 --- a/net-im/telepathy-haze/distinfo +++ b/net-im/telepathy-haze/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-haze-0.6.0.tar.gz) = e267c54aef8f85746899e365ae344fe9ec73c1aec04298bedad6a88732ab2fe3 -SIZE (telepathy-haze-0.6.0.tar.gz) = 558413 +SHA256 (telepathy-haze-0.8.0.tar.gz) = 3e76049c05f2cd5900c5c0c1cfebdf7ae79eec987a599f1090946673c5b8f9c9 +SIZE (telepathy-haze-0.8.0.tar.gz) = 580929 diff --git a/net-im/telepathy-haze/pkg-plist b/net-im/telepathy-haze/pkg-plist index e99acae8bea2..0a991e396c29 100644 --- a/net-im/telepathy-haze/pkg-plist +++ b/net-im/telepathy-haze/pkg-plist @@ -1,4 +1,3 @@ libexec/telepathy-haze man/man8/telepathy-haze.8.gz share/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.haze.service -man/man8/telepathy-haze.8.gz diff --git a/net-im/telepathy-idle/Makefile b/net-im/telepathy-idle/Makefile index bc5421166044..5bad0f0a081e 100644 --- a/net-im/telepathy-idle/Makefile +++ b/net-im/telepathy-idle/Makefile @@ -1,37 +1,35 @@ +# Created by: Florent Thoumie <flz@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/telepathy-idle/Makefile,v 1.6 2012/08/17 19:06:45 kwm Exp $ +# $MCom: ports/trunk/net-im/telepathy-idle/Makefile 20041 2014-11-04 11:13:49Z kwm $ PORTNAME= telepathy-idle -PORTVERSION= 0.1.11 +PORTVERSION= 0.2.0 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ MAINTAINER= gnome@FreeBSD.org COMMENT= IRC Connection Manager for Telepathy Framework -LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ - libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ +LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib +USES= execinfo gmake libtool pathfix pkgconfig python:build +USE_GNOME= glib20 libxslt:build GNU_CONFIGURE= yes -USES= gmake libtool pathfix pkgconfig python:build USE_OPENSSL= yes -USE_GNOME= glib20 libxslt:build - CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip + +.include <bsd.port.pre.mk> -#.if defined(WITH_OPENSSL_BASE) +.if defined(WITH_OPENSSL_BASE) CONFIGURE_ENV+= OPENSSL_LIBS="-L/usr/lib -lssl -lcrypto" OPENSSL_CFLAGS="-I/usr/include" -#.endif -# OPENSSL_CFLAGS -# C compiler flags for OPENSSL, overriding pkg-config -# OPENSSL_LIBS -# linker flags for OPENSSL, overriding pkg-config +.endif post-patch: @${REINPLACE_CMD} -e 's|strnlen(\([^,]*\), [^)]*)|strlen(\1)|' \ ${WRKSRC}/src/idle-connection.c \ ${WRKSRC}/src/idle-parser.c -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/net-im/telepathy-idle/distinfo b/net-im/telepathy-idle/distinfo index effb00700203..b9d7a21c26a4 100644 --- a/net-im/telepathy-idle/distinfo +++ b/net-im/telepathy-idle/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-idle-0.1.11.tar.gz) = 047ccbec0b91ac187467ede5a90966f9ec881df56fd8c80cb3bce3710f66fda0 -SIZE (telepathy-idle-0.1.11.tar.gz) = 505354 +SHA256 (telepathy-idle-0.2.0.tar.gz) = 3013ad4b38d14ee630b8cc8ada5e95ccaa849b9a6fe15d2eaf6d0717d76f2fab +SIZE (telepathy-idle-0.2.0.tar.gz) = 566492 diff --git a/net-im/telepathy-idle/pkg-plist b/net-im/telepathy-idle/pkg-plist index ce5e6fb50df1..6e8c63079733 100644 --- a/net-im/telepathy-idle/pkg-plist +++ b/net-im/telepathy-idle/pkg-plist @@ -2,5 +2,3 @@ libexec/telepathy-idle man/man8/telepathy-idle.8.gz share/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.idle.service share/telepathy/managers/idle.manager -@dirrmtry share/telepathy/managers -@dirrmtry share/telepathy diff --git a/net-im/telepathy-logger/Makefile b/net-im/telepathy-logger/Makefile index 47850c6f82b4..4c4ae3bf2108 100644 --- a/net-im/telepathy-logger/Makefile +++ b/net-im/telepathy-logger/Makefile @@ -1,28 +1,28 @@ # Created by: Koop Mast <kwm@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/telepathy-logger/Makefile,v 1.14 2012/08/17 19:06:45 kwm Exp $ +# $MCom: ports/trunk/net-im/telepathy-logger/Makefile 19955 2014-10-15 10:15:00Z gusi $ PORTNAME= telepathy-logger -PORTVERSION= 0.4.0 -PORTREVISION= 3 +PORTVERSION= 0.8.1 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ MAINTAINER= gnome@FreeBSD.org COMMENT= Logger utility library for the Telepathy framework +LICENSE= LGPL21 + LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib -LICENSE= LGPL21 - -USES= pkgconfig gmake libtool pathfix python:build tar:bzip2 +USES= gmake libtool pathfix pkgconfig python:build tar:bzip2 GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_GNOME= glib20 intltool gnomedocutils libxml2 \ +USE_GNOME= glib20 gnomedocutils intltool libxml2 \ libxslt:build introspection:build USE_SQLITE= yes GLIB_SCHEMAS= org.freedesktop.Telepathy.Logger.gschema.xml +INSTALL_TARGET= install-strip post-patch: @${REINPLACE_CMD} -e 's|/usr/bin/python|/usr/bin/env python|g' \ diff --git a/net-im/telepathy-logger/distinfo b/net-im/telepathy-logger/distinfo index 35dcf03c5d53..c076cb1a2809 100644 --- a/net-im/telepathy-logger/distinfo +++ b/net-im/telepathy-logger/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-logger-0.4.0.tar.bz2) = 06b5ab0616afd7572a1bbda58e6a9487bb305f69358c85985a8999f26f4465e5 -SIZE (telepathy-logger-0.4.0.tar.bz2) = 523642 +SHA256 (telepathy-logger-0.8.1.tar.bz2) = 359528f5fa1539b250fead8d68c7a0eaef11ed4284dfb3761fff2b6dd688da39 +SIZE (telepathy-logger-0.8.1.tar.bz2) = 569680 diff --git a/net-im/telepathy-logger/pkg-plist b/net-im/telepathy-logger/pkg-plist index b4f5fd491084..c561fc851b23 100644 --- a/net-im/telepathy-logger/pkg-plist +++ b/net-im/telepathy-logger/pkg-plist @@ -2,21 +2,24 @@ include/telepathy-logger-0.2/telepathy-logger/call-event.h include/telepathy-logger-0.2/telepathy-logger/entity.h include/telepathy-logger-0.2/telepathy-logger/event.h include/telepathy-logger-0.2/telepathy-logger/log-manager.h +include/telepathy-logger-0.2/telepathy-logger/log-walker.h include/telepathy-logger-0.2/telepathy-logger/telepathy-logger.h include/telepathy-logger-0.2/telepathy-logger/text-event.h lib/girepository-1.0/TelepathyLogger-0.2.typelib lib/libtelepathy-logger.a lib/libtelepathy-logger.so -lib/libtelepathy-logger.so.2 -lib/libtelepathy-logger.so.2.2.1 +lib/libtelepathy-logger.so.3 +lib/libtelepathy-logger.so.3.3.0 libdata/pkgconfig/telepathy-logger-0.2.pc libexec/telepathy-logger share/dbus-1/services/org.freedesktop.Telepathy.Client.Logger.service share/dbus-1/services/org.freedesktop.Telepathy.Logger.service share/gir-1.0/TelepathyLogger-0.2.gir +share/gtk-doc/html/telepathy-logger/TplCallEvent.html share/gtk-doc/html/telepathy-logger/TplEntity.html share/gtk-doc/html/telepathy-logger/TplEvent.html share/gtk-doc/html/telepathy-logger/TplLogManager.html +share/gtk-doc/html/telepathy-logger/TplLogWalker.html share/gtk-doc/html/telepathy-logger/TplTextEvent.html share/gtk-doc/html/telepathy-logger/ch-public.html share/gtk-doc/html/telepathy-logger/home.png @@ -28,10 +31,3 @@ share/gtk-doc/html/telepathy-logger/style.css share/gtk-doc/html/telepathy-logger/telepathy-logger.devhelp2 share/gtk-doc/html/telepathy-logger/up.png share/telepathy/clients/Logger.client -@dirrmtry share/telepathy/clients -@dirrmtry share/telepathy -@dirrm share/gtk-doc/html/telepathy-logger -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -@dirrm include/telepathy-logger-0.2/telepathy-logger -@dirrm include/telepathy-logger-0.2 diff --git a/net-im/telepathy-mission-control/Makefile b/net-im/telepathy-mission-control/Makefile index 61c2d57420a8..1a8468ee3aa6 100644 --- a/net-im/telepathy-mission-control/Makefile +++ b/net-im/telepathy-mission-control/Makefile @@ -1,10 +1,9 @@ # Created by: Michael Johnson <ahze@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/telepathy-mission-control/Makefile,v 1.23 2012/08/17 19:06:46 kwm Exp $ +# $MCom: ports/trunk/net-im/telepathy-mission-control/Makefile 19955 2014-10-15 10:15:00Z gusi $ PORTNAME= telepathy-mission-control -PORTVERSION= 5.12.0 -PORTREVISION= 1 +PORTVERSION= 5.16.3 CATEGORIES= net-im devel MASTER_SITES= http://telepathy.freedesktop.org/releases/telepathy-mission-control/ @@ -14,19 +13,20 @@ COMMENT= Telepathy component to apps to abstract details of connection managers LIB_DEPENDS= libtelepathy.so:${PORTSDIR}/net-im/libtelepathy \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib -USES= gmake libtool:keepla pathfix pkgconfig -USE_GNOME= gnomeprefix libxslt +USES= gmake libtool pathfix pkgconfig +USE_GNOME= libxslt GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+=--disable-upower USE_LDCONFIG= yes GLIB_SCHEMAS= im.telepathy.MissionControl.FromEmpathy.gschema.xml -CONFIGURE_ARGS= --disable-upower +INSTALL_TARGET= install-strip PLIST_SUB= VERSION=${PORTVERSION} post-patch: - @${REINPLACE_CMD} -e 's|/gtk-doc/html|/${DOCSDIR}|' \ + @${REINPLACE_CMD} -e 's|$${datadir}/gtk-doc/html|${DOCSDIR}|' \ ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/net-im/telepathy-mission-control/distinfo b/net-im/telepathy-mission-control/distinfo index 17624836d670..bc4b5d60bfd0 100644 --- a/net-im/telepathy-mission-control/distinfo +++ b/net-im/telepathy-mission-control/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-mission-control-5.12.0.tar.gz) = 660aeb65543e1b029dfde6a895934cb20b766644bae2a68c0030052aa6645e77 -SIZE (telepathy-mission-control-5.12.0.tar.gz) = 1014502 +SHA256 (telepathy-mission-control-5.16.3.tar.gz) = 71575d2ff8aa7337aca355e3d921eba5cd2ff050fabc01e51577343093e98b7d +SIZE (telepathy-mission-control-5.16.3.tar.gz) = 1096019 diff --git a/net-im/telepathy-mission-control/pkg-plist b/net-im/telepathy-mission-control/pkg-plist index 0be55dd27c2b..0ea328987298 100644 --- a/net-im/telepathy-mission-control/pkg-plist +++ b/net-im/telepathy-mission-control/pkg-plist @@ -12,39 +12,35 @@ include/mission-control-5.5/mission-control-plugins/mission-control-plugins.h include/mission-control-5.5/mission-control-plugins/request-policy.h include/mission-control-5.5/mission-control-plugins/request.h lib/libmission-control-plugins.a -lib/libmission-control-plugins.la lib/libmission-control-plugins.so lib/libmission-control-plugins.so.0 -lib/libmission-control-plugins.so.0.3.1 +lib/libmission-control-plugins.so.0.5.1 libdata/pkgconfig/mission-control-plugins.pc libexec/mission-control-5 man/man1/mc-tool.1.gz man/man1/mc-wait-for-name.1.gz man/man8/mission-control-5.8.gz +share/doc/telepathy-mission-control/mission-control-plugins/McpAccountManager.html +share/doc/telepathy-mission-control/mission-control-plugins/McpDispatchOperation.html +share/doc/telepathy-mission-control/mission-control-plugins/McpRequest.html +share/doc/telepathy-mission-control/mission-control-plugins/annotation-glossary.html +share/doc/telepathy-mission-control/mission-control-plugins/api-index-full.html +share/doc/telepathy-mission-control/mission-control-plugins/ch01.html +share/doc/telepathy-mission-control/mission-control-plugins/ch02.html +share/doc/telepathy-mission-control/mission-control-plugins/ch03.html +share/doc/telepathy-mission-control/mission-control-plugins/ch04.html +share/doc/telepathy-mission-control/mission-control-plugins/home.png +share/doc/telepathy-mission-control/mission-control-plugins/index.html +share/doc/telepathy-mission-control/mission-control-plugins/index.sgml +share/doc/telepathy-mission-control/mission-control-plugins/left.png +share/doc/telepathy-mission-control/mission-control-plugins/mission-control-plugins-McpAccountStorage.html +share/doc/telepathy-mission-control/mission-control-plugins/mission-control-plugins-McpDispatchOperationPolicy.html +share/doc/telepathy-mission-control/mission-control-plugins/mission-control-plugins-McpRequestPolicy.html +share/doc/telepathy-mission-control/mission-control-plugins/mission-control-plugins-Plugin-loader-and-global-functions.html +share/doc/telepathy-mission-control/mission-control-plugins/mission-control-plugins.devhelp2 +share/doc/telepathy-mission-control/mission-control-plugins/object-tree.html +share/doc/telepathy-mission-control/mission-control-plugins/right.png +share/doc/telepathy-mission-control/mission-control-plugins/style.css +share/doc/telepathy-mission-control/mission-control-plugins/up.png share/dbus-1/services/org.freedesktop.Telepathy.AccountManager.service share/dbus-1/services/org.freedesktop.Telepathy.MissionControl5.service -share/doc/mission-control-plugins/McpAccountManager.html -share/doc/mission-control-plugins/McpDispatchOperation.html -share/doc/mission-control-plugins/McpRequest.html -share/doc/mission-control-plugins/annotation-glossary.html -share/doc/mission-control-plugins/api-index-full.html -share/doc/mission-control-plugins/ch01.html -share/doc/mission-control-plugins/ch02.html -share/doc/mission-control-plugins/ch03.html -share/doc/mission-control-plugins/ch04.html -share/doc/mission-control-plugins/home.png -share/doc/mission-control-plugins/index.html -share/doc/mission-control-plugins/index.sgml -share/doc/mission-control-plugins/left.png -share/doc/mission-control-plugins/mission-control-plugins-McpAccountStorage.html -share/doc/mission-control-plugins/mission-control-plugins-McpDispatchOperationPolicy.html -share/doc/mission-control-plugins/mission-control-plugins-McpRequestPolicy.html -share/doc/mission-control-plugins/mission-control-plugins-Plugin-loader-and-global-functions.html -share/doc/mission-control-plugins/mission-control-plugins.devhelp2 -share/doc/mission-control-plugins/object-tree.html -share/doc/mission-control-plugins/right.png -share/doc/mission-control-plugins/style.css -share/doc/mission-control-plugins/up.png -@dirrm share/doc/mission-control-plugins -@dirrm include/mission-control-5.5/mission-control-plugins -@dirrm include/mission-control-5.5 diff --git a/net-im/telepathy-qt4/Makefile b/net-im/telepathy-qt4/Makefile index 41f67fb00b16..ff06492e5b5d 100644 --- a/net-im/telepathy-qt4/Makefile +++ b/net-im/telepathy-qt4/Makefile @@ -1,8 +1,9 @@ +# Created by: Alberto Villa <avilla@FreeBSD.org> # $FreeBSD$ +# $MCom: ports/trunk/net-im/telepathy-qt4/Makefile 19955 2014-10-15 10:15:00Z gusi $ PORTNAME= telepathy-qt4 -PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTVERSION= 0.9.4 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME:C/4//}/ DISTNAME= ${PORTNAME:C/4//}-${PORTVERSION} @@ -12,49 +13,66 @@ COMMENT= High-level Qt binding for Telepathy LICENSE= LGPL21 -LIB_DEPENDS= libtelepathy-farsight.so:${PORTSDIR}/net-im/telepathy-farsight \ +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:${PORTSDIR}/devel/py-dbus +LIB_DEPENDS= libtelepathy-farstream.so:${PORTSDIR}/net-im/telepathy-farstream \ libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:${PORTSDIR}/devel/py-dbus USE_GNOME= libxslt:build USE_GSTREAMER= yes USE_QT4= corelib dbus gui network qtestlib_build xml \ moc_build qmake_build rcc_build uic_build USES= cmake pkgconfig python:build -CMAKE_ARGS= -DENABLE_FARSIGHT:BOOL=True \ +CMAKE_ARGS= -DENABLE_FARSIGHT:BOOL=False \ + -DENABLE_FARSTREAM:BOOL=True \ -DENABLE_TESTS:BOOL=False +CXXFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes PLIST_SUB= PORTVERSION="${PORTVERSION}" PORTDOCS= AUTHORS ChangeLog HACKING NEWS README html -PORTEXAMPLES= accounts cm contact-messenger extensions \ +PORTEXAMPLES= Makefile accounts cm contact-messenger extensions \ file-transfer protocols roster stream-tubes -OPTIONS_DEFINE= DOCS EXAMPLES +.include <bsd.port.options.mk> -EXAMPLES_CMAKE_ON= -DENABLE_EXAMPLES:BOOL=True -EXAMPLES_CMAKE_OFF= -DENABLE_EXAMPLES:BOOL=False +.if ${PORT_OPTIONS:MEXAMPLES} +CMAKE_ARGS+= -DENABLE_EXAMPLES:BOOL=True +.else +CMAKE_ARGS+= -DENABLE_EXAMPLES:BOOL=False +.endif pre-configure: - @${REINPLACE_CMD} -e '/FIND_PROGRAM/ s,qmake ,,' \ + ${REINPLACE_CMD} -e '/FIND_PROGRAM/ s/qmake //' \ ${WRKSRC}/cmake/modules/FindQt.cmake - @${REINPLACE_CMD} -e '/^add_dependencies(doxygen-doc / d' \ + ${REINPLACE_CMD} -e '/^add_dependencies(doxygen-doc / d' \ ${WRKSRC}/TelepathyQt/CMakeLists.txt - @${REINPLACE_CMD} -e '/TelepathyQt.*\.pc/ s,pkgconfig,../libdata/pkgconfig,' \ - ${WRKSRC}/TelepathyQt/CMakeLists.txt \ - ${WRKSRC}/TelepathyQt/Farsight/CMakeLists.txt - @${REINPLACE_CMD} -e '/$${LIBXML2_INCLUDE_DIR}/ s,$$, ${LOCALBASE}/include,' \ - ${WRKSRC}/TelepathyQt/Farsight/CMakeLists.txt + ${REINPLACE_CMD} -e '/TelepathyQt.*\.pc/ s|pkgconfig|../libdata/pkgconfig|' \ + ${WRKSRC}/TelepathyQt/CMakeLists.txt + ${REINPLACE_CMD} -e 's|LIB_INSTALL_DIR}/pkgconfig|LIB_INSTALL_DIR}/../libdata/pkgconfig|' \ + ${WRKSRC}/TelepathyQt/Farstream/CMakeLists.txt + +post-patch: + @${REINPLACE_CMD} -e 's|farstream-0.1|farstream-0.2|g' \ + ${WRKSRC}/cmake/modules/FindFarstream.cmake post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:Nhtml:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} - @cd ${WRKSRC}/examples && ${RM} -rf */CMakeFiles */*.cmake */_gen */Makefile - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} -.for f in ${PORTEXAMPLES} +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${CP} -R doc/html . +. for f in ${PORTDOCS} + cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${DOCSDIR} +. endfor +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + cd ${WRKSRC}/examples && ${RM} -rf */CMakeFiles */*.cmake */Makefile + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} +. for f in ${PORTEXAMPLES} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${EXAMPLESDIR} -.endfor +. endfor +.endif .include <bsd.port.mk> diff --git a/net-im/telepathy-qt4/distinfo b/net-im/telepathy-qt4/distinfo index 320ef4d0d908..25e52d8098f9 100644 --- a/net-im/telepathy-qt4/distinfo +++ b/net-im/telepathy-qt4/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-qt-0.9.3.tar.gz) = c0ff57bea79b86ad343e184c16941d05f6d6d7dfd03876b44502f11935f44bf9 -SIZE (telepathy-qt-0.9.3.tar.gz) = 4414599 +SHA256 (telepathy-qt-0.9.4.tar.gz) = f1b1db3a9f96ece92df430a8de4d30317f4c58a06fe99e82cc2c6875791e61f2 +SIZE (telepathy-qt-0.9.4.tar.gz) = 5294554 diff --git a/net-im/telepathy-qt4/files/patch-cmake__modules__FindQt.cmake b/net-im/telepathy-qt4/files/patch-cmake__modules__FindQt.cmake deleted file mode 100644 index e1972521a53b..000000000000 --- a/net-im/telepathy-qt4/files/patch-cmake__modules__FindQt.cmake +++ /dev/null @@ -1,37 +0,0 @@ -From 05fe3f4980bbc6b016e25dcf07e44afe29e377c0 Mon Sep 17 00:00:00 2001 -From: David Edmundson <kde@davidedmundson.co.uk> -Date: Sun, 29 Sep 2013 22:19:27 +0000 -Subject: Fix compilation on new versions of cmake - -Recent cmake has changed the argument count to -qt4_create_moc_command, we need to adjust accordingly - -Reviewed-by: Dario Freddi <dario.freddi@ispirata.com> ---- -diff --git a/cmake/modules/FindQt.cmake b/cmake/modules/FindQt.cmake -index c2eac76..b3131f0 100644 ---- cmake/modules/FindQt.cmake -+++ cmake/modules/FindQt.cmake -@@ -74,10 +74,18 @@ ENDMACRO(QT_GET_MOC_FLAGS) - - MACRO(QT_CREATE_MOC_COMMAND infile outfile moc_flags moc_options) - IF(QT_VERSION_MAJOR MATCHES 4) -- QT4_CREATE_MOC_COMMAND(${infile} ${outfile} "${moc_flags}" "${moc_options}") -+ IF(CMAKE_VERSION VERSION_GREATER 2.8.11.20130607) -+ QT4_CREATE_MOC_COMMAND(${infile} ${outfile} "${moc_flags}" "${moc_options}" "") -+ ELSE(CMAKE_VERSION VERSION_GREATER 2.8.11.20130607) -+ QT4_CREATE_MOC_COMMAND(${infile} ${outfile} "${moc_flags}" "${moc_options}") -+ ENDIF(CMAKE_VERSION VERSION_GREATER 2.8.11.20130607) - ELSE(QT_VERSION_MAJOR MATCHES 4) - IF(QT_VERSION_MAJOR MATCHES 5) -- QT5_CREATE_MOC_COMMAND(${infile} ${outfile} "${moc_flags}" "${moc_options}") -+ IF(CMAKE_VERSION VERSION_GREATER 2.8.11.20130607) -+ QT5_CREATE_MOC_COMMAND(${infile} ${outfile} "${moc_flags}" "${moc_options}" "") -+ ELSE(CMAKE_VERSION VERSION_GREATER 2.8.11.20130607) -+ QT5_CREATE_MOC_COMMAND(${infile} ${outfile} "${moc_flags}" "${moc_options}") -+ ENDIF(CMAKE_VERSION VERSION_GREATER 2.8.11.20130607) - ENDIF(QT_VERSION_MAJOR MATCHES 5) - ENDIF(QT_VERSION_MAJOR MATCHES 4) - ENDMACRO(QT_CREATE_MOC_COMMAND) --- -cgit v0.9.0.2-2-gbebe diff --git a/net-im/telepathy-qt4/pkg-plist b/net-im/telepathy-qt4/pkg-plist index ee986439b347..a5fbd46fffe5 100644 --- a/net-im/telepathy-qt4/pkg-plist +++ b/net-im/telepathy-qt4/pkg-plist @@ -63,10 +63,13 @@ include/telepathy-qt4/TelepathyQt/ChannelInterfaceHoldInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceMediaSignallingInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceMessagesInterface include/telepathy-qt4/TelepathyQt/ChannelInterfacePasswordInterface +include/telepathy-qt4/TelepathyQt/ChannelInterfaceRoomConfigInterface +include/telepathy-qt4/TelepathyQt/ChannelInterfaceRoomInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceSASLAuthenticationInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceSMSInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceSecurableInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceServicePointInterface +include/telepathy-qt4/TelepathyQt/ChannelInterfaceSubjectInterface include/telepathy-qt4/TelepathyQt/ChannelInterfaceTubeInterface include/telepathy-qt4/TelepathyQt/ChannelRequest include/telepathy-qt4/TelepathyQt/ChannelRequestHints @@ -134,9 +137,11 @@ include/telepathy-qt4/TelepathyQt/DBusProxyFactory include/telepathy-qt4/TelepathyQt/DBusTubeChannel include/telepathy-qt4/TelepathyQt/Debug include/telepathy-qt4/TelepathyQt/DebugReceiver -include/telepathy-qt4/TelepathyQt/Farsight/Channel -include/telepathy-qt4/TelepathyQt/Farsight/channel.h -include/telepathy-qt4/TelepathyQt/Farsight/global.h +include/telepathy-qt4/TelepathyQt/Farstream/Channel +include/telepathy-qt4/TelepathyQt/Farstream/Global +include/telepathy-qt4/TelepathyQt/Farstream/PendingChannel +include/telepathy-qt4/TelepathyQt/Farstream/channel.h +include/telepathy-qt4/TelepathyQt/Farstream/global.h include/telepathy-qt4/TelepathyQt/Feature include/telepathy-qt4/TelepathyQt/Features include/telepathy-qt4/TelepathyQt/FileTransferChannel @@ -379,20 +384,13 @@ lib/cmake/TelepathyQt4/TelepathyQt4Config.cmake lib/cmake/TelepathyQt4/TelepathyQt4ConfigVersion.cmake lib/cmake/TelepathyQt4/TelepathyQt4Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/TelepathyQt4/TelepathyQt4Targets.cmake -lib/cmake/TelepathyQt4Farsight/TelepathyQt4FarsightConfig.cmake -lib/cmake/TelepathyQt4Farsight/TelepathyQt4FarsightConfigVersion.cmake -lib/libtelepathy-qt4-farsight.so -lib/libtelepathy-qt4-farsight.so.2 -lib/libtelepathy-qt4-farsight.so.2.%%PORTVERSION%% +lib/cmake/TelepathyQt4Farstream/TelepathyQt4FarstreamConfig.cmake +lib/cmake/TelepathyQt4Farstream/TelepathyQt4FarstreamConfigVersion.cmake lib/libtelepathy-qt4.so lib/libtelepathy-qt4.so.2 lib/libtelepathy-qt4.so.2.%%PORTVERSION%% +lib/libtelepathy-qt4-farstream.so +lib/libtelepathy-qt4-farstream.so.2 +lib/libtelepathy-qt4-farstream.so.2.%%PORTVERSION%% +libdata/pkgconfig/TelepathyQt4Farstream.pc libdata/pkgconfig/TelepathyQt4.pc -libdata/pkgconfig/TelepathyQt4Farsight.pc -@dirrm lib/cmake/TelepathyQt4Farsight -@dirrm lib/cmake/TelepathyQt4 -@dirrmtry lib/cmake -@dirrm include/telepathy-qt4/TelepathyQt/_gen -@dirrm include/telepathy-qt4/TelepathyQt/Farsight -@dirrm include/telepathy-qt4/TelepathyQt -@dirrm include/telepathy-qt4 diff --git a/net-im/telepathy-rakia/Makefile b/net-im/telepathy-rakia/Makefile new file mode 100644 index 000000000000..07b34b7fcb38 --- /dev/null +++ b/net-im/telepathy-rakia/Makefile @@ -0,0 +1,26 @@ +# Created by: Gustau Perez i Querol <gustau.perez@gmail.com> +# $FreeBSD$ +# $MCom: ports/trunk/net-im/telepathy-rakia/Makefile 19804 2014-08-13 14:55:11Z kwm $ + +PORTNAME= telepathy-rakia +PORTVERSION= 0.8.0 +CATEGORIES= net-im +MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ + +MAINTAINER= gnome@FreeBSD.org +COMMENT= SIP connection manager based around the Sofia-SIP library + +LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ + libsofia-sip-ua-glib.so:${PORTSDIR}/net/sofia-sip \ + libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib + +USES= gmake pathfix pkgconfig python:build +USE_GNOME= glib20 libxslt:build +GNU_CONFIGURE= yes +USE_OPENSSL= yes +INSTALL_TARGET= install-strip + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.include <bsd.port.mk> diff --git a/net-im/telepathy-rakia/distinfo b/net-im/telepathy-rakia/distinfo new file mode 100644 index 000000000000..0fad9b55e69d --- /dev/null +++ b/net-im/telepathy-rakia/distinfo @@ -0,0 +1,2 @@ +SHA256 (telepathy-rakia-0.8.0.tar.gz) = 1baebcd391e0ba199f2f6faa2c99b53ba03e732e80290827de5e42889473bda1 +SIZE (telepathy-rakia-0.8.0.tar.gz) = 659116 diff --git a/net-im/telepathy-rakia/pkg-descr b/net-im/telepathy-rakia/pkg-descr new file mode 100644 index 000000000000..ae884a3b51be --- /dev/null +++ b/net-im/telepathy-rakia/pkg-descr @@ -0,0 +1,4 @@ +A SIP connection manager based around the Sofia-SIP library (formerly +known as Telepathy-SofiaSIP) + +WWW: http://telepathy.freedesktop.org/wiki/Components/ diff --git a/net-im/telepathy-rakia/pkg-plist b/net-im/telepathy-rakia/pkg-plist new file mode 100644 index 000000000000..df3b4552419f --- /dev/null +++ b/net-im/telepathy-rakia/pkg-plist @@ -0,0 +1,14 @@ +include/telepathy-rakia-0.7/rakia/base-connection.h +include/telepathy-rakia-0.7/rakia/codec-param-formats.h +include/telepathy-rakia-0.7/rakia/connection-aliasing.h +include/telepathy-rakia-0.7/rakia/debug.h +include/telepathy-rakia-0.7/rakia/event-target.h +include/telepathy-rakia-0.7/rakia/handles.h +include/telepathy-rakia-0.7/rakia/media-manager.h +include/telepathy-rakia-0.7/rakia/sofia-decls.h +include/telepathy-rakia-0.7/rakia/text-manager.h +include/telepathy-rakia-0.7/rakia/util.h +libexec/telepathy-rakia +man/man8/telepathy-rakia.8.gz +share/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.sofiasip.service +share/telepathy/managers/rakia.manager diff --git a/net-im/telepathy-salut/Makefile b/net-im/telepathy-salut/Makefile index 66e90bc5fd3e..96b960acb5c6 100644 --- a/net-im/telepathy-salut/Makefile +++ b/net-im/telepathy-salut/Makefile @@ -1,9 +1,10 @@ +# Created by: Florent Thoumie <flz@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/net-im/telepathy-salut/Makefile,v 1.9 2012/08/17 19:06:46 kwm Exp $ +# $MCom: ports/trunk/net-im/telepathy-salut/Makefile 19802 2014-08-13 12:13:08Z gusi $ PORTNAME= telepathy-salut -PORTVERSION= 0.8.0 -PORTREVISION= 2 +PORTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ @@ -22,9 +23,12 @@ USE_SQLITE= 3 CONFIGURE_ARGS= --disable-Werror --enable-avahi-tests=no CPPFLAGS+= ${PTHREAD_CFLAGS} LDFLAGS+= ${PTHREAD_LIBS} +INSTALL_TARGET= install-strip + +PLIST_SUB+= VERSION=${PORTVERSION} post-patch: - @${REINPLACE_CMD} -e 's|make -C|${MAKE_CMD} -C|g' \ + @${REINPLACE_CMD} -e 's|make -C|${GMAKE} -C|g' \ ${WRKSRC}/src/Makefile.in \ ${WRKSRC}/tests/Makefile.in diff --git a/net-im/telepathy-salut/distinfo b/net-im/telepathy-salut/distinfo index 555f29083631..4cd8d153fc8b 100644 --- a/net-im/telepathy-salut/distinfo +++ b/net-im/telepathy-salut/distinfo @@ -1,2 +1,2 @@ -SHA256 (telepathy-salut-0.8.0.tar.gz) = f504faf472e81c17c2707696124d4219fe869c83d7cdbbe53a035eb724bfb5ce -SIZE (telepathy-salut-0.8.0.tar.gz) = 1822511 +SHA256 (telepathy-salut-0.8.1.tar.gz) = 70b9108ac8b511b7688e1b580de4ddb8981603c3cbde01f287ef8f9cb708618e +SIZE (telepathy-salut-0.8.1.tar.gz) = 1823482 diff --git a/net-im/telepathy-salut/pkg-plist b/net-im/telepathy-salut/pkg-plist index 8a2c36eaef28..760b1f42103a 100644 --- a/net-im/telepathy-salut/pkg-plist +++ b/net-im/telepathy-salut/pkg-plist @@ -1,7 +1,6 @@ -man/man8/telepathy-salut.8.gz -lib/telepathy/salut-0/lib/libsalut-plugins-0.8.0.so +lib/telepathy/salut-0/lib/libsalut-plugins-%%VERSION%%.so lib/telepathy/salut-0/lib/libsalut-plugins.so -lib/telepathy/salut-0/lib/libwocky-telepathy-salut-0.8.0.so +lib/telepathy/salut-0/lib/libwocky-telepathy-salut-%%VERSION%%.so lib/telepathy/salut-0/lib/libwocky.a lib/telepathy/salut-0/lib/libwocky.so libexec/telepathy-salut @@ -9,10 +8,3 @@ man/man8/telepathy-salut.8.gz share/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.salut.service %%DOCSDIR%%/clique.html share/telepathy/managers/salut.manager -@dirrmtry share/telepathy/managers -@dirrmtry share/telepathy -@dirrm %%DOCSDIR%% -@dirrmtry lib/telepathy/salut-0/plugins -@dirrmtry lib/telepathy/salut-0/lib -@dirrmtry lib/telepathy/salut-0 -@dirrmtry lib/telepathy |