Index: devel/ptlib/Makefile =================================================================== --- devel/ptlib/Makefile (revision 322789) +++ devel/ptlib/Makefile (working copy) @@ -2,85 +2,132 @@ # $FreeBSD$ PORTNAME= ptlib -PORTVERSION= 2.4.4 -PORTREVISION= 2 +PORTVERSION= 2.10.10 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/ptlib/2.4 -DISTNAME= ptlib-${PORTVERSION} +MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org -COMMENT= Cross platform C++ library, used by OpenH323 +COMMENT= Cross platform C++ library, used by OPAL -LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 +LICENSE= MPL -CONFLICTS= pwlib-1.* ptlib-2.6.* +LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 -USES= bison -USE_GMAKE= yes +CONFLICTS= pwlib-1.* + +USE_XZ= yes +USES= bison gmake pkgconfig +USE_AUTOTOOLS= autoconf:env #automake:env GNU_CONFIGURE= yes -USE_GNOME= pkgconfig -WANT_GNOME= yes -WANT_SDL= yes USE_OPENSSL= yes USE_LDCONFIG= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -NO_LATEST_LINK= yes +CONFIGURE_ARGS+=--enable-audio \ + --enable-ipv6 \ + --enable-exceptions \ + --enable-oss \ + --enable-plugins -.include +CONFIGURE_ARGS+=--disable-lua \ + --disable-sasl -.if ${OSVERSION} >= 800059 -EXTRA_PATCHES= ${FILESDIR}/extra-src_ptlib_unix_socket.cxx -.endif +# --with-expat-dir="${LOCALBASE}" +CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ + OPENSSL_LIBS="-L${OPENSSLLIB} -lssl" -CONFIGURE_ENV= \ - OPENSSL_CFLAGS="-I/usr/include" \ - OPENSSL_LIBS="-lssl" -CONFIGURE_ARGS+= \ - --disable-atomicity \ - --with-expat-dir="${LOCALBASE}" \ - --enable-oss \ - --enable-alsa=no \ - --disable-odbc +OPTIONS_DEFINE= BSDVIDEO DEBUG ODBC ALSA JABBER V4L SDL LDAP PULSEAUDIO +OPTIONS_DEFAULT=BSDVIDEO SDL V4L JABBER + +BSDVIDEO_DESC= BSD video support +DEBUG_DESC= Install debug library + +.include + +PLIST_SUB+= PORTVERSION=${PORTVERSION} \ + PVERSION_MAJOR=${PVERSION_MAJOR} \ + PVERSION_MINOR=${PVERSION_MINOR} + +PVERSION_MAJOR= ${PORTVERSION:C/.[0-9]+.[0-9]+.//} +PVERSION_MINOR= ${PORTVERSION:C/.[0-9]+$//g} + +.if ${PORT_OPTIONS:MDEBUG} +ALL_TARGET= optshared debugshared +PLIST_SUB+= DEBUG="" +.else ALL_TARGET= optshared +PLIST_SUB+= DEBUG="@comment " +.endif -# if explicitely asked for, depend upon it -.if defined(WITH_SDL) -USE_SDL+= sdl -CONFIGURE_ENV+= SDL_CFLAGS="`sdl-config --cflags`" \ - SDL_LIBS="`sdl-config --libs`" -MAKE_ENV+= SDL_CFLAGS="`sdl-config --cflags`" \ - SDL_LIBS="`sdl-config --libs`" +.if ${PORT_OPTIONS:MPULSEAUDIO} +LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio +CONFIGURE_ARGS+=--enable-pulse +.else +CONFIGURE_ARGS+=--disable-pulse .endif -# if explicitely disabled, do not depend upon it -.if defined(WITHOUT_SDL) -CONFIGURE_ARGS+= --disable-sdl +.if ${PORT_OPTIONS:MJABBER} +CONFIGURE_ARGS+=--enable-jabber +PLLIB_VIDEO=1 .endif -# if nobody cares, use it if it is installed already -.if !defined(WITHOUT_SDL) && !defined(WITH_SDL) -.if ${HAVE_SDL:Msdl} -USE_SDL+= sdl -CONFIGURE_ENV+= SDL_CFLAGS="`sdl-config --cflags`" \ - SDL_LIBS="`sdl-config --libs`" -MAKE_ENV+= SDL_CFLAGS="`sdl-config --cflags`" \ - SDL_LIBS="`sdl-config --libs`" +.if ${PORT_OPTIONS:MODBC} +LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC +CONFIGURE_ARGS+=--enable-odbc .else -CONFIGURE_ARGS+= --disable-sdl +CONFIGURE_ARGS+=--disable-odbc .endif + +.if ${PORT_OPTIONS:MALSA} +LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib +CONFIGURE_ARGS+=--enable-alsa +PLIST_SUB+= ALSA="" +.else +CONFIGURE_ARGS+=--disable-alsa +PLIST_SUB+= ALSA="@comment " .endif -.if !defined(WITHOUT_PLUGINS) -CONFIGURE_ARGS+= --enable-plugins +.if ${PORT_OPTIONS:MBSDVIDEO} +CONFIGURE_ARGS+=--enable-bsdvideo +PLIST_SUB+= BSDVIDEO="" +PTLIB_VIDEO=1 +.else +CONFIGURE_ARGS+=--disable-bsdvideo +PLIST_SUB+= BSDVIDEO="@comment " .endif -#disable OpenLDAP support in PWLIB -.if defined(WITHOUT_LDAP) -CONFIGURE_ARGS+= --disable-openldap +.if ${PORT_OPTIONS:MV4L} +BUILD_DEPENDS+= v4l_compat>=0:${PORTSDIR}/multimedia/v4l_compat +LIB_DEPENDS+= v4l2:${PORTSDIR}/multimedia/libv4l +CONFIGURE_ARGS+=--enable-v4l --enable-v4l2 +PLIST_SUB+= V4L="" +PTLIB_VIDEO=1 .else +CONFIGURE_ARGS+=--disable-v4l --disable-v4l2 +PLIST_SUB+= V4L="@comment " +.endif + +.if defined(PTLIB_VIDEO) +CONFIGURE_ARGS+=--enable-video --enable-vidfile +PLIST_SUB+= VIDEODIR="" +.else +CONFIGURE_ARGS+=--disable-video --disable-vidfile +PLIST_SUB+= VIDEODIR="@comment " +.endif + +.if ${PORT_OPTIONS:MSDL} +USE_SDL+= sdl +CONFIGURE_ARGS+=--enable-sdl +.else +CONFIGURE_ARGS+=--disable-sdl +.endif + +.if ${PORT_OPTIONS:MLDAP} USE_OPENLDAP= yes -CONFIGURE_ARGS+= --enable-openldap --with-ldap-dir="${LOCALBASE}" +CONFIGURE_ARGS+=--enable-openldap +.else +CONFIGURE_ARGS+=--disable-openldap .endif # ONLY FOR THE BRAVE! @@ -103,40 +150,24 @@ # ##enable libdc1394 #.if defined(WITH_DC1394) -#LIB_DEPENDS+= dc1394_control.13:${PORTSDIR}/devel/libdc1394 +#LIB_DEPENDS+= dc1394.2[0-9]:${PORTSDIR}/multimedia/libdc1394 #CONFIGURE_ARGS+= --enable-dc #PLIST_SUB+= DC1394="" #.else CONFIGURE_ARGS+= --disable-dc -PLIST_SUB+= DC1394="@comment " +#PLIST_SUB+= DC1394="@comment " #.endif -.if (${ARCH} == "amd64") || (${ARCH} == "ia64") || (${ARCH} == "sparc64") -CFLAGS+= -fPIC -.endif +post-patch: + @${REINPLACE_CMD} -e 's/RTF_WASCLONED/0x20000/' ${WRKSRC}/src/ptlib/unix/socket.cxx + cd ${WRKSRC}/plugins/ && autoreconf -fi -.if (${ARCH} == "i386") || (${ARCH} == "ia64") || (${ARCH} == "amd64") || (${ARCH} == "powerpc") || (${ARCH} == "sparc64") -CONFIGURE_ARGS+=--enable-bsdvideo -PLIST_SUB+= BSDVIDEO="" -.else -CONFIGURE_ARGS+=--disable-bsdvideo -PLIST_SUB+= BSDVIDEO="@comment " +post-install: + ${LN} -sf libpt.so.${PORTVERSION} ${PREFIX}/lib/libpt.so.${PVERSION_MAJOR} + ${LN} -sf libpt.so.${PORTVERSION} ${PREFIX}/lib/libpt.so.${PVERSION_MINOR} +.if ${PORT_OPTIONS:MDEBUG} + ${LN} -sf libpt_d.so.${PORTVERSION} ${PREFIX}/lib/libpt_d.so.${PVERSION_MAJOR} + ${LN} -sf libpt_d.so.${PORTVERSION} ${PREFIX}/lib/libpt_d.so.${PVERSION_MINOR} .endif -.if defined(WITH_V4L) || ( exists(${LOCALBASE}/include/linux/videodev.h) && \ - !defined(WITHOUT_V4L) ) -CONFIGURE_ARGS+=--enable-v4l -PLIST_SUB+= V4L="" -BUILD_DEPENDS+= ${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat -.else -CONFIGURE_ARGS+=--disable-v4l -PLIST_SUB+= V4L="@comment " -.endif - -post-patch: -.if ${ARCH} == sparc64 && ${OSVERSION} <= 700003 - @${REINPLACE_CMD} -e 's|P_PTHREADS_XPG6|0|' \ - ${WRKSRC}/src/ptlib/unix/tlibthrd.cxx -.endif - -.include +.include Index: devel/ptlib/distinfo =================================================================== --- devel/ptlib/distinfo (revision 322789) +++ devel/ptlib/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (ptlib-2.4.4.tar.gz) = bb8ba95d522f0767d8e3bead7512a05fbffce5abaeb9ec1c6e1ed2ccc02a24d1 -SIZE (ptlib-2.4.4.tar.gz) = 4308282 +SHA256 (ptlib-2.10.10.tar.xz) = 7fcaabe194cbd3bc0b370b951dffd19cfe7ea0298bfff6aecee948e97f3207e4 +SIZE (ptlib-2.10.10.tar.xz) = 2520444 Index: devel/ptlib/files/extra-src_ptlib_unix_socket.cxx =================================================================== --- devel/ptlib/files/extra-src_ptlib_unix_socket.cxx (revision 322789) +++ devel/ptlib/files/extra-src_ptlib_unix_socket.cxx (working copy) @@ -1,13 +0,0 @@ ---- src/ptlib/unix/socket.cxx.orig 2009-12-12 11:42:03.000000000 +0800 -+++ src/ptlib/unix/socket.cxx 2009-12-12 11:46:09.000000000 +0800 -@@ -1144,10 +1144,6 @@ PBoolean process_rtentry(struct rt_msghd - if ((~rtm->rtm_flags&RTF_LLINFO) - #if defined(P_NETBSD) || defined(P_QNX) - && (~rtm->rtm_flags&RTF_CLONED) // Net BSD has flag one way --#elif !defined(P_OPENBSD) -- && (~rtm->rtm_flags&RTF_WASCLONED) // Free BSD/MAC has it another --#else -- // Open BSD does not have it at all! - #endif - ) { - Index: devel/ptlib/files/patch-Makefile.in =================================================================== --- devel/ptlib/files/patch-Makefile.in (revision 322789) +++ devel/ptlib/files/patch-Makefile.in (working copy) @@ -1,41 +0,0 @@ ---- Makefile.in.orig 2009-01-12 06:53:18.000000000 +0800 -+++ Makefile.in 2009-02-23 10:03:52.000000000 +0800 -@@ -85,11 +85,11 @@ - $(DESTDIR)$(PREFIX)/share/ptlib/make ; \ - do mkdir -p $$dir ; chmod 755 $$dir ; \ - done ) -- $(INSTALL) -m 444 $(PT_LIBDIR)/$(PTLIB_FILE).@MAJOR_VERSION@.@MINOR_VERSION@@BUILD_TYPE@@BUILD_NUMBER@ $(DESTDIR)$(LIBDIR) -+ $(INSTALL) -m 444 $(PT_LIBDIR)/$(PTLIB_FILE).@MAJOR_VERSION@ $(DESTDIR)$(LIBDIR) - $(INSTALL) -m 444 $(PT_LIBDIR)/lib$(PTLIB_BASE)_s.a $(DESTDIR)$(LIBDIR) - (cd $(DESTDIR)$(LIBDIR) ; \ - rm -f $(PTLIB_FILE) ; \ -- ln -sf $(PTLIB_FILE).@MAJOR_VERSION@.@MINOR_VERSION@@BUILD_TYPE@@BUILD_NUMBER@ $(PTLIB_FILE) \ -+ ln -sf $(PTLIB_FILE).@MAJOR_VERSION@ $(PTLIB_FILE) \ - ) - ifeq (1, $(HAS_PLUGINS)) - if test -e $(PT_LIBDIR)/device/; then \ -@@ -120,9 +120,9 @@ - $(INSTALL) -m 755 make/ptlib-config $(DESTDIR)$(PREFIX)/share/ptlib/make/ - (cd $(DESTDIR)$(PREFIX)/bin; rm -f ptlib-config ; ln -snf ../share/ptlib/make/ptlib-config ptlib-config) - -- mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig -- chmod 755 $(DESTDIR)$(LIBDIR)/pkgconfig -- $(INSTALL) -m 644 ptlib.pc $(DESTDIR)$(LIBDIR)/pkgconfig/ -+ mkdir -p $(DESTDIR)$(PREFIX)/libdata/pkgconfig -+ chmod 755 $(DESTDIR)$(PREFIX)/libdata/pkgconfig -+ $(INSTALL) -m 644 ptlib.pc $(DESTDIR)$(PREFIX)/libdata/pkgconfig/ - uninstall: - rm -rf $(DESTDIR)$(PREFIX)/include/ptlib \ - $(DESTDIR)$(PREFIX)/include/ptclib \ -@@ -130,9 +130,9 @@ - $(DESTDIR)$(PREFIX)/include/ptbuildopts.h \ - $(DESTDIR)$(PREFIX)/share/ptlib \ - $(DESTDIR)$(LIBDIR)/$(DEV_PLUGIN_DIR) \ -- $(DESTDIR)$(LIBDIR)/pkgconfig/ptlib.pc -+ $(DESTDIR)$(PREFIX)/libdata/pkgconfig/ptlib.pc - rm -f $(DESTDIR)$(LIBDIR)/lib$(PTLIB_BASE)_s.a \ - $(DESTDIR)$(LIBDIR)/$(PTLIB_FILE) \ -- $(DESTDIR)$(LIBDIR)/$(PTLIB_FILE).@MAJOR_VERSION@.@MINOR_VERSION@@BUILD_TYPE@@BUILD_NUMBER@ -+ $(DESTDIR)$(LIBDIR)/$(PTLIB_FILE).@MAJOR_VERSION@ - - # End of Makefile.in Index: devel/ptlib/files/patch-include_ptclib_vsdl.h =================================================================== --- devel/ptlib/files/patch-include_ptclib_vsdl.h (revision 322789) +++ devel/ptlib/files/patch-include_ptclib_vsdl.h (working copy) @@ -1,11 +0,0 @@ ---- include/ptclib/vsdl.h.orig 2008-09-25 14:51:15.000000000 +0800 -+++ include/ptclib/vsdl.h 2008-09-25 14:52:15.000000000 +0800 -@@ -33,7 +33,7 @@ - - #include - #if defined(P_FREEBSD) --#include -+#include - #else - #include - #endif Index: devel/ptlib/files/patch-make_lib.mak =================================================================== --- devel/ptlib/files/patch-make_lib.mak (revision 322789) +++ devel/ptlib/files/patch-make_lib.mak (working copy) @@ -1,14 +0,0 @@ ---- make/lib.mak.orig 2008-10-17 17:02:51.000000000 +0800 -+++ make/lib.mak 2009-02-23 10:18:32.000000000 +0800 -@@ -30,9 +30,9 @@ - - ifneq ($(OSTYPE),Darwin) - ifeq ($(BUILD_TYPE),.) -- LIBNAME_PAT = $(LIB_FILENAME).$(MAJOR_VERSION).$(MINOR_VERSION).$(BUILD_NUMBER) -+ LIBNAME_PAT = $(LIB_FILENAME).$(MAJOR_VERSION) - else -- LIBNAME_PAT = $(LIB_FILENAME).$(MAJOR_VERSION).$(MINOR_VERSION)-$(BUILD_TYPE)$(BUILD_NUMBER) -+ LIBNAME_PAT = $(LIB_FILENAME).$(MAJOR_VERSION) - endif - else - ifeq ($(BUILD_TYPE),.) Index: devel/ptlib/files/patch-plugins_configure =================================================================== --- devel/ptlib/files/patch-plugins_configure (revision 322789) +++ devel/ptlib/files/patch-plugins_configure (working copy) @@ -1,395 +0,0 @@ ---- plugins/configure.orig 2008-09-15 16:26:48.000000000 +0800 -+++ plugins/configure 2009-02-23 20:09:39.000000000 +0800 -@@ -4993,6 +4993,268 @@ fi - - - if test "${enable_bsdvideo}z" = "yesz" ; then -+ if test "${ac_cv_header_ioctl_meteor_h+set}" = set; then -+ { echo "$as_me:$LINENO: checking for dev/bktr/ioctl_meteor.h" >&5 -+echo $ECHO_N "checking for dev/bktr/ioctl_meteor.h... $ECHO_C" >&6; } -+if test "${ac_cv_header_ioctl_meteor_h+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_header_ioctl_meteor_h" >&5 -+echo "${ECHO_T}$ac_cv_header_ioctl_meteor_h" >&6; } -+else -+ # Is the header compilable? -+{ echo "$as_me:$LINENO: checking dev/bktr/ioctl_meteor.h usability" >&5 -+echo $ECHO_N "checking dev/bktr/ioctl_meteor.h usability... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+$ac_includes_default -+#include -+_ACEOF -+rm -f conftest.$ac_objext -+if { (ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_compile") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then -+ ac_header_compiler=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_compiler=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -+echo "${ECHO_T}$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ echo "$as_me:$LINENO: checking dev/bktr/ioctl_meteor.h presence" >&5 -+echo $ECHO_N "checking dev/bktr/ioctl_meteor.h presence... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+#include -+_ACEOF -+if { (ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } >/dev/null && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then -+ ac_header_preproc=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_preproc=no -+fi -+ -+rm -f conftest.err conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -+echo "${ECHO_T}$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in -+ yes:no: ) -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: proceeding with the compiler's result" >&2;} -+ ac_header_preproc=yes -+ ;; -+ no:yes:* ) -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_meteor.h: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_meteor.h: in the future, the compiler will take precedence" >&2;} -+ -+ ;; -+esac -+{ echo "$as_me:$LINENO: checking for dev/bktr/ioctl_meteor.h" >&5 -+echo $ECHO_N "checking for dev/bktr/ioctl_meteor.h... $ECHO_C" >&6; } -+if test "${ac_cv_header_ioctl_meteor_h+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_cv_header_ioctl_meteor_h=$ac_header_preproc -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_header_ioctl_meteor_h" >&5 -+echo "${ECHO_T}$ac_cv_header_ioctl_meteor_h" >&6; } -+ -+fi -+if test $ac_cv_header_ioctl_meteor_h = yes; then -+ BSDVIDEOHDR=1 -+fi -+ -+ -+ if test "${ac_cv_header_ioctl_bt848_h+set}" = set; then -+ { echo "$as_me:$LINENO: checking for dev/bktr/ioctl_bt848.h" >&5 -+echo $ECHO_N "checking for dev/bktr/ioctl_bt848.h... $ECHO_C" >&6; } -+if test "${ac_cv_header_ioctl_bt848_h+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_header_ioctl_bt848_h" >&5 -+echo "${ECHO_T}$ac_cv_header_ioctl_bt848_h" >&6; } -+else -+ # Is the header compilable? -+{ echo "$as_me:$LINENO: checking dev/bktr/ioctl_bt848.h usability" >&5 -+echo $ECHO_N "checking dev/bktr/ioctl_bt848.h usability... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+$ac_includes_default -+#include -+_ACEOF -+rm -f conftest.$ac_objext -+if { (ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_compile") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then -+ ac_header_compiler=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_compiler=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -+echo "${ECHO_T}$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ echo "$as_me:$LINENO: checking dev/bktr/ioctl_bt848.h presence" >&5 -+echo $ECHO_N "checking dev/bktr/ioctl_bt848.h presence... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+#include -+_ACEOF -+if { (ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } >/dev/null && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then -+ ac_header_preproc=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_preproc=no -+fi -+ -+rm -f conftest.err conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -+echo "${ECHO_T}$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in -+ yes:no: ) -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: proceeding with the compiler's result" >&2;} -+ ac_header_preproc=yes -+ ;; -+ no:yes:* ) -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: dev/bktr/ioctl_bt848.h: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: dev/bktr/ioctl_bt848.h: in the future, the compiler will take precedence" >&2;} -+ -+ ;; -+esac -+{ echo "$as_me:$LINENO: checking for dev/bktr/ioctl_bt848.h" >&5 -+echo $ECHO_N "checking for dev/bktr/ioctl_bt848.h... $ECHO_C" >&6; } -+if test "${ac_cv_header_ioctl_bt848_h+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_cv_header_ioctl_bt848_h=$ac_header_preproc -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_header_ioctl_bt848_h" >&5 -+echo "${ECHO_T}$ac_cv_header_ioctl_bt848_h" >&6; } -+ -+fi -+if test $ac_cv_header_ioctl_bt848_h = yes; then -+ BSDVIDEOHDR=1 -+fi -+ -+ -+# old path -+if test "$ac_cv_header_ioctl_bt848_h" != yes -a "$ac_cv_header_ioctl_meteor_h" != yes; then - if test "${ac_cv_header_machine_ioctl_meteor_h+set}" = set; then - { echo "$as_me:$LINENO: checking for machine/ioctl_meteor.h" >&5 - echo $ECHO_N "checking for machine/ioctl_meteor.h... $ECHO_C" >&6; } -@@ -5123,18 +5385,18 @@ if test $ac_cv_header_machine_ioctl_mete - fi - - -- if test "${ac_cv_header_i386_ioctl_meteor_h+set}" = set; then -- { echo "$as_me:$LINENO: checking for i386/ioctl_meteor.h" >&5 --echo $ECHO_N "checking for i386/ioctl_meteor.h... $ECHO_C" >&6; } --if test "${ac_cv_header_i386_ioctl_meteor_h+set}" = set; then -+ if test "${ac_cv_header_machine_ioctl_bt848_h+set}" = set; then -+ { echo "$as_me:$LINENO: checking for machine/ioctl_bt848.h" >&5 -+echo $ECHO_N "checking for machine/ioctl_bt848.h... $ECHO_C" >&6; } -+if test "${ac_cv_header_machine_ioctl_bt848_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - fi --{ echo "$as_me:$LINENO: result: $ac_cv_header_i386_ioctl_meteor_h" >&5 --echo "${ECHO_T}$ac_cv_header_i386_ioctl_meteor_h" >&6; } -+{ echo "$as_me:$LINENO: result: $ac_cv_header_machine_ioctl_bt848_h" >&5 -+echo "${ECHO_T}$ac_cv_header_machine_ioctl_bt848_h" >&6; } - else - # Is the header compilable? --{ echo "$as_me:$LINENO: checking i386/ioctl_meteor.h usability" >&5 --echo $ECHO_N "checking i386/ioctl_meteor.h usability... $ECHO_C" >&6; } -+{ echo "$as_me:$LINENO: checking machine/ioctl_bt848.h usability" >&5 -+echo $ECHO_N "checking machine/ioctl_bt848.h usability... $ECHO_C" >&6; } - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -5142,7 +5404,7 @@ cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - $ac_includes_default --#include -+#include - _ACEOF - rm -f conftest.$ac_objext - if { (ac_try="$ac_compile" -@@ -5174,15 +5436,15 @@ rm -f core conftest.err conftest.$ac_obj - echo "${ECHO_T}$ac_header_compiler" >&6; } - - # Is the header present? --{ echo "$as_me:$LINENO: checking i386/ioctl_meteor.h presence" >&5 --echo $ECHO_N "checking i386/ioctl_meteor.h presence... $ECHO_C" >&6; } -+{ echo "$as_me:$LINENO: checking machine/ioctl_bt848.h presence" >&5 -+echo $ECHO_N "checking machine/ioctl_bt848.h presence... $ECHO_C" >&6; } - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF - cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ --#include -+#include - _ACEOF - if { (ac_try="$ac_cpp conftest.$ac_ext" - case "(($ac_try" in -@@ -5215,43 +5477,44 @@ echo "${ECHO_T}$ac_header_preproc" >&6; - # So? What about this header? - case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: accepted by the compiler, rejected by the preprocessor!" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: accepted by the compiler, rejected by the preprocessor!" >&2;} -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: proceeding with the compiler's result" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: proceeding with the compiler's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: present but cannot be compiled" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: present but cannot be compiled" >&2;} -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: check for missing prerequisite headers?" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: check for missing prerequisite headers?" >&2;} -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: see the Autoconf documentation" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: see the Autoconf documentation" >&2;} -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: section \"Present But Cannot Be Compiled\"" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: section \"Present But Cannot Be Compiled\"" >&2;} -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: proceeding with the preprocessor's result" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: proceeding with the preprocessor's result" >&2;} -- { echo "$as_me:$LINENO: WARNING: i386/ioctl_meteor.h: in the future, the compiler will take precedence" >&5 --echo "$as_me: WARNING: i386/ioctl_meteor.h: in the future, the compiler will take precedence" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: machine/ioctl_bt848.h: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: machine/ioctl_bt848.h: in the future, the compiler will take precedence" >&2;} - - ;; - esac --{ echo "$as_me:$LINENO: checking for i386/ioctl_meteor.h" >&5 --echo $ECHO_N "checking for i386/ioctl_meteor.h... $ECHO_C" >&6; } --if test "${ac_cv_header_i386_ioctl_meteor_h+set}" = set; then -+{ echo "$as_me:$LINENO: checking for machine/ioctl_bt848.h" >&5 -+echo $ECHO_N "checking for machine/ioctl_bt848.h... $ECHO_C" >&6; } -+if test "${ac_cv_header_machine_ioctl_bt848_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else -- ac_cv_header_i386_ioctl_meteor_h=$ac_header_preproc -+ ac_cv_header_machine_ioctl_bt848_h=$ac_header_preproc - fi --{ echo "$as_me:$LINENO: result: $ac_cv_header_i386_ioctl_meteor_h" >&5 --echo "${ECHO_T}$ac_cv_header_i386_ioctl_meteor_h" >&6; } -+{ echo "$as_me:$LINENO: result: $ac_cv_header_machine_ioctl_bt848_h" >&5 -+echo "${ECHO_T}$ac_cv_header_machine_ioctl_bt848_h" >&6; } - - fi --if test $ac_cv_header_i386_ioctl_meteor_h = yes; then -+if test $ac_cv_header_machine_ioctl_bt848_h = yes; then - BSDVIDEOHDR=1 - fi -- -+fi -+# old path - end - - if test "${ac_cv_header_dev_ic_bt8xx_h+set}" = set; then - { echo "$as_me:$LINENO: checking for dev/ic/bt8xx.h" >&5 Index: devel/ptlib/files/patch-plugins_configure.in =================================================================== --- devel/ptlib/files/patch-plugins_configure.in (revision 0) +++ devel/ptlib/files/patch-plugins_configure.in (working copy) @@ -0,0 +1,10 @@ +--- plugins/configure.in.orig 2013-07-08 22:41:36.000000000 +0200 ++++ plugins/configure.in 2013-07-08 22:44:52.000000000 +0200 +@@ -250,6 +250,7 @@ + AC_ARG_ENABLE(bsdvideo, [ --enable-bsdvideo enable BSD video support],,enable_bsdvideo=yes) + + if test "${enable_bsdvideo}z" = "yesz" ; then ++ AC_CHECK_HEADER(dev/bktr/ioctl_meteor.h, BSDVIDEOHDR=1) + AC_CHECK_HEADER(machine/ioctl_meteor.h, BSDVIDEOHDR=1) + AC_CHECK_HEADER(i386/ioctl_meteor.h, BSDVIDEOHDR=1) + AC_CHECK_HEADER(dev/ic/bt8xx.h, BSDVIDEOHDR=1) Index: devel/ptlib/files/patch-plugins_vidinput_bsd_h =================================================================== --- devel/ptlib/files/patch-plugins_vidinput_bsd_h (revision 322789) +++ devel/ptlib/files/patch-plugins_vidinput_bsd_h (working copy) @@ -1,22 +0,0 @@ ---- plugins/vidinput_bsd/vidinput_bsd.h.orig 2009-01-12 06:52:59.000000000 +0800 -+++ plugins/vidinput_bsd/vidinput_bsd.h 2009-02-23 16:33:18.000000000 +0800 -@@ -17,8 +17,10 @@ - #include - # if __FreeBSD_version >= 502100 - #include -+#include - # else - #include -+#include - # endif - #endif - -@@ -62,7 +64,7 @@ public: - - static PStringList GetInputDeviceNames(); - -- PStringList GetDeviceNames() const -+ PStringArray GetDeviceNames() const - { return GetInputDeviceNames(); } - - PINDEX GetMaxFrameBytes(); Index: devel/ptlib/files/patch-src__ptlib__common__osutils.cxx =================================================================== --- devel/ptlib/files/patch-src__ptlib__common__osutils.cxx (revision 322789) +++ devel/ptlib/files/patch-src__ptlib__common__osutils.cxx (working copy) @@ -1,27 +0,0 @@ ---- ./src/ptlib/common/osutils.cxx.orig 2009-02-14 22:04:50.000000000 +0100 -+++ ./src/ptlib/common/osutils.cxx 2009-02-14 22:04:55.000000000 +0100 -@@ -2152,21 +2152,21 @@ - PReadWriteMutex::Nest * PReadWriteMutex::GetNest() const - { - PWaitAndSignal mutex(nestingMutex); -- return nestedThreads.GetAt(POrdinalKey((PINDEX)PThread::GetCurrentThreadId())); -+ return nestedThreads.GetAt(POrdinalKey((unsigned long)PThread::GetCurrentThreadId())); - } - - - void PReadWriteMutex::EndNest() - { - nestingMutex.Wait(); -- nestedThreads.RemoveAt(POrdinalKey((PINDEX)PThread::GetCurrentThreadId())); -+ nestedThreads.RemoveAt(POrdinalKey((unsigned long)PThread::GetCurrentThreadId())); - nestingMutex.Signal(); - } - - - PReadWriteMutex::Nest & PReadWriteMutex::StartNest() - { -- POrdinalKey threadId = (PINDEX)PThread::GetCurrentThreadId(); -+ POrdinalKey threadId = (unsigned long)PThread::GetCurrentThreadId(); - - nestingMutex.Wait(); - Index: devel/ptlib/files/patch-src__ptlib__unix__svcproc.cxx =================================================================== --- devel/ptlib/files/patch-src__ptlib__unix__svcproc.cxx (revision 322789) +++ devel/ptlib/files/patch-src__ptlib__unix__svcproc.cxx (working copy) @@ -1,26 +0,0 @@ ---- ./src/ptlib/unix/svcproc.cxx.orig 2009-02-14 22:03:27.000000000 +0100 -+++ ./src/ptlib/unix/svcproc.cxx 2009-02-14 22:03:32.000000000 +0100 -@@ -165,7 +165,7 @@ - #elif defined(BE_THREADS) - thread_id tid = ::find_thread(NULL); - #else -- unsigned tid = (unsigned) pthread_self(); -+ unsigned long tid = (unsigned long)pthread_self(); - #endif - *out << "ThreadID=0x" - << setfill('0') << ::hex -@@ -719,12 +719,12 @@ - #elif defined(BE_THREADS) - thread_id tid = ::find_thread(NULL); - #else -- unsigned tid = (unsigned) pthread_self(); -+ unsigned long tid = (unsigned long)pthread_self(); - #endif - PThread * thread_ptr = activeThreads.GetAt(tid); - - char msg[200]; -- sprintf(msg, "\nCaught %s, thread_id=%u", sigmsg, tid); -+ sprintf(msg, "\nCaught %s, thread_id=%lu", sigmsg, tid); - - if (thread_ptr != NULL) { - PString thread_name = thread_ptr->GetThreadName(); Index: devel/ptlib/files/patch-src__ptlib__unix__tlib.cxx =================================================================== --- devel/ptlib/files/patch-src__ptlib__unix__tlib.cxx (revision 322789) +++ devel/ptlib/files/patch-src__ptlib__unix__tlib.cxx (working copy) @@ -1,11 +0,0 @@ ---- ./src/ptlib/unix/tlib.cxx.orig 2009-02-14 22:02:51.000000000 +0100 -+++ ./src/ptlib/unix/tlib.cxx 2009-02-14 22:03:09.000000000 +0100 -@@ -400,7 +400,7 @@ - { - if (PProcessInstance != NULL) { - PWaitAndSignal m(PProcessInstance->threadMutex); -- PThread & thread = PProcessInstance->activeThreads[(unsigned)id]; -+ PThread & thread = PProcessInstance->activeThreads[(unsigned long)id]; - return thread.GetThreadName(); - } - return psprintf("%08x", id); Index: devel/ptlib/files/patch-src__ptlib__unix__tlibthrd.cxx =================================================================== --- devel/ptlib/files/patch-src__ptlib__unix__tlibthrd.cxx (revision 322789) +++ devel/ptlib/files/patch-src__ptlib__unix__tlibthrd.cxx (working copy) @@ -1,47 +0,0 @@ ---- ./src/ptlib/unix/tlibthrd.cxx.orig 2009-02-14 22:04:11.000000000 +0100 -+++ ./src/ptlib/unix/tlibthrd.cxx 2009-02-14 22:04:18.000000000 +0100 -@@ -216,7 +216,7 @@ - { - PWaitAndSignal m(threadMutex); - -- if (!activeThreads.Contains((unsigned)id)) -+ if (!activeThreads.Contains((unsigned long)id)) - return PFalse; - - return pthread_kill(id, sig) == 0; -@@ -254,7 +254,7 @@ - #endif - - ((PProcess *)this)->activeThreads.DisallowDeleteObjects(); -- ((PProcess *)this)->activeThreads.SetAt((unsigned)PX_threadId, this); -+ ((PProcess *)this)->activeThreads.SetAt((unsigned long)PX_threadId, this); - - PX_firstTimeStart = PFalse; - } -@@ -370,7 +370,7 @@ - PAssertPTHREAD(pthread_create, (&PX_threadId, &threadAttr, PX_ThreadStart, this)); - - // put the thread into the thread list -- process.activeThreads.SetAt((unsigned)PX_threadId, this); -+ process.activeThreads.SetAt((unsigned long)PX_threadId, this); - if (process.activeThreads.GetSize() > highWaterMark) - newHighWaterMark = highWaterMark = process.activeThreads.GetSize(); - -@@ -693,7 +693,7 @@ - { - PProcess & process = PProcess::Current(); - process.threadMutex.Wait(); -- PThread * thread = process.activeThreads.GetAt((unsigned)pthread_self()); -+ PThread * thread = process.activeThreads.GetAt((unsigned long)pthread_self()); - process.threadMutex.Signal(); - return thread; - } -@@ -834,7 +834,7 @@ - } - - // remove this thread from the active thread list -- process.activeThreads.SetAt((unsigned)id, NULL); -+ process.activeThreads.SetAt((unsigned long)id, NULL); - - // delete the thread if required, note this is done this way to avoid - // a race condition, the thread ID cannot be zeroed before the if! Index: devel/ptlib/files/patch-src_ptclib_vsdl.cxx =================================================================== --- devel/ptlib/files/patch-src_ptclib_vsdl.cxx (revision 322789) +++ devel/ptlib/files/patch-src_ptclib_vsdl.cxx (working copy) @@ -1,11 +0,0 @@ ---- src/ptclib/vsdl.cxx.orig 2008-09-25 14:50:57.000000000 +0800 -+++ src/ptclib/vsdl.cxx 2008-09-25 14:51:48.000000000 +0800 -@@ -44,7 +44,7 @@ - extern "C" { - - #if defined(P_FREEBSD) --#include -+#include - #else - #include - #endif Index: devel/ptlib/pkg-descr =================================================================== --- devel/ptlib/pkg-descr (revision 322789) +++ devel/ptlib/pkg-descr (working copy) @@ -2,6 +2,6 @@ applications that will compile and run on the BSD Unixes, Windows, Linux and a few other Unix variants. It was developed by Equivalence Ltd Pty. -It is used by the OpenH323 library. +It is used by the OPAL library. -WWW: http://www.openh323.org/ +WWW: http://www.opalvoip.org Index: devel/ptlib/pkg-plist =================================================================== --- devel/ptlib/pkg-plist (revision 322789) +++ devel/ptlib/pkg-plist (working copy) @@ -4,6 +4,7 @@ include/ptclib/asner.h include/ptclib/asnper.h include/ptclib/asnxer.h +include/ptclib/cli.h include/ptclib/cypher.h include/ptclib/delaychan.h include/ptclib/dtmf.h @@ -17,6 +18,7 @@ include/ptclib/inetmail.h include/ptclib/inetprot.h include/ptclib/ipacl.h +include/ptclib/lua.h include/ptclib/memfile.h include/ptclib/mime.h include/ptclib/modem.h @@ -23,6 +25,7 @@ include/ptclib/paec.h include/ptclib/pasn.h include/ptclib/pdns.h +include/ptclib/pffvdev.h include/ptclib/pils.h include/ptclib/pldap.h include/ptclib/pnat.h @@ -46,10 +49,11 @@ include/ptclib/rfc1155.h include/ptclib/shttpsvc.h include/ptclib/snmp.h -include/ptclib/sockagg.h include/ptclib/socks.h include/ptclib/telnet.h +include/ptclib/threadpool.h include/ptclib/url.h +include/ptclib/vcard.h include/ptclib/vsdl.h include/ptclib/vxml.h include/ptclib/xmpp.h @@ -66,7 +70,6 @@ include/ptlib/contain.h include/ptlib/contain.inl include/ptlib/critsec.h -include/ptlib/devplugin.h include/ptlib/dict.h include/ptlib/dynalink.h include/ptlib/ethsock.h @@ -77,7 +80,6 @@ include/ptlib/int64.h include/ptlib/ipdsock.h include/ptlib/ipsock.h -include/ptlib/ipxsock.h include/ptlib/lists.h include/ptlib/mail.h include/ptlib/mutex.h @@ -105,10 +107,10 @@ include/ptlib/socket.h include/ptlib/sockets.h include/ptlib/sound.h -include/ptlib/spxsock.h include/ptlib/svcproc.h include/ptlib/syncpoint.h include/ptlib/syncthrd.h +include/ptlib/syslog.h include/ptlib/tcpsock.h include/ptlib/textfile.h include/ptlib/thread.h @@ -130,6 +132,7 @@ include/ptlib/unix/ptlib/ipdsock.h include/ptlib/unix/ptlib/ipsock.h include/ptlib/unix/ptlib/maccoreaudio.h +include/ptlib/unix/ptlib/mail.h include/ptlib/unix/ptlib/mutex.h include/ptlib/unix/ptlib/pdirect.h include/ptlib/unix/ptlib/pipechan.h @@ -154,14 +157,23 @@ include/ptlib/unix/ptlib/timer.h include/ptlib/unix/ptlib/udpsock.h include/ptlib/unix/ptlib/video.h -include/ptlib/unix/ptlib/videoio.h include/ptlib/vconvert.h include/ptlib/video.h include/ptlib/videoio.h include/ptlib/videoio1394dc.h +include/ptlib/wxstring.h lib/libpt.so -lib/libpt.so.2 -lib/libpt_s.a +lib/libpt.so.%%PVERSION_MINOR%% +lib/libpt.so.%%PVERSION_MAJOR%% +lib/libpt.so.%%PORTVERSION%% +%%DEBUG%%lib/libpt_d.so +%%DEBUG%%lib/libpt_d.so.%%PVERSION_MINOR%% +%%DEBUG%%lib/libpt_d.so.%%PVERSION_MAJOR%% +%%DEBUG%%lib/libpt_d.so.%%PORTVERSION%% +lib/ptlib-%%PORTVERSION%%/devices/sound/oss_pwplugin.so +%%BSDVIDEO%%lib/ptlib-%%PORTVERSION%%/devices/videoinput/bsdvideo_pwplugin.so +%%V4L%%lib/ptlib-%%PORTVERSION%%/devices/videoinput/v4l_pwplugin.so +%%V4L%%lib/ptlib-%%PORTVERSION%%/devices/videoinput/v4l2_pwplugin.so libdata/pkgconfig/ptlib.pc share/ptlib/make/common.mak share/ptlib/make/lib.mak @@ -170,15 +182,13 @@ share/ptlib/make/ptlib-config share/ptlib/make/ptlib.mak share/ptlib/make/unix.mak -%%BSDVIDEO%%lib/ptlib-2.4.4/devices/videoinput/bsdvideo_pwplugin.so -%%BSDVIDEO%%lib/ptlib-2.4.4/devices/sound/oss_pwplugin.so @dirrm share/ptlib/make @dirrm share/ptlib +%%V4L%%@dirrm lib/ptlib-%%PORTVERSION%%/devices/videoinput +@dirrm lib/ptlib-%%PORTVERSION%%/devices/sound +@dirrm lib/ptlib-%%PORTVERSION%%/devices +@dirrm lib/ptlib-%%PORTVERSION%% @dirrm include/ptlib/unix/ptlib @dirrm include/ptlib/unix @dirrm include/ptlib @dirrm include/ptclib -%%BSDVIDEO%%@dirrm lib/ptlib-2.4.4/devices/videoinput -%%BSDVIDEO%%@dirrm lib/ptlib-2.4.4/devices/sound -%%BSDVIDEO%%@dirrm lib/ptlib-2.4.4/devices -%%BSDVIDEO%%@dirrm lib/ptlib-2.4.4 Index: net/opal/Makefile =================================================================== --- net/opal/Makefile (revision 322789) +++ net/opal/Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= opal -PORTVERSION= 2.2.11 -PORTREVISION= 7 +PORTVERSION= 3.10.10 CATEGORIES= net MASTER_SITES= GNOME @@ -10,49 +9,266 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= VoIP abstraction library -OPTIONS_DEFINE= FFMPEG SPEEX -OPTIONS_DEFAULT=FFMPEG SPEEX -FFMPEG_DESC= H263 audio/video codec support -SPEEX_DESC= Use audio/speex instead of bundled version +LICENSE= MPL -LIB_DEPENDS= pt_r:${PORTSDIR}/devel/pwlib +LIB_DEPENDS= pt.2:${PORTSDIR}/devel/ptlib -CONFLICTS= opal-3.* - -# In opal's Makefile the default make's target is optshared -ALL_TARGET= -j`${SYSCTL} -n hw.ncpu` optshared -USE_GMAKE= yes -USE_AUTOTOOLS= autoconf +USE_XZ= yes +USES= gmake pathfix GNU_CONFIGURE= yes USE_LDCONFIG= yes -MAKE_ARGS= -j`${SYSCTL} -n hw.ncpu` +MAKE_JOBS_UNSAFE= yes -CPPFLAGS+= -I${LOCALBASE}/include -I${WRKSRC}/include +CXXFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -PLIST_SUB= PORTVERSION=${PORTVERSION} -.include +OPTIONS_DEFINE= JAVA CELT ILBC GSM SPEEX THEORA FFMPEG X264 SIP H323 IAX \ + H224 H281 FAX MSRP SIPIM RTPTEXT H450 H460 H501 LID UVIDEO \ + AEC DEBUG +# ZRTP +OPTIONS_DEFAULT=CELT GSM SPEEX FFMPEG X264 SIP H224 H281 FAX MSRP SIPIM \ + RTPTEXT LID AEC +DEBUG_DESC= Install debug library +ZRTP_DESC= ZRTP protocol support +JAVA_DESC= Java JNI support +CELT_DESC= Celt codec from ports +ILBC_DESC= iLBC codec from ports +GSM_DESC= GSM codec from ports +SPEEX_DESC= SPEEX codec from ports +THEORA_DESC= Theora codec support +FFMPEG_DESC= Ffmpeg codec support +X264_DESC= x.264 codec support +SIP_DESC= SIP protocol support +H323_DESC= H.323 protocol support +IAX_DESC= IAX2 protocol support +H224_DESC= H.224 control protocol +H281_DESC= H.281 (Far End Camera Control) +FAX_DESC= Fax T.38 support +MSRP_DESC= MSRP protocol +SIPIM_DESC= SIP-IM protocol +RTPTEXT_DESC= RFC4103 Text RTP payload +H450_DESC= H.450 H.323 subset +H460_DESC= H.460 H.323 extension for NAT traversal +H501_DESC= H.501 H323 mobility extensions +LID_DESC= LID (Light-Weight Identity) support +UVIDEO_DESC= RFC4175 uncompressed video RTP payload +AEC_DESC= Accoustic echo cancellation -# Be sure to compile position-independent objects for the shared libraries -CFLAGS+= -fPIC +.include -.if ${OSVERSION} >= 900000 -BROKEN= does not compile on 9.X +.ifdef OPALDIR +.error OPALDIR is defined as an environment variable, or in the arguments \ + to "make". Please unset it and restart the build. .endif -.if ${PORT_OPTIONS:MFFMPEG} -LIB_DEPENDS+= avcodec:${PORTSDIR}/multimedia/ffmpeg -CONFIGURE_ARGS+=--enable-h263avcodec=${LOCALBASE}/include/ffmpeg +PLIST_SUB+= PORTVERSION=${PORTVERSION} \ + PVERSION_MAJOR=${PVERSION_MAJOR} \ + PVERSION_MINOR=${PVERSION_MINOR} + +PVERSION_MAJOR= ${PORTVERSION:C/.[0-9]+.[0-9]+$//g} +PVERSION_MINOR= ${PORTVERSION:C/.[0-9]+$//g} + +.if ${PORT_OPTIONS:MDEBUG} +ALL_TARGET= debug opt +PLIST_SUB+= DEBUG="" .else -CONFIGURE_ARGS+=--disable-h263avcodec +ALL_TARGET= opt +PLIST_SUB+= DEBUG="@comment " .endif +.if ${PORT_OPTIONS:MZRTP} +IGNORE= libzrtpcpp doesn't have ports SSL disable flag +.if !defined(SAFE_ZRTP) +IGNORE= please build devel/libzrtpcpp WITHOUT ports SSL and re-run build with SAFE_ZRTP set +.endif +LIB_DEPENDS+= zrtpcpp:${PORTSDIR}/devel/libzrtpcpp +CONFIGURE_ARGS+= --enable-zrtp +.else +CONFIGURE_ARGS+= --disable-zrtp +.endif + +.if ${PORT_OPTIONS:MGSM} +LIB_DEPENDS+= gsm:${PORTSDIR}/audio/gsm +.else +CONFIGURE_ARGS+= --enable-localgsm +.endif + .if ${PORT_OPTIONS:MSPEEX} LIB_DEPENDS+= speex:${PORTSDIR}/audio/speex -CONFIGURE_ARGS+=--enable-localspeex=yes .else -CONFIGURE_ARGS+=--enable-localspeex=no +CONFIGURE_ARGS+= --enable-localspeex .endif +.if ${PORT_OPTIONS:MJAVA} +CONFIGURE_ARGS+= --enable-java +.else +CONFIGURE_ARGS+= --disable-java +.endif -.include +.if ${PORT_OPTIONS:MCELT} +LIB_DEPENDS+= celt0:${PORTSDIR}/audio/celt +CONFIGURE_ARGS+= --enable-celt +PLIST_SUB+= CELT="" +.else +CONFIGURE_ARGS+= --disable-celt +PLIST_SUB+= CELT="@comment " +.endif + +.if ${PORT_OPTIONS:MILBC} +LIB_DEPENDS+= ilbc:${PORTSDIR}/net/ilbc +.else +CONFIGURE_ARGS+= --enable-localilbc +.endif + +.if ${PORT_OPTIONS:MTHEORA} +LIB_DEPENDS+= theora:${PORTSDIR}/multimedia/libtheora \ + ogg:${PORTSDIR}/audio/libogg +CONFIGURE_ARGS+= --enable-theora +PLIST_SUB+= THEORA="" +WITH_VIDEO= yes +.else +CONFIGURE_ARGS+= --disable-theora +PLIST_SUB+= THEORA="@comment " +.endif + +.if ${PORT_OPTIONS:MX264} +LIB_DEPENDS+= x264:${PORTSDIR}/multimedia/x264 +CONFIGURE_ARGS+= --enable-h264 +PLIST_SUB+= X264="" +WITH_VIDEO= yes +.else +CONFIGURE_ARGS+= --disable-h264 +PLIST_SUB+= X264="@comment " +.endif + +.if ${PORT_OPTIONS:MFFMPEG} +LIB_DEPENDS+= avcodec:${PORTSDIR}/multimedia/ffmpeg +CONFIGURE_ARGS+= --enable-ffmpeg --enable-ffmpeg-h263 +CONFIGURE_ENV+= ac_cv_lib_avcodec_h263p_encoder=yes \ + ac_cv_lib_avcodec_h264_decoder=yes \ + ac_cv_lib_avcodec_mpeg4_encoder=yes +PLIST_SUB+= FFMPEG="" +WITH_VIDEO= yes +.else +CONFIGURE_ARGS+= --disable-ffmpeg --disable-ffmpeg-h263 +PLIST_SUB+= FFMPEG="@comment " +.endif + +WITH_VIDEO=yes +.if defined(WITH_VIDEO) +CONFIGURE_ARGS+= --enable-video +PLIST_SUB+= VIDEO="" +.else +CONFIGURE_ARGS+= --disable-video +PLIST_SUB+= VIDEO="@comment " +.endif + +.if ${PORT_OPTIONS:MSIP} +CONFIGURE_ARGS+= --enable-sip +.else +CONFIGURE_ARGS+= --disable-sip +.endif + +.if ${PORT_OPTIONS:MH323} +CONFIGURE_ARGS+= --enable-h323 +.else +CONFIGURE_ARGS+= --disable-h323 +.endif + +.if ${PORT_OPTIONS:MIAX} +CONFIGURE_ARGS+= --enable-iax +.else +CONFIGURE_ARGS+= --disable-iax +.endif + +.if ${PORT_OPTIONS:MH224} +CONFIGURE_ARGS+= --enable-h224 +.else +CONFIGURE_ARGS+= --disable-h224 +.endif + +.if ${PORT_OPTIONS:MH281} +CONFIGURE_ARGS+= --enable-h281 +.else +CONFIGURE_ARGS+= --disable-h281 +.endif + +# keep version in lib_depend, to see the difference between spandsp-devel and normal +.if ${PORT_OPTIONS:MFAX} +LIB_DEPENDS+= spandsp.2:${PORTSDIR}/comms/spandsp-devel +CONFIGURE_ARGS+= --enable-fax --enable-t38 +PLIST_SUB+= FAX="" +.else +CONFIGURE_ARGS+= --disable-fax --disable-t38 --disable-spandsp +PLIST_SUB+= FAX="@comment " +.endif + +.if ${PORT_OPTIONS:MMSRP} +CONFIGURE_ARGS+= --enable-msrp +##BROKEN= Does not compile +.else +CONFIGURE_ARGS+= --disable-msrp +.endif + +.if ${PORT_OPTIONS:MSIPIM} +CONFIGURE_ARGS+= --enable-sipim +.else +CONFIGURE_ARGS+= --disable-sipim +.endif + +.if ${PORT_OPTIONS:MRTPTEXT} +CONFIGURE_ARGS+= --enable-rfc4103 +.else +CONFIGURE_ARGS+= --disable-rfc4103 +.endif + +.if ${PORT_OPTIONS:MH450} +CONFIGURE_ARGS+= --enable-h450 +.else +CONFIGURE_ARGS+= --disable-h450 +.endif + +.if ${PORT_OPTIONS:MH460} +CONFIGURE_ARGS+= --enable-h460 +.else +CONFIGURE_ARGS+= --disable-h460 +.endif + +.if ${PORT_OPTIONS:MH501} +CONFIGURE_ARGS+= --enable-h501 +.else +CONFIGURE_ARGS+= --disable-h501 +.endif + +.if ${PORT_OPTIONS:MLID} +CONFIGURE_ARGS+= --enable-lid --enable-ixj --enable-vpb +PLIST_SUB+= LID="" +.else +CONFIGURE_ARGS+= --disable-lid --disable-ixj --disable-vpb +PLIST_SUB+= LID="@comment " +.endif + +.if ${PORT_OPTIONS:MUVIDEO} +CONFIGURE_ARGS+= --enable-rfc4175 +.else +CONFIGURE_ARGS+= --disable-rfc4175 +.endif + +.if ${PORT_OPTIONS:MAEC} +CONFIGURE_ARGS+= --enable-aec +.else +CONFIGURE_ARGS+= --disable-aec +.endif + +CONFIGURE_ARGS+= --disable-debug + +post-install: + ${LN} -sf libopal.so.${PORTVERSION} ${PREFIX}/lib/libopal.so.${PVERSION_MAJOR} + ${LN} -sf libopal.so.${PORTVERSION} ${PREFIX}/lib/libopal.so.${PVERSION_MINOR} +.if ${PORT_OPTIONS:MDEBUG} + ${LN} -sf libopal_d.so.${PORTVERSION} ${PREFIX}/lib/libopal_d.so.${PVERSION_MAJOR} + ${LN} -sf libopal_d.so.${PORTVERSION} ${PREFIX}/lib/libopal_d.so.${PVERSION_MINOR} +.endif + +.include Index: net/opal/distinfo =================================================================== --- net/opal/distinfo (revision 322789) +++ net/opal/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (opal-2.2.11.tar.gz) = 0990ead39728f23a1ce39997f41a8484c59809ccec0e770b9bc4f795a85a29c4 -SIZE (opal-2.2.11.tar.gz) = 4165191 +SHA256 (opal-3.10.10.tar.xz) = f208985003461b2743575eccac13ad890b3e5baac35b68ddef17162460aff864 +SIZE (opal-3.10.10.tar.xz) = 5886812 Index: net/opal/files/patch-Makefile.in =================================================================== --- net/opal/files/patch-Makefile.in (revision 322789) +++ net/opal/files/patch-Makefile.in (working copy) @@ -1,13 +0,0 @@ ---- Makefile.in.orig Sat Apr 22 16:06:54 2006 -+++ Makefile.in Thu Jun 22 09:39:04 2006 -@@ -427,10 +427,6 @@ - SOURCES += $(OPAL_SRCDIR)/lids/vpblid.cxx - endif - --ifdef HAS_SANGOMA --SOURCES += $(OPAL_SRCDIR)/lids/sangomalid.cxx --endif -- - - ################## - # Software codecs Index: net/opal/files/patch-libspeex =================================================================== --- net/opal/files/patch-libspeex (revision 322789) +++ net/opal/files/patch-libspeex (working copy) @@ -1,13 +0,0 @@ ---- src/codec/speex/libspeex/kiss_fft.h.orig Thu Jun 22 09:56:34 2006 -+++ src/codec/speex/libspeex/kiss_fft.h Thu Jun 22 09:56:53 2006 -@@ -6,10 +6,6 @@ - #include - #include - --#if !(defined(P_MACOSX) || defined(P_FREEBSD)) --#include // RMF --#endif -- - #ifdef __cplusplus - extern "C" { - #endif Index: net/opal/files/patch-opal_inc.mak.in =================================================================== --- net/opal/files/patch-opal_inc.mak.in (revision 322789) +++ net/opal/files/patch-opal_inc.mak.in (working copy) @@ -1,11 +0,0 @@ ---- opal_inc.mak.in.orig Fri Apr 7 08:12:16 2006 -+++ opal_inc.mak.in Fri Apr 7 08:13:55 2006 -@@ -103,7 +103,7 @@ - endif - - --OPAL_BASE = opal_$(PLATFORM_TYPE)_$(OPAL_SUFFIX) -+OPAL_BASE = opal_$(OPAL_SUFFIX) - OPAL_FILE = lib$(OPAL_BASE)$(LIB_TYPE).$(LIB_SUFFIX) - - LDFLAGS += -L$(OPAL_LIBDIR) Index: net/opal/files/patch-plugins_configure =================================================================== --- net/opal/files/patch-plugins_configure (revision 0) +++ net/opal/files/patch-plugins_configure (working copy) @@ -0,0 +1,189 @@ +--- plugins/configure.orig 2013-07-09 00:25:14.000000000 +0200 ++++ plugins/configure 2013-07-09 00:28:04.000000000 +0200 +@@ -6924,7 +6924,7 @@ + if test "x${HAVE_GSM0610}" = "xyes" ; then + ac_config_files="$ac_config_files audio/GSM0610/Makefile" + +- SUBDIRS+=" audio/GSM0610" ++ SUBDIRS="${SUBDIRS} audio/GSM0610" + + # Check whether --enable-localgsm was given. + if test "${enable_localgsm+set}" = set; then : +@@ -7181,7 +7181,7 @@ + if test "x${HAVE_GSMAMR}" = "xyes" ; then + ac_config_files="$ac_config_files audio/gsm-amr/Makefile" + +- SUBDIRS+=" audio/gsm-amr" ++ SUBDIRS="${SUBDIRS} audio/gsm-amr" + fi + + +@@ -7199,7 +7199,7 @@ + if test "x${HAVE_iLBC}" = "xyes" ; then + ac_config_files="$ac_config_files audio/iLBC/Makefile" + +- SUBDIRS+=" audio/iLBC" ++ SUBDIRS="${SUBDIRS} audio/iLBC" + + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -8632,7 +8632,7 @@ + + ac_config_files="$ac_config_files audio/Speex/Makefile" + +- SUBDIRS+=" audio/Speex" ++ SUBDIRS="${SUBDIRS} audio/Speex" + + + old_CFLAGS="$CFLAGS" +@@ -9002,7 +9002,7 @@ + if test "x${HAVE_G722}" = "xyes" ; then + ac_config_files="$ac_config_files audio/G722/Makefile" + +- SUBDIRS+=" audio/G722" ++ SUBDIRS="${SUBDIRS} audio/G722" + fi + + +@@ -9020,7 +9020,7 @@ + if test "x${HAVE_G7221}" = "xyes" ; then + ac_config_files="$ac_config_files audio/G.722.1/Makefile" + +- SUBDIRS+=" audio/G.722.1" ++ SUBDIRS="${SUBDIRS} audio/G.722.1" + fi + + +@@ -9038,7 +9038,7 @@ + if test "x${HAVE_G7222}" = "xyes" ; then + ac_config_files="$ac_config_files audio/G.722.2/Makefile" + +- SUBDIRS+=" audio/G.722.2" ++ SUBDIRS="${SUBDIRS} audio/G.722.2" + fi + + +@@ -9056,7 +9056,7 @@ + if test "x${HAVE_G726}" = "xyes" ; then + ac_config_files="$ac_config_files audio/G726/Makefile" + +- SUBDIRS+=" audio/G726" ++ SUBDIRS="${SUBDIRS} audio/G726" + fi + + +@@ -9074,7 +9074,7 @@ + if test "x${HAVE_LPC10}" = "xyes" ; then + ac_config_files="$ac_config_files audio/LPC_10/Makefile" + +- SUBDIRS+=" audio/LPC_10" ++ SUBDIRS="${SUBDIRS} audio/LPC_10" + fi + + +@@ -9092,7 +9092,7 @@ + if test "x${HAVE_IMA_ADPCM}" = "xyes" ; then + ac_config_files="$ac_config_files audio/IMA_ADPCM/Makefile" + +- SUBDIRS+=" audio/IMA_ADPCM" ++ SUBDIRS="${SUBDIRS} audio/IMA_ADPCM" + fi + + +@@ -9155,7 +9155,7 @@ + if test "x${HAVE_SBC}" = "xyes" ; then + ac_config_files="$ac_config_files audio/SBC/Makefile" + +- SUBDIRS+=" audio/SBC" ++ SUBDIRS="${SUBDIRS} audio/SBC" + fi + + +@@ -9251,7 +9251,7 @@ + sed -e "s/\./*10000+/" -e "s/\./*100+/"`\"" + ac_config_files="$ac_config_files audio/celt/Makefile" + +- SUBDIRS+=" audio/celt" ++ SUBDIRS="${SUBDIRS} audio/celt" + fi + + +@@ -9269,7 +9269,7 @@ + if test "x${HAVE_SILK}" = "xyes" ; then + ac_config_files="$ac_config_files audio/SILK/Makefile" + +- SUBDIRS+=" audio/SILK" ++ SUBDIRS="${SUBDIRS} audio/SILK" + fi + + +@@ -9288,7 +9288,7 @@ + if test "x${HAVE_H261}" = "xyes" ; then + ac_config_files="$ac_config_files video/H.261-vic/Makefile" + +- SUBDIRS+=" video/H.261-vic" ++ SUBDIRS="${SUBDIRS} video/H.261-vic" + fi + + +@@ -9717,13 +9717,13 @@ + if test "x${HAVE_LIBAVCODEC}" = "xyes"; then + ac_config_files="$ac_config_files video/H.263-1998/Makefile" + +- SUBDIRS+=" video/H.263-1998" ++ SUBDIRS="${SUBDIRS} video/H.263-1998" + fi + + if test "x${HAVE_LIBAVCODEC}" = "xyes"; then + ac_config_files="$ac_config_files video/MPEG4-ffmpeg/Makefile" + +- SUBDIRS+=" video/MPEG4-ffmpeg" ++ SUBDIRS="${SUBDIRS} video/MPEG4-ffmpeg" + fi + + +@@ -9875,7 +9875,7 @@ + fi + + +- SUBDIRS+=" video/H.264" ++ SUBDIRS="${SUBDIRS} video/H.264" + ac_config_files="$ac_config_files video/H.264/Makefile" + + ac_config_files="$ac_config_files video/H.264/gpl/Makefile" +@@ -9973,7 +9973,7 @@ + if test "x$HAVE_THEORA" = "xyes" ; then + ac_config_files="$ac_config_files video/THEORA/Makefile" + +- SUBDIRS+=" video/THEORA" ++ SUBDIRS="${SUBDIRS} video/THEORA" + fi + + +@@ -10054,7 +10054,7 @@ + if test "x$HAVE_IXJ" = "xyes" ; then + ac_config_files="$ac_config_files LID/IxJ/Makefile" + +- SUBDIRS+=" LID/IxJ" ++ SUBDIRS="${SUBDIRS} LID/IxJ" + fi + + if test -d LID/VPB ; then +@@ -10101,7 +10101,7 @@ + if test "x$HAVE_VPB" = "xyes" ; then + ac_config_files="$ac_config_files LID/VPB/Makefile" + +- SUBDIRS+=" LID/VPB" ++ SUBDIRS="${SUBDIRS} LID/VPB" + fi + + +@@ -10284,7 +10284,7 @@ + if test "x$HAVE_SPANDSP" = "xyes" ; then + ac_config_files="$ac_config_files fax/fax_spandsp/Makefile" + +- SUBDIRS+=" fax/fax_spandsp" ++ SUBDIRS="${SUBDIRS} fax/fax_spandsp" + fi + + Index: net/opal/files/patch-plugins_video_H.263-1998_rfc2190.cxx =================================================================== --- net/opal/files/patch-plugins_video_H.263-1998_rfc2190.cxx (revision 0) +++ net/opal/files/patch-plugins_video_H.263-1998_rfc2190.cxx (working copy) @@ -0,0 +1,11 @@ +--- plugins/video/H.263-1998/rfc2190.cxx.orig 2013-02-20 03:18:03.000000000 +0100 ++++ plugins/video/H.263-1998/rfc2190.cxx 2013-07-09 00:32:54.000000000 +0200 +@@ -25,7 +25,7 @@ + + #include + #include +-#include ++#include + + + const unsigned char PSC[3] = { 0x00, 0x00, 0x80 }; Index: net/opal/files/patch-plugins_video_H.264_shared_x264wrap.h =================================================================== --- net/opal/files/patch-plugins_video_H.264_shared_x264wrap.h (revision 0) +++ net/opal/files/patch-plugins_video_H.264_shared_x264wrap.h (working copy) @@ -0,0 +1,11 @@ +--- plugins/video/H.264/shared/x264wrap.h.orig 2013-07-09 00:34:36.000000000 +0200 ++++ plugins/video/H.264/shared/x264wrap.h 2013-07-09 00:38:14.000000000 +0200 +@@ -126,7 +126,7 @@ + char m_ulName[100]; + int m_pipeToProcess; + int m_pipeFromProcess; +- pid_t m_pid; ++ int m_pid; + #endif // WIN32 + + bool m_startNewFrame; Index: net/opal/pkg-descr =================================================================== --- net/opal/pkg-descr (revision 322789) +++ net/opal/pkg-descr (working copy) @@ -1,9 +1,18 @@ -OPAL is the "next generation" of OpenH323 that has a new architecture. Not only -does it support H.323 and SIP, but new VoIP protocols or devices can be added -very easily. It is being actively developed and is used by several projects -such as Ekiga (http://www.ekiga.org) +Opal is a full-featured voip library that supports a variety of protocols and +multi-media fornats. Features include: + * Low latency RTP stack designed specifically for real-time multimedia + * Full featured H.323, SIP and IAX2 protocol stacks + * Audio codecs including G.711, GSM06.10, Speex and iLBC. + * Video codecs including H.261 and H.263 + * Run-time loadable codec interface for proprietary or codecs such as G.729, + H.263, H.264 and MPEG4 + * Completely Open Source using the commercially friendly MPL 1.1 license + +Through the use of a platform isolation library called PTLIB, Opal can run on +tiny embedded systems or multi-processor servers. + BTW: OPAL is an acronym for Open Phone Abstraction Library, but that is not really important :) -WWW: http://www.voxgratia.org/ +WWW: http://opalvoip.org/ Index: net/opal/pkg-plist =================================================================== --- net/opal/pkg-plist (revision 322789) +++ net/opal/pkg-plist (working copy) @@ -1,6 +1,7 @@ include/opal/asn/gcc.h include/opal/asn/h225.h include/opal/asn/h235.h +include/opal/asn/h235_srtp.h include/opal/asn/h245.h include/opal/asn/h248.h include/opal/asn/h4501.h @@ -18,21 +19,17 @@ include/opal/asn/mcs.h include/opal/asn/t38.h include/opal/asn/x880.h -include/opal/codec/allcodecs.h include/opal/codec/echocancel.h +include/opal/codec/g711a1_plc.h include/opal/codec/g711codec.h -include/opal/codec/g726codec.h -include/opal/codec/g729codec.h -include/opal/codec/gsmcodec.h -include/opal/codec/h261codec.h -include/opal/codec/h263codec.h -include/opal/codec/ilbccodec.h -include/opal/codec/lpc10codec.h -include/opal/codec/mscodecs.h +include/opal/codec/opalplugin.h +include/opal/codec/opalpluginmgr.h include/opal/codec/opalwavfile.h +include/opal/codec/ratectl.h +include/opal/codec/rfc2435.h include/opal/codec/rfc2833.h +include/opal/codec/rfc4175.h include/opal/codec/silencedetect.h -include/opal/codec/speexcodec.h include/opal/codec/vidcodec.h include/opal/h323/channels.h include/opal/h323/gkclient.h @@ -54,6 +51,15 @@ include/opal/h323/q931.h include/opal/h323/svcctrl.h include/opal/h323/transaddr.h +include/opal/h460/h460.h +include/opal/h460/h4601.h +include/opal/h460/h46018.h +include/opal/h460/h46019.h +include/opal/h460/h4609.h +include/opal/h460/h460p.h +include/opal/h460/h460pres.h +include/opal/h460/h460tm.h +include/opal/iax2/callprocessor.h include/opal/iax2/causecode.h include/opal/iax2/frame.h include/opal/iax2/iax2.h @@ -62,58 +68,105 @@ include/opal/iax2/iax2medstrm.h include/opal/iax2/iedata.h include/opal/iax2/ies.h +include/opal/iax2/overview.h include/opal/iax2/processor.h include/opal/iax2/receiver.h +include/opal/iax2/regprocessor.h include/opal/iax2/remote.h include/opal/iax2/safestrings.h include/opal/iax2/sound.h +include/opal/iax2/specialprocessor.h include/opal/iax2/transmit.h include/opal/iax2/version.h -include/opal/lids/QTIoctl.h -include/opal/lids/alllids.h -include/opal/lids/ixjDefs.h -include/opal/lids/ixjidb.h -include/opal/lids/ixjlid.h +include/opal/im/im.h +include/opal/im/msrp.h +include/opal/im/rfc4103.h +include/opal/im/sipim.h +include/opal/im/t140.h +include/opal/lids/capi_ep.h include/opal/lids/lid.h include/opal/lids/lidep.h -include/opal/lids/sangomalid.h -include/opal/lids/vblasterlid.h -include/opal/lids/vpbapi.h -include/opal/lids/vpblid.h +include/opal/lids/lidplugin.h +include/opal/lids/lidpluginmgr.h +include/opal/opal.h include/opal/opal/buildopts.h include/opal/opal/call.h include/opal/opal/connection.h +include/opal/opal/console_mgr.h include/opal/opal/endpoint.h include/opal/opal/guid.h include/opal/opal/ivr.h +include/opal/opal/localep.h include/opal/opal/manager.h include/opal/opal/mediacmd.h include/opal/opal/mediafmt.h include/opal/opal/mediastrm.h +include/opal/opal/mediatype.h +include/opal/opal/opalmixer.h include/opal/opal/opalvxml.h include/opal/opal/patch.h include/opal/opal/pcss.h +include/opal/opal/pres_ent.h +include/opal/opal/recording.h +include/opal/opal/rtpconn.h +include/opal/opal/rtpep.h include/opal/opal/transcoders.h include/opal/opal/transports.h include/opal/rtp/jitter.h +include/opal/rtp/metrics.h +include/opal/rtp/pcapfile.h include/opal/rtp/rtp.h +include/opal/rtp/srtp.h +include/opal/rtp/zrtpudp.h +include/opal/sip/handlers.h include/opal/sip/sdp.h include/opal/sip/sip.h include/opal/sip/sipcon.h include/opal/sip/sipep.h include/opal/sip/sippdu.h +include/opal/sip/sippres.h include/opal/t120/h323t120.h include/opal/t120/t120proto.h include/opal/t120/x224.h include/opal/t38/h323t38.h +include/opal/t38/sipt38.h include/opal/t38/t38proto.h +include/opal/zrtp/opalzrtp.h +include/opal/zrtp/zrtpeventproc.h lib/libopal.so -lib/libopal_r.so -lib/libopal_r.so.2 -lib/libopal_r.so.2.2 -lib/libopal_r.so.%%PORTVERSION%% -%%DATADIR%%/opal_inc.mak -@dirrm %%DATADIR%% +lib/libopal.so.%%PVERSION_MAJOR%% +lib/libopal.so.%%PVERSION_MINOR%% +lib/libopal.so.%%PORTVERSION%% +%%DEBUG%%lib/libopal_d.so +%%DEBUG%%lib/libopal_d.so.%%PVERSION_MAJOR%% +%%DEBUG%%lib/libopal_d.so.%%PVERSION_MINOR%% +%%DEBUG%%lib/libopal_d.so.%%PORTVERSION%% +lib/opal-%%PORTVERSION%%/codecs/audio/celt_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/g7221_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/g7222_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/g722_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/g726_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/gsm0610_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/gsmamrcodec_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/iLBC_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/ima_adpcm_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/lpc10_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/silk_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/audio/speex_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/video/h261_vic_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/video/h263_ffmpeg_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/video/h264_video_pwplugin_helper +lib/opal-%%PORTVERSION%%/codecs/video/h264_x264_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/video/mpeg4_ffmpeg_ptplugin.so +lib/opal-%%PORTVERSION%%/codecs/video/theora_ptplugin.so +lib/opal-%%PORTVERSION%%/fax/spandsp_ptplugin.so +libdata/pkgconfig/opal.pc +@dirrm lib/opal-%%PORTVERSION%%/fax +@dirrm lib/opal-%%PORTVERSION%%/codecs/video +@dirrm lib/opal-%%PORTVERSION%%/codecs/audio +@dirrm lib/opal-%%PORTVERSION%%/codecs +@dirrm lib/opal-%%PORTVERSION%% +@dirrm include/opal/zrtp @dirrm include/opal/t38 @dirrm include/opal/t120 @dirrm include/opal/sip @@ -120,7 +173,9 @@ @dirrm include/opal/rtp @dirrm include/opal/opal @dirrm include/opal/lids +@dirrm include/opal/im @dirrm include/opal/iax2 +@dirrm include/opal/h460 @dirrm include/opal/h323 @dirrm include/opal/codec @dirrm include/opal/asn Index: net/ekiga/Makefile =================================================================== --- net/ekiga/Makefile (revision 322789) +++ net/ekiga/Makefile (working copy) @@ -1,63 +1,171 @@ -# Created by: roger@FreeBSD.org +# Created by: Charlie & # $FreeBSD$ PORTNAME= ekiga -PORTVERSION= 2.0.11 -PORTREVISION= 13 -CATEGORIES= net gnome +PORTVERSION= 4.0.1 +CATEGORIES= net MASTER_SITES= GNOME +#MASTER_SITES= http://www.ekiga.org/admin/downloads/latest/sources/ekiga_${PORTVERSION}/ +#DISTNAME= ekiga-${PORTVERSION} +DIST_SUBDIR= gnome3 -MAINTAINER= mi@aldan.algebra.com -COMMENT= VoIP phone for GNOME +MAINTAINER= gnome@FreeBSD.org +COMMENT= VoIP and video conferencing application -LIB_DEPENDS= opal_r:${PORTSDIR}/net/opal +BUILD_DEPENDS= v4l_compat>=0:${PORTSDIR}/multimedia/v4l_compat \ + gnome-icon-theme>=3.0.0:${PORTSDIR}/misc/gnome-icon-theme +LIB_DEPENDS= boost_signals:${PORTSDIR}/devel/boost-libs \ + opal.3:${PORTSDIR}/net/opal \ + v4l2:${PORTSDIR}/multimedia/libv4l +RUN_DEPENDS= gnome-icon-theme>=3.0.0:${PORTSDIR}/misc/gnome-icon-theme -OPTIONS_DEFINE= AVAHI DBUS -OPTIONS_DEFAULT= AVAHI DBUS - -CONFLICTS= ekiga-3.* - -USE_BZIP2= yes -USE_GMAKE= yes -USES= gettext -USE_SDL= sdl +USE_XZ= yes +USE_PERL5= yes +GNU_CONFIGURE= yes +USES= gettext gmake pathfix +USE_XORG= xv +USE_GNOME= gtk20 intltool libxml2 INSTALLS_OMF= yes -USE_GNOME= libgnomeui gnomeprefix gnomehack gnomedocutils \ - evolutiondataserver intlhack -GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -CONFIGURE_ARGS= --with-pwlib-dir=${LOCALBASE} \ - --with-opal-dir=${LOCALBASE} +INSTALLS_ICONS= yes MAKE_JOBS_SAFE= yes -GCONF_SCHEMAS= ekiga.schemas +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -I${LOCALBASE}/lib + MAN1= ekiga.1 -pre-configure: - ${REINPLACE_CMD} -e "s,PWLIB_REC_VERSION=.*,PWLIB_REC_VERSION=`ptlib-config \ - --version`," \ - -e "s,OPAL_REC_VERSION=.*,OPAL_REC_VERSION=`${AWK} \ - '/define OPAL_VERSION/ \ - {printf $$NF}' ${LOCALBASE}/include/opal/opal/buildopts.h`," \ - ${WRKSRC}/configure +OPTIONS_DEFINE= LDAP NOTIFY EVOLUTION GCONF DBUS AVAHI GNOMEHELP +OPTIONS_DEFAULT=NOTIFY DBUS GCONF AVAHI +EVOLUTION_DESC= Evolution data server support +GNOMEHELP_DESC= Build Ekiga help files + +OPTIONS_GROUP= EXP +OPTIONS_GROUP_EXP= KDE KAB GSTREAMER XCAP LOUDMOUTH +EXP_DESC= Experimental features +KDE_DESC= KDE 4 support (broken) +KAB_DESC= KAddressBook support (implies KDE option) +GSTREAMER_DESC= Gstreamer ... support +XCAP_DESC= ... +LOUDMOUTH_DESC= ... + +# Note that h.323 support is build if opal is build with it also. + .include +PLIST_SUB+= VERSION=${PORTVERSION} + +.if ${PORT_OPTIONS:MKDE} || ${PORT_OPTIONS:MKAB} +IGNORE= needs sorting out +#. if !${PORT_OPTIONS:MDBUS} +#BROKEN= Please set DBUS option or remove the KDE4 option! +#. endif +USE_KDE4= kdehier kdelibs +USE_QT4= corelib +CONFIGURE_ARGS+=--enable-kde +#CONFIGURE_ENV+=KDE_CFLAGS="-I${KDE4_PREFIX}/include -I${QT_INCDIR} \ +# -I${LOCALBASE}/include" KDE_LIBS="-L${KDE4_PREFIX}/lib" +CPPFLAGS+= -I${KDE4_PREFIX}/include +LDFLAGS+= -L${KDE4_PREFIX}/lib +.else +CONFIGURE_ARGS+=--disable-kde +.endif + +.if ${PORT_OPTIONS:MKAB} +CONFIGURE_ARGS+=--enable-kab +USE_KDE4+= pimlibs +.else +CONFIGURE_ARGS+=--disable-kab +.endif + +# Gstreamer +.if ${PORT_OPTIONS:MGSTREAMER} +#CONFIGURE_ARGS+=--enable-gstreamer +#USE_GSTREAMER= yes +.else +CONFIGURE_ARGS+=--disable-gstreamer +.endif + +# XCAP +#CONFIGURE_ARGS+=--enable-xcap +#USE_GNOME+= libsoup + +# LOUDMOUTH +#CONFIGURE_ARGS+=--enable-loudmouth +LIB_DEPENDS+= loudmouth-1:${PORTSDIR}/net-im/loudmouth + +.if ${PORT_OPTIONS:MLDAP} +USE_OPENLDAP= yes +LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +CONFIGURE_ARGS+=--enable-ldap --with-ldap-dir="${LOCALBASE}" --with-libsasl2-dir="${LOCALBASE}" +PLIST_SUB+= LDAP="" +WITH_PLUGINS= 1 +.else +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+= notify:${PORTSDIR}/devel/libnotify +CONFIGURE_ARGS+=--enable-notify +PLIST_SUB+= NOTIFY="" +WITH_PLUGINS= 1 +.else +CONFIGURE_ARGS+=--disable-notify +PLIST_SUB+= NOTIFY="@comment " +.endif + +.if ${PORT_OPTIONS:MDBUS} +LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus +CONFIGURE_ARGS+=--enable-dbus --enable-dbus-service +PLIST_SUB+= DBUS="" +.else +CONFIGURE_ARGS+=--disable-dbus --disable-dbus-service +PLIST_SUB+= DBUS="@comment " +.endif + +.if ${PORT_OPTIONS:MGCONF} +USE_GNOME+= gconf2 +CONFIGURE_ARGS+=--enable-gconf +GCONF_SCHEMAS= ekiga.schemas +PLIST_SUB+= GCONF="@comment " +.else +CONFIGURE_ARGS+=--disable-gconf +PLIST_SUB+= GCONF="" +.endif + +.if ${PORT_OPTIONS:MEVOLUTION} +USE_GNOME+= evolutiondataserver +CONFIGURE_ARGS+=--enable-eds +PLIST_SUB+= EVOLUTION="" +WITH_PLUGINS= 1 +.else +CONFIGURE_ARGS+=--disable-eds +PLIST_SUB+= EVOLUTION="@comment " +.endif + .if ${PORT_OPTIONS:MAVAHI} -LIB_DEPENDS+= avahi-core:${PORTSDIR}/net/avahi-app CONFIGURE_ARGS+=--enable-avahi +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app +PLIST_SUB+= AVAHI="" +WITH_PLUGINS= 1 .else CONFIGURE_ARGS+=--disable-avahi +PLIST_SUB+= AVAHI="@comment " .endif -.if ${PORT_OPTIONS:MDBUS} -LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus -CONFIGURE_ARGS+=--enable-dbus -PLIST_SUB+= DBUS:="" +.if ${PORT_OPTIONS:MGNOMEHELP} +PLIST_SUB+= GNOMEHELP="" +USE_GNOME+= gnomedocutils .else -CONFIGURE_ARGS+=--disable-dbus -PLIST_SUB+= DBUS:="@comment " +CONFIGURE_ARGS+=--disable-gdu +PLIST_SUB+= GNOMEHELP="@comment " .endif .include Index: net/ekiga/distinfo =================================================================== --- net/ekiga/distinfo (revision 322789) +++ net/ekiga/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (ekiga-2.0.11.tar.bz2) = 5bd9f811685ec6d73b59ebcb66b8c26e673d40452b75d7a0d5dc9bf203fb5766 -SIZE (ekiga-2.0.11.tar.bz2) = 5550887 +SHA256 (gnome3/ekiga-4.0.1.tar.xz) = 5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b +SIZE (gnome3/ekiga-4.0.1.tar.xz) = 8339364 Index: net/ekiga/files/patch-configure =================================================================== --- net/ekiga/files/patch-configure (revision 0) +++ net/ekiga/files/patch-configure (working copy) @@ -0,0 +1,11 @@ +--- configure.orig 2013-07-11 12:30:00.000000000 +0200 ++++ configure 2013-07-11 12:31:26.000000000 +0200 +@@ -18351,7 +18351,7 @@ + # Check whether --enable-gconf was given. + if test "${enable_gconf+set}" = set; then : + enableval=$enable_gconf; if test "x$enableval" = "xyes"; then +- enable_gconf = yes ++ enable_gconf=yes + fi + else + enable_gconf=yes Index: net/ekiga/files/patch-src-devices-fakevideoinput =================================================================== --- net/ekiga/files/patch-src-devices-fakevideoinput (revision 322789) +++ net/ekiga/files/patch-src-devices-fakevideoinput (working copy) @@ -1,39 +0,0 @@ -Remove the guts from a function, that no longer compiles with -PWLib-1.12. Since the whole file is dealing with the situation, -when there is, in fact, no video -- the user is shown a logo -instead -- it is unclear, what good was this function providing -even when it worked. - -Better patches are actively solicited... - - -mi - ---- src/devices/fakevideoinput.cpp 2007-09-18 05:00:19.000000000 -0400 -+++ src/devices/fakevideoinput.cpp 2008-03-06 17:13:47.000000000 -0500 -@@ -334,26 +334,4 @@ - PVideoInputDevice_Picture::WaitFinishPreviousFrame () - { -- if (frameTimeError == 0) { -- -- frameTimeError += msBetweenFrames; -- return; -- } -- -- PTime now; -- PTimeInterval delay = now - previousFrameTime; -- frameTimeError += msBetweenFrames; -- frameTimeError -= (int) delay.GetMilliSeconds(); -- frameTimeError += 1000 / frameRate; -- -- previousFrameTime = now; -- -- if (frameTimeError > 0) { -- PTRACE(6, "FakeVideo\t Sleep for " << frameTimeError << " milli seconds"); --#ifdef P_LINUX -- usleep(frameTimeError * 1000); --#else -- PThread::Current()->Sleep(frameTimeError); --#endif -- } - } - Index: net/ekiga/files/patch-src-gui-libintl =================================================================== --- net/ekiga/files/patch-src-gui-libintl (revision 322789) +++ net/ekiga/files/patch-src-gui-libintl (working copy) @@ -1,31 +0,0 @@ ---- src/gui/addressbook.cpp.orig Sun Mar 12 20:11:33 2006 -+++ src/gui/addressbook.cpp Tue Apr 4 12:17:23 2006 -@@ -38,6 +38,7 @@ - - #include "../../config.h" - -+#include - #include "addressbook.h" - #include "main.h" - #include "chat.h" ---- src/gui/main.cpp.orig Sun Mar 12 20:11:34 2006 -+++ src/gui/main.cpp Tue Apr 4 12:17:27 2006 -@@ -38,6 +38,7 @@ - - #include "../../config.h" - -+#include - #include "main.h" - #include "callshistory.h" - -@@ -78,10 +79,6 @@ - #include - #else - #include "winpaths.h" --#endif -- --#if defined(P_FREEBSD) || defined (P_MACOSX) --#include - #endif - - #include Index: net/ekiga/files/patch-src-gui-main.cpp =================================================================== --- net/ekiga/files/patch-src-gui-main.cpp (revision 322789) +++ net/ekiga/files/patch-src-gui-main.cpp (working copy) @@ -1,11 +0,0 @@ ---- src/gui/main.cpp.orig Thu Jun 22 10:00:56 2006 -+++ src/gui/main.cpp Thu Jun 22 10:03:18 2006 -@@ -1282,7 +1282,7 @@ - gtk_container_set_border_width (GTK_CONTAINER (button), 0); - gtk_container_add (GTK_CONTAINER (button), box); - -- gtk_widget_add_accelerator (button, "activate", -+ gtk_widget_add_accelerator (button, "clicked", - mw->accel, key_kp [i], - (GdkModifierType) 0, (GtkAccelFlags) 0); - Index: net/ekiga/files/patch-ubuntu =================================================================== --- net/ekiga/files/patch-ubuntu (revision 322789) +++ net/ekiga/files/patch-ubuntu (working copy) @@ -1,15 +0,0 @@ -A small patch found among Ubuntu and Debian ports of Ekiga. - - -mi - ---- lib/gmconf/gmconf-glib.c 2007-09-18 09:00:21.000000000 +0000 -+++ lib/gmconf/gmconf-glib.c 2007-10-06 18:34:01.000000000 +0000 -@@ -1473,7 +1473,7 @@ - } - - gboolean --gm_conf_is_key_writable (gchar *key) -+gm_conf_is_key_writable (const gchar *key) - { - g_return_val_if_fail (key != NULL, FALSE); - Index: net/ekiga/pkg-descr =================================================================== --- net/ekiga/pkg-descr (revision 322789) +++ net/ekiga/pkg-descr (working copy) @@ -1,7 +1,5 @@ -Ekiga is a free Voice over IP phone allowing you to do free calls over the -Internet. +Ekiga (formely known as GnomeMeeting) is an open source +VoIP and video conferencing application for GNOME/KDE. +Ekiga uses both the H.323 and SIP protocols. -Ekiga is the first Open Source application to support both H.323 and SIP, as -well as audio and video. Ekiga was formerly known as GnomeMeeting. - -WWW: http://www.ekiga.org/ +WWW: http://www.ekiga.org Index: net/ekiga/pkg-plist =================================================================== --- net/ekiga/pkg-plist (revision 322789) +++ net/ekiga/pkg-plist (working copy) @@ -1,187 +1,516 @@ bin/ekiga bin/ekiga-config-tool -%%DBUS:%%bin/ekiga-helper -libdata/bonobo/servers/ekiga.server -%%DBUS:%%share/dbus-1/services/net.ekiga.helper.service -%%DBUS:%%share/dbus-1/services/net.ekiga.instance.service +%%DBUS%%bin/ekiga-helper +%%GCONF%%etc/ekiga/ekiga.schemas +lib/ekiga/%%VERSION%%/libekiga.so +lib/ekiga/%%VERSION%%/libekiga.la +%%AVAHI%%lib/ekiga/%%VERSION%%/plugins/libgmavahi.so +%%AVAHI%%lib/ekiga/%%VERSION%%/plugins/libgmavahi.la +%%EVOLUTION%%lib/ekiga/4.0.1/plugins/libgmevolution.la +%%EVOLUTION%%lib/ekiga/4.0.1/plugins/libgmevolution.so +%%LDAP%%lib/ekiga/4.0.1/plugins/libgmldap.la +%%LDAP%%lib/ekiga/4.0.1/plugins/libgmldap.so +%%NOTIFY%%lib/ekiga/%%VERSION%%/plugins/libgmlibnotify.so +%%NOTIFY%%lib/ekiga/%%VERSION%%/plugins/libgmlibnotify.la share/applications/ekiga.desktop -share/gnome/help/ekiga/C/ekiga.xml -share/gnome/help/ekiga/C/figures/accounts_d1.png -share/gnome/help/ekiga/C/figures/accounts_h323.png -share/gnome/help/ekiga/C/figures/accounts_sip.png -share/gnome/help/ekiga/C/figures/audio_codecs.png -share/gnome/help/ekiga/C/figures/call_d1.png -share/gnome/help/ekiga/C/figures/chat_d1.png -share/gnome/help/ekiga/C/figures/config_d1.png -share/gnome/help/ekiga/C/figures/config_d10.png -share/gnome/help/ekiga/C/figures/config_d2.png -share/gnome/help/ekiga/C/figures/config_d3.png -share/gnome/help/ekiga/C/figures/config_d4.png -share/gnome/help/ekiga/C/figures/config_d5.png -share/gnome/help/ekiga/C/figures/config_d6.png -share/gnome/help/ekiga/C/figures/config_d7.png -share/gnome/help/ekiga/C/figures/config_d8.png -share/gnome/help/ekiga/C/figures/config_d9.png -share/gnome/help/ekiga/C/figures/lumi.png -share/gnome/help/ekiga/C/figures/stats.png -share/gnome/help/ekiga/pt_BR/ekiga.xml -share/gnome/help/ekiga/pt_BR/figures/accounts_d1.png -share/gnome/help/ekiga/pt_BR/figures/accounts_h323.png -share/gnome/help/ekiga/pt_BR/figures/accounts_sip.png -share/gnome/help/ekiga/pt_BR/figures/audio_codecs.png -share/gnome/help/ekiga/pt_BR/figures/call_d1.png -share/gnome/help/ekiga/pt_BR/figures/chat_d1.png -share/gnome/help/ekiga/pt_BR/figures/config_d1.png -share/gnome/help/ekiga/pt_BR/figures/config_d10.png -share/gnome/help/ekiga/pt_BR/figures/config_d2.png -share/gnome/help/ekiga/pt_BR/figures/config_d3.png -share/gnome/help/ekiga/pt_BR/figures/config_d4.png -share/gnome/help/ekiga/pt_BR/figures/config_d5.png -share/gnome/help/ekiga/pt_BR/figures/config_d6.png -share/gnome/help/ekiga/pt_BR/figures/config_d7.png -share/gnome/help/ekiga/pt_BR/figures/config_d8.png -share/gnome/help/ekiga/pt_BR/figures/config_d9.png -share/gnome/help/ekiga/pt_BR/figures/lumi.png -share/gnome/help/ekiga/pt_BR/figures/stats.png -share/gnome/help/ekiga/bg/ekiga.xml -share/gnome/help/ekiga/bg/figures/accounts_d1.png -share/gnome/help/ekiga/bg/figures/accounts_h323.png -share/gnome/help/ekiga/bg/figures/accounts_sip.png -share/gnome/help/ekiga/bg/figures/audio_codecs.png -share/gnome/help/ekiga/bg/figures/call_d1.png -share/gnome/help/ekiga/bg/figures/chat_d1.png -share/gnome/help/ekiga/bg/figures/config_d1.png -share/gnome/help/ekiga/bg/figures/config_d10.png -share/gnome/help/ekiga/bg/figures/config_d2.png -share/gnome/help/ekiga/bg/figures/config_d3.png -share/gnome/help/ekiga/bg/figures/config_d4.png -share/gnome/help/ekiga/bg/figures/config_d5.png -share/gnome/help/ekiga/bg/figures/config_d6.png -share/gnome/help/ekiga/bg/figures/config_d7.png -share/gnome/help/ekiga/bg/figures/config_d8.png -share/gnome/help/ekiga/bg/figures/config_d9.png -share/gnome/help/ekiga/bg/figures/lumi.png -share/gnome/help/ekiga/bg/figures/stats.png -share/gnome/help/ekiga/de/ekiga.xml -share/gnome/help/ekiga/de/figures/accounts_d1.png -share/gnome/help/ekiga/de/figures/accounts_h323.png -share/gnome/help/ekiga/de/figures/accounts_sip.png -share/gnome/help/ekiga/de/figures/audio_codecs.png -share/gnome/help/ekiga/de/figures/call_d1.png -share/gnome/help/ekiga/de/figures/chat_d1.png -share/gnome/help/ekiga/de/figures/config_d1.png -share/gnome/help/ekiga/de/figures/config_d10.png -share/gnome/help/ekiga/de/figures/config_d2.png -share/gnome/help/ekiga/de/figures/config_d3.png -share/gnome/help/ekiga/de/figures/config_d4.png -share/gnome/help/ekiga/de/figures/config_d5.png -share/gnome/help/ekiga/de/figures/config_d6.png -share/gnome/help/ekiga/de/figures/config_d7.png -share/gnome/help/ekiga/de/figures/config_d8.png -share/gnome/help/ekiga/de/figures/config_d9.png -share/gnome/help/ekiga/de/figures/lumi.png -share/gnome/help/ekiga/de/figures/stats.png -share/gnome/help/ekiga/es/ekiga.xml -share/gnome/help/ekiga/es/figures/accounts_d1.png -share/gnome/help/ekiga/es/figures/accounts_h323.png -share/gnome/help/ekiga/es/figures/accounts_sip.png -share/gnome/help/ekiga/es/figures/audio_codecs.png -share/gnome/help/ekiga/es/figures/call_d1.png -share/gnome/help/ekiga/es/figures/chat_d1.png -share/gnome/help/ekiga/es/figures/config_d1.png -share/gnome/help/ekiga/es/figures/config_d10.png -share/gnome/help/ekiga/es/figures/config_d2.png -share/gnome/help/ekiga/es/figures/config_d3.png -share/gnome/help/ekiga/es/figures/config_d4.png -share/gnome/help/ekiga/es/figures/config_d5.png -share/gnome/help/ekiga/es/figures/config_d6.png -share/gnome/help/ekiga/es/figures/config_d7.png -share/gnome/help/ekiga/es/figures/config_d8.png -share/gnome/help/ekiga/es/figures/config_d9.png -share/gnome/help/ekiga/es/figures/lumi.png -share/gnome/help/ekiga/es/figures/stats.png -share/gnome/help/ekiga/fr/ekiga.xml -share/gnome/help/ekiga/fr/figures/accounts_d1.png -share/gnome/help/ekiga/fr/figures/accounts_h323.png -share/gnome/help/ekiga/fr/figures/accounts_sip.png -share/gnome/help/ekiga/fr/figures/audio_codecs.png -share/gnome/help/ekiga/fr/figures/call_d1.png -share/gnome/help/ekiga/fr/figures/chat_d1.png -share/gnome/help/ekiga/fr/figures/config_d1.png -share/gnome/help/ekiga/fr/figures/config_d10.png -share/gnome/help/ekiga/fr/figures/config_d2.png -share/gnome/help/ekiga/fr/figures/config_d3.png -share/gnome/help/ekiga/fr/figures/config_d4.png -share/gnome/help/ekiga/fr/figures/config_d5.png -share/gnome/help/ekiga/fr/figures/config_d6.png -share/gnome/help/ekiga/fr/figures/config_d7.png -share/gnome/help/ekiga/fr/figures/config_d8.png -share/gnome/help/ekiga/fr/figures/config_d9.png -share/gnome/help/ekiga/fr/figures/lumi.png -share/gnome/help/ekiga/fr/figures/stats.png -share/gnome/help/ekiga/sv/ekiga.xml -share/gnome/help/ekiga/sv/figures/accounts_d1.png -share/gnome/help/ekiga/sv/figures/accounts_h323.png -share/gnome/help/ekiga/sv/figures/accounts_sip.png -share/gnome/help/ekiga/sv/figures/audio_codecs.png -share/gnome/help/ekiga/sv/figures/call_d1.png -share/gnome/help/ekiga/sv/figures/chat_d1.png -share/gnome/help/ekiga/sv/figures/config_d1.png -share/gnome/help/ekiga/sv/figures/config_d10.png -share/gnome/help/ekiga/sv/figures/config_d2.png -share/gnome/help/ekiga/sv/figures/config_d3.png -share/gnome/help/ekiga/sv/figures/config_d4.png -share/gnome/help/ekiga/sv/figures/config_d5.png -share/gnome/help/ekiga/sv/figures/config_d6.png -share/gnome/help/ekiga/sv/figures/config_d7.png -share/gnome/help/ekiga/sv/figures/config_d8.png -share/gnome/help/ekiga/sv/figures/config_d9.png -share/gnome/help/ekiga/sv/figures/lumi.png -share/gnome/help/ekiga/sv/figures/stats.png -share/gnome/help/ekiga/uk/ekiga.xml -share/gnome/help/ekiga/uk/figures/accounts_d1.png -share/gnome/help/ekiga/uk/figures/accounts_h323.png -share/gnome/help/ekiga/uk/figures/accounts_sip.png -share/gnome/help/ekiga/uk/figures/audio_codecs.png -share/gnome/help/ekiga/uk/figures/call_d1.png -share/gnome/help/ekiga/uk/figures/chat_d1.png -share/gnome/help/ekiga/uk/figures/config_d1.png -share/gnome/help/ekiga/uk/figures/config_d10.png -share/gnome/help/ekiga/uk/figures/config_d2.png -share/gnome/help/ekiga/uk/figures/config_d3.png -share/gnome/help/ekiga/uk/figures/config_d4.png -share/gnome/help/ekiga/uk/figures/config_d5.png -share/gnome/help/ekiga/uk/figures/config_d6.png -share/gnome/help/ekiga/uk/figures/config_d7.png -share/gnome/help/ekiga/uk/figures/config_d8.png -share/gnome/help/ekiga/uk/figures/config_d9.png -share/gnome/help/ekiga/uk/figures/lumi.png -share/gnome/help/ekiga/uk/figures/stats.png -share/omf/ekiga/ekiga-C.omf -share/omf/ekiga/ekiga-bg.omf -share/omf/ekiga/ekiga-de.omf -share/omf/ekiga/ekiga-es.omf -share/omf/ekiga/ekiga-fr.omf -share/omf/ekiga/ekiga-pt_BR.omf -share/omf/ekiga/ekiga-sv.omf -share/omf/ekiga/ekiga-uk.omf -share/pixmaps/ekiga.png -share/pixmaps/ekiga/ekiga-logo.png -share/pixmaps/ekiga/ekiga.png -share/sounds/ekiga/busytone.wav -share/sounds/ekiga/dialtone.wav -share/sounds/ekiga/newmessage.wav -share/sounds/ekiga/ring.wav -share/sounds/ekiga/voicemail.wav +%%DBUS%%share/dbus-1/services/org.ekiga.Ekiga.service +%%DBUS%%share/dbus-1/services/org.ekiga.Helper.service +%%GNOMEHELP%%share/gnome/help/ekiga/C/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/C/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/bg/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/ca/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/de/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/el/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/en_GB/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/es/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/eu/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/fi/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/fr/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/oc/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/pt_BR/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/ru/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/sl/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/sv/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/uk/figures/video_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/ekiga.xml +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/lumi.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/call_window.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d4.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d5.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d6.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d7.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d8.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/config_d9.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/call_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/roster.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/addressbook_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/addressbook_d2.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/addressbook_d3.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/chat_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/status.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/call_history.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/accounts_d1.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/accounts_ekiga_net.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/accounts_ekiga_call_out.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/accounts_sip.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/accounts_h323.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/monitoring_lines.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/audio_codecs.png +%%GNOMEHELP%%share/gnome/help/ekiga/zh_CN/figures/video_codecs.png +share/icons/hicolor/128x128/apps/ekiga.png +share/icons/hicolor/16x16/apps/ekiga.png +share/icons/hicolor/22x22/apps/ekiga.png +share/icons/hicolor/24x24/apps/ekiga.png +share/icons/hicolor/32x32/apps/ekiga.png +share/icons/hicolor/48x48/apps/ekiga.png +share/icons/hicolor/64x64/apps/ekiga.png +share/icons/hicolor/72x72/apps/ekiga.png share/locale/am/LC_MESSAGES/ekiga.mo share/locale/ar/LC_MESSAGES/ekiga.mo +share/locale/as/LC_MESSAGES/ekiga.mo +share/locale/ast/LC_MESSAGES/ekiga.mo share/locale/az/LC_MESSAGES/ekiga.mo -share/locale/be/LC_MESSAGES/ekiga.mo share/locale/bg/LC_MESSAGES/ekiga.mo share/locale/bn/LC_MESSAGES/ekiga.mo share/locale/bn_IN/LC_MESSAGES/ekiga.mo share/locale/bs/LC_MESSAGES/ekiga.mo share/locale/ca/LC_MESSAGES/ekiga.mo +share/locale/ca@valencia/LC_MESSAGES/ekiga.mo +share/locale/crh/LC_MESSAGES/ekiga.mo share/locale/cs/LC_MESSAGES/ekiga.mo share/locale/cy/LC_MESSAGES/ekiga.mo share/locale/da/LC_MESSAGES/ekiga.mo @@ -188,8 +517,10 @@ share/locale/de/LC_MESSAGES/ekiga.mo share/locale/dz/LC_MESSAGES/ekiga.mo share/locale/el/LC_MESSAGES/ekiga.mo +share/locale/en@shaw/LC_MESSAGES/ekiga.mo share/locale/en_CA/LC_MESSAGES/ekiga.mo share/locale/en_GB/LC_MESSAGES/ekiga.mo +share/locale/eo/LC_MESSAGES/ekiga.mo share/locale/es/LC_MESSAGES/ekiga.mo share/locale/et/LC_MESSAGES/ekiga.mo share/locale/eu/LC_MESSAGES/ekiga.mo @@ -208,10 +539,13 @@ share/locale/it/LC_MESSAGES/ekiga.mo share/locale/ja/LC_MESSAGES/ekiga.mo share/locale/ka/LC_MESSAGES/ekiga.mo +share/locale/kk/LC_MESSAGES/ekiga.mo +share/locale/kn/LC_MESSAGES/ekiga.mo share/locale/ko/LC_MESSAGES/ekiga.mo share/locale/ku/LC_MESSAGES/ekiga.mo share/locale/lt/LC_MESSAGES/ekiga.mo share/locale/lv/LC_MESSAGES/ekiga.mo +share/locale/mai/LC_MESSAGES/ekiga.mo share/locale/mk/LC_MESSAGES/ekiga.mo share/locale/ml/LC_MESSAGES/ekiga.mo share/locale/mn/LC_MESSAGES/ekiga.mo @@ -220,6 +554,7 @@ share/locale/nb/LC_MESSAGES/ekiga.mo share/locale/ne/LC_MESSAGES/ekiga.mo share/locale/nl/LC_MESSAGES/ekiga.mo +share/locale/nn/LC_MESSAGES/ekiga.mo share/locale/oc/LC_MESSAGES/ekiga.mo share/locale/or/LC_MESSAGES/ekiga.mo share/locale/pa/LC_MESSAGES/ekiga.mo @@ -229,15 +564,18 @@ share/locale/ro/LC_MESSAGES/ekiga.mo share/locale/ru/LC_MESSAGES/ekiga.mo share/locale/rw/LC_MESSAGES/ekiga.mo +share/locale/si/LC_MESSAGES/ekiga.mo share/locale/sk/LC_MESSAGES/ekiga.mo share/locale/sl/LC_MESSAGES/ekiga.mo share/locale/sq/LC_MESSAGES/ekiga.mo share/locale/sr/LC_MESSAGES/ekiga.mo -share/locale/sr@Latn/LC_MESSAGES/ekiga.mo +share/locale/sr@latin/LC_MESSAGES/ekiga.mo share/locale/sv/LC_MESSAGES/ekiga.mo share/locale/ta/LC_MESSAGES/ekiga.mo +share/locale/te/LC_MESSAGES/ekiga.mo share/locale/th/LC_MESSAGES/ekiga.mo share/locale/tr/LC_MESSAGES/ekiga.mo +share/locale/ug/LC_MESSAGES/ekiga.mo share/locale/uk/LC_MESSAGES/ekiga.mo share/locale/vi/LC_MESSAGES/ekiga.mo share/locale/wa/LC_MESSAGES/ekiga.mo @@ -245,40 +583,240 @@ share/locale/zh_CN/LC_MESSAGES/ekiga.mo share/locale/zh_HK/LC_MESSAGES/ekiga.mo share/locale/zh_TW/LC_MESSAGES/ekiga.mo +%%GNOMEHELP%%share/omf/ekiga/ekiga-C.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-bg.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-ca.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-de.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-el.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-en_GB.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-es.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-eu.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-fi.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-fr.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-oc.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-pt_BR.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-ru.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-sl.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-sv.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-uk.omf +%%GNOMEHELP%%share/omf/ekiga/ekiga-zh_CN.omf +share/pixmaps/ekiga/ekiga-logo.png +share/sounds/ekiga/busytone.wav +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 -@dirrm share/pixmaps/ekiga -@dirrm share/omf/ekiga -@dirrm share/gnome/help/ekiga/uk/figures -@dirrm share/gnome/help/ekiga/uk -@dirrm share/gnome/help/ekiga/sv/figures -@dirrm share/gnome/help/ekiga/sv -@dirrm share/gnome/help/ekiga/pt_BR/figures -@dirrm share/gnome/help/ekiga/pt_BR -@dirrm share/gnome/help/ekiga/fr/figures -@dirrm share/gnome/help/ekiga/fr -@dirrm share/gnome/help/ekiga/es/figures -@dirrm share/gnome/help/ekiga/es -@dirrm share/gnome/help/ekiga/de/figures -@dirrm share/gnome/help/ekiga/de -@dirrm share/gnome/help/ekiga/bg/figures -@dirrm share/gnome/help/ekiga/bg -@dirrm share/gnome/help/ekiga/C/figures -@dirrm share/gnome/help/ekiga/C -@dirrm share/gnome/help/ekiga +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW @dirrmtry share/locale/zh_HK/LC_MESSAGES @dirrmtry share/locale/zh_HK +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN @dirrmtry share/locale/xh/LC_MESSAGES @dirrmtry share/locale/xh +@dirrmtry share/locale/wa/LC_MESSAGES +@dirrmtry share/locale/wa +@dirrmtry share/locale/vi/LC_MESSAGES +@dirrmtry share/locale/vi +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/ug/LC_MESSAGES +@dirrmtry share/locale/ug +@dirrmtry share/locale/tr/LC_MESSAGES +@dirrmtry share/locale/tr +@dirrmtry share/locale/th/LC_MESSAGES +@dirrmtry share/locale/th +@dirrmtry share/locale/te/LC_MESSAGES +@dirrmtry share/locale/te +@dirrmtry share/locale/ta/LC_MESSAGES +@dirrmtry share/locale/ta +@dirrmtry share/locale/sv/LC_MESSAGES +@dirrmtry share/locale/sv +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sq/LC_MESSAGES +@dirrmtry share/locale/sq +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/si/LC_MESSAGES +@dirrmtry share/locale/si @dirrmtry share/locale/rw/LC_MESSAGES @dirrmtry share/locale/rw +@dirrmtry share/locale/ru/LC_MESSAGES +@dirrmtry share/locale/ru +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt_BR/LC_MESSAGES +@dirrmtry share/locale/pt_BR +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/pa/LC_MESSAGES +@dirrmtry share/locale/pa +@dirrmtry share/locale/or/LC_MESSAGES +@dirrmtry share/locale/or +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/nl/LC_MESSAGES +@dirrmtry share/locale/nl +@dirrmtry share/locale/ne/LC_MESSAGES +@dirrmtry share/locale/ne +@dirrmtry share/locale/nb/LC_MESSAGES +@dirrmtry share/locale/nb +@dirrmtry share/locale/ms/LC_MESSAGES +@dirrmtry share/locale/ms @dirrmtry share/locale/mr/LC_MESSAGES @dirrmtry share/locale/mr +@dirrmtry share/locale/mn/LC_MESSAGES +@dirrmtry share/locale/mn +@dirrmtry share/locale/ml/LC_MESSAGES +@dirrmtry share/locale/ml +@dirrmtry share/locale/mk/LC_MESSAGES +@dirrmtry share/locale/mk +@dirrmtry share/locale/mai/LC_MESSAGES +@dirrmtry share/locale/mai +@dirrmtry share/locale/lv/LC_MESSAGES +@dirrmtry share/locale/lv +@dirrmtry share/locale/lt/LC_MESSAGES +@dirrmtry share/locale/lt @dirrmtry share/locale/ku/LC_MESSAGES @dirrmtry share/locale/ku +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/kn/LC_MESSAGES +@dirrmtry share/locale/kn +@dirrmtry share/locale/kk/LC_MESSAGES +@dirrmtry share/locale/kk +@dirrmtry share/locale/ka/LC_MESSAGES +@dirrmtry share/locale/ka +@dirrmtry share/locale/ja/LC_MESSAGES +@dirrmtry share/locale/ja +@dirrmtry share/locale/it/LC_MESSAGES +@dirrmtry share/locale/it +@dirrmtry share/locale/is/LC_MESSAGES +@dirrmtry share/locale/is +@dirrmtry share/locale/id/LC_MESSAGES +@dirrmtry share/locale/id +@dirrmtry share/locale/hu/LC_MESSAGES +@dirrmtry share/locale/hu +@dirrmtry share/locale/hr/LC_MESSAGES +@dirrmtry share/locale/hr +@dirrmtry share/locale/hi/LC_MESSAGES +@dirrmtry share/locale/hi +@dirrmtry share/locale/he/LC_MESSAGES +@dirrmtry share/locale/he +@dirrmtry share/locale/gu/LC_MESSAGES +@dirrmtry share/locale/gu +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/ga/LC_MESSAGES +@dirrmtry share/locale/ga +@dirrmtry share/locale/fr/LC_MESSAGES +@dirrmtry share/locale/fr +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/fa/LC_MESSAGES +@dirrmtry share/locale/fa +@dirrmtry share/locale/eu/LC_MESSAGES +@dirrmtry share/locale/eu +@dirrmtry share/locale/et/LC_MESSAGES +@dirrmtry share/locale/et +@dirrmtry share/locale/es/LC_MESSAGES +@dirrmtry share/locale/es +@dirrmtry share/locale/eo/LC_MESSAGES +@dirrmtry share/locale/eo +@dirrmtry share/locale/en_GB/LC_MESSAGES +@dirrmtry share/locale/en_GB +@dirrmtry share/locale/en_CA/LC_MESSAGES +@dirrmtry share/locale/en_CA +@dirrmtry share/locale/en@shaw/LC_MESSAGES +@dirrmtry share/locale/en@shaw +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el @dirrmtry share/locale/dz/LC_MESSAGES @dirrmtry share/locale/dz +@dirrmtry share/locale/de/LC_MESSAGES +@dirrmtry share/locale/de +@dirrmtry share/locale/da/LC_MESSAGES +@dirrmtry share/locale/da +@dirrmtry share/locale/cy/LC_MESSAGES +@dirrmtry share/locale/cy +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@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/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/bs/LC_MESSAGES +@dirrmtry share/locale/bs @dirrmtry share/locale/bn_IN/LC_MESSAGES @dirrmtry share/locale/bn_IN -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc +@dirrmtry share/locale/bn/LC_MESSAGES +@dirrmtry share/locale/bn +@dirrmtry share/locale/bg/LC_MESSAGES +@dirrmtry share/locale/bg +@dirrmtry share/locale/be/LC_MESSAGES +@dirrmtry share/locale/be +@dirrmtry share/locale/az/LC_MESSAGES +@dirrmtry share/locale/az +@dirrmtry share/locale/ast/LC_MESSAGES +@dirrmtry share/locale/ast +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as +@dirrmtry share/locale/ar/LC_MESSAGES +@dirrmtry share/locale/ar +@dirrmtry share/locale/am/LC_MESSAGES +@dirrmtry share/locale/am +@dirrmtry share/locale +%%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 @dirrmtry share/applications +%%PLUGINS%%@dirrm lib/ekiga/%%VERSION%%/plugins +@dirrm lib/ekiga/%%VERSION%% +@dirrm lib/ekiga +%%GCONF%%@dirrm etc/ekiga Index: misc/gnome-icon-theme/Makefile =================================================================== --- misc/gnome-icon-theme/Makefile (revision 322789) +++ misc/gnome-icon-theme/Makefile (working copy) @@ -1,13 +1,12 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/misc/gnome-icon-theme/Makefile,v 1.149 2010/08/30 13:45:30 avl Exp $ +# $MCom: ports/trunk/misc/gnome-icon-theme/Makefile 18610 2013-06-30 16:33:05Z marcus $ PORTNAME= gnome-icon-theme -PORTVERSION= 2.31.0 -PORTREVISION= 3 +PORTVERSION= 3.6.2 CATEGORIES= misc gnome MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 +DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Collection of icons for the GNOME desktop @@ -16,12 +15,13 @@ icon-naming-utils>=0.8.7:${PORTSDIR}/x11-themes/icon-naming-utils RUN_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme -USE_BZIP2= yes +USE_XZ= yes USE_GMAKE= yes GNU_CONFIGURE= yes USES= pathfix USE_GNOME= intlhack INSTALLS_ICONS= yes +CONFIGURE_ARGS= --enable-icon-mapping CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Index: misc/gnome-icon-theme/distinfo =================================================================== --- misc/gnome-icon-theme/distinfo (revision 322789) +++ misc/gnome-icon-theme/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (gnome2/gnome-icon-theme-2.31.0.tar.bz2) = ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a767982 -SIZE (gnome2/gnome-icon-theme-2.31.0.tar.bz2) = 15762905 +SHA256 (gnome3/gnome-icon-theme-3.6.2.tar.xz) = 314d5535c12af5d62ba0e51addd3457e39140fb149efb9769eacbcc0449f1045 +SIZE (gnome3/gnome-icon-theme-3.6.2.tar.xz) = 14486304 Index: misc/gnome-icon-theme/pkg-plist =================================================================== --- misc/gnome-icon-theme/pkg-plist (revision 322789) +++ misc/gnome-icon-theme/pkg-plist (working copy) @@ -20,6 +20,7 @@ share/icons/gnome/16x16/actions/document-print-preview.png share/icons/gnome/16x16/actions/document-print.png share/icons/gnome/16x16/actions/document-properties.png +share/icons/gnome/16x16/actions/document-revert-rtl.png share/icons/gnome/16x16/actions/document-revert.png share/icons/gnome/16x16/actions/document-save-as.png share/icons/gnome/16x16/actions/document-save.png @@ -32,8 +33,10 @@ share/icons/gnome/16x16/actions/edit-find-replace.png share/icons/gnome/16x16/actions/edit-find.png share/icons/gnome/16x16/actions/edit-paste.png +share/icons/gnome/16x16/actions/edit-redo-rtl.png share/icons/gnome/16x16/actions/edit-redo.png share/icons/gnome/16x16/actions/edit-select-all.png +share/icons/gnome/16x16/actions/edit-undo-rtl.png share/icons/gnome/16x16/actions/edit-undo.png share/icons/gnome/16x16/actions/editclear.png share/icons/gnome/16x16/actions/editcopy.png @@ -52,7 +55,9 @@ share/icons/gnome/16x16/actions/finish.png share/icons/gnome/16x16/actions/folder-new.png share/icons/gnome/16x16/actions/folder_new.png +share/icons/gnome/16x16/actions/format-indent-less-rtl.png share/icons/gnome/16x16/actions/format-indent-less.png +share/icons/gnome/16x16/actions/format-indent-more-rtl.png share/icons/gnome/16x16/actions/format-indent-more.png share/icons/gnome/16x16/actions/format-justify-center.png share/icons/gnome/16x16/actions/format-justify-fill.png @@ -78,11 +83,15 @@ share/icons/gnome/16x16/actions/gnome-stock-text-unindent.png share/icons/gnome/16x16/actions/go-bottom.png share/icons/gnome/16x16/actions/go-down.png +share/icons/gnome/16x16/actions/go-first-rtl.png share/icons/gnome/16x16/actions/go-first.png share/icons/gnome/16x16/actions/go-home.png share/icons/gnome/16x16/actions/go-jump.png +share/icons/gnome/16x16/actions/go-last-rtl.png share/icons/gnome/16x16/actions/go-last.png +share/icons/gnome/16x16/actions/go-next-rtl.png share/icons/gnome/16x16/actions/go-next.png +share/icons/gnome/16x16/actions/go-previous-rtl.png share/icons/gnome/16x16/actions/go-previous.png share/icons/gnome/16x16/actions/go-top.png share/icons/gnome/16x16/actions/go-up.png @@ -197,12 +206,17 @@ share/icons/gnome/16x16/actions/mail_spam.png share/icons/gnome/16x16/actions/media-eject.png share/icons/gnome/16x16/actions/media-playback-pause.png +share/icons/gnome/16x16/actions/media-playback-start-rtl.png share/icons/gnome/16x16/actions/media-playback-start.png share/icons/gnome/16x16/actions/media-playback-stop.png share/icons/gnome/16x16/actions/media-record.png +share/icons/gnome/16x16/actions/media-seek-backward-rtl.png share/icons/gnome/16x16/actions/media-seek-backward.png +share/icons/gnome/16x16/actions/media-seek-forward-rtl.png share/icons/gnome/16x16/actions/media-seek-forward.png +share/icons/gnome/16x16/actions/media-skip-backward-rtl.png share/icons/gnome/16x16/actions/media-skip-backward.png +share/icons/gnome/16x16/actions/media-skip-forward-rtl.png share/icons/gnome/16x16/actions/media-skip-forward.png share/icons/gnome/16x16/actions/next.png share/icons/gnome/16x16/actions/object-flip-horizontal.png @@ -385,7 +399,6 @@ share/icons/gnome/16x16/apps/kuser.png share/icons/gnome/16x16/apps/kwin.png share/icons/gnome/16x16/apps/locale.png -share/icons/gnome/16x16/apps/logviewer.png share/icons/gnome/16x16/apps/multimedia-volume-control.png share/icons/gnome/16x16/apps/multimedia.png share/icons/gnome/16x16/apps/openterm.png @@ -490,6 +503,7 @@ share/icons/gnome/16x16/devices/ac-adapter.png share/icons/gnome/16x16/devices/audio-card.png share/icons/gnome/16x16/devices/audio-input-microphone.png +share/icons/gnome/16x16/devices/audio-speakers.png share/icons/gnome/16x16/devices/battery.png share/icons/gnome/16x16/devices/camera-photo.png share/icons/gnome/16x16/devices/camera-video.png @@ -544,6 +558,7 @@ share/icons/gnome/16x16/devices/gtk-harddisk.png share/icons/gnome/16x16/devices/harddrive.png share/icons/gnome/16x16/devices/hdd_unmount.png +share/icons/gnome/16x16/devices/input-dialpad.png share/icons/gnome/16x16/devices/input-gaming.png share/icons/gnome/16x16/devices/input-keyboard.png share/icons/gnome/16x16/devices/input-mouse.png @@ -558,14 +573,17 @@ share/icons/gnome/16x16/devices/media-flash.png share/icons/gnome/16x16/devices/media-floppy.png share/icons/gnome/16x16/devices/media-optical.png +share/icons/gnome/16x16/devices/media-removable.png share/icons/gnome/16x16/devices/media-tape.png share/icons/gnome/16x16/devices/modem.png share/icons/gnome/16x16/devices/mouse.png share/icons/gnome/16x16/devices/multimedia-player.png +share/icons/gnome/16x16/devices/network-vpn.png share/icons/gnome/16x16/devices/network-wired.png share/icons/gnome/16x16/devices/network-wireless.png share/icons/gnome/16x16/devices/pda.png share/icons/gnome/16x16/devices/phone.png +share/icons/gnome/16x16/devices/printer-network.png share/icons/gnome/16x16/devices/printer-remote.png share/icons/gnome/16x16/devices/printer.png share/icons/gnome/16x16/devices/printer1.png @@ -576,6 +594,7 @@ share/icons/gnome/16x16/devices/stock_printers.png share/icons/gnome/16x16/devices/system-floppy.png share/icons/gnome/16x16/devices/system.png +share/icons/gnome/16x16/devices/uninterruptible-power-supply.png share/icons/gnome/16x16/devices/usbpendrive_unmount.png share/icons/gnome/16x16/devices/video-display.png share/icons/gnome/16x16/devices/xfce-printer.png @@ -885,6 +904,7 @@ share/icons/gnome/16x16/status/battery-missing.png share/icons/gnome/16x16/status/changes-allow.png share/icons/gnome/16x16/status/changes-prevent.png +share/icons/gnome/16x16/status/computer-fail.png share/icons/gnome/16x16/status/connect_creating.png share/icons/gnome/16x16/status/connect_established.png share/icons/gnome/16x16/status/connect_no.png @@ -932,6 +952,10 @@ share/icons/gnome/16x16/status/messagebox_critical.png share/icons/gnome/16x16/status/messagebox_info.png share/icons/gnome/16x16/status/messagebox_warning.png +share/icons/gnome/16x16/status/microphone-sensitivity-high.png +share/icons/gnome/16x16/status/microphone-sensitivity-low.png +share/icons/gnome/16x16/status/microphone-sensitivity-medium.png +share/icons/gnome/16x16/status/microphone-sensitivity-muted.png share/icons/gnome/16x16/status/network-error.png share/icons/gnome/16x16/status/network-idle.png share/icons/gnome/16x16/status/network-offline.png @@ -938,11 +962,13 @@ share/icons/gnome/16x16/status/network-receive.png share/icons/gnome/16x16/status/network-transmit-receive.png share/icons/gnome/16x16/status/network-transmit.png +share/icons/gnome/16x16/status/network-wired-disconnected.png share/icons/gnome/16x16/status/network-wireless-encrypted.png share/icons/gnome/16x16/status/nm-adhoc.png share/icons/gnome/16x16/status/nm-device-wired.png share/icons/gnome/16x16/status/nm-device-wireless.png share/icons/gnome/16x16/status/nm-no-connection.png +share/icons/gnome/16x16/status/non-starred.png share/icons/gnome/16x16/status/printer-error.png share/icons/gnome/16x16/status/printer-printing.png share/icons/gnome/16x16/status/security-high.png @@ -950,6 +976,7 @@ share/icons/gnome/16x16/status/security-medium.png share/icons/gnome/16x16/status/software-update-available.png share/icons/gnome/16x16/status/software-update-urgent.png +share/icons/gnome/16x16/status/starred.png share/icons/gnome/16x16/status/stock_appointment-reminder-excl.png share/icons/gnome/16x16/status/stock_appointment-reminder.png share/icons/gnome/16x16/status/stock_attach.png @@ -987,6 +1014,9 @@ share/icons/gnome/16x16/status/task-due.png share/icons/gnome/16x16/status/task-past-due.png share/icons/gnome/16x16/status/trashcan_full.png +share/icons/gnome/16x16/status/trophy-bronze.png +share/icons/gnome/16x16/status/trophy-gold.png +share/icons/gnome/16x16/status/trophy-silver.png share/icons/gnome/16x16/status/user-available.png share/icons/gnome/16x16/status/user-away.png share/icons/gnome/16x16/status/user-busy.png @@ -1027,6 +1057,7 @@ share/icons/gnome/22x22/actions/document-print-preview.png share/icons/gnome/22x22/actions/document-print.png share/icons/gnome/22x22/actions/document-properties.png +share/icons/gnome/22x22/actions/document-revert-rtl.png share/icons/gnome/22x22/actions/document-revert.png share/icons/gnome/22x22/actions/document-save-as.png share/icons/gnome/22x22/actions/document-save.png @@ -1039,8 +1070,10 @@ share/icons/gnome/22x22/actions/edit-find-replace.png share/icons/gnome/22x22/actions/edit-find.png share/icons/gnome/22x22/actions/edit-paste.png +share/icons/gnome/22x22/actions/edit-redo-rtl.png share/icons/gnome/22x22/actions/edit-redo.png share/icons/gnome/22x22/actions/edit-select-all.png +share/icons/gnome/22x22/actions/edit-undo-rtl.png share/icons/gnome/22x22/actions/edit-undo.png share/icons/gnome/22x22/actions/editclear.png share/icons/gnome/22x22/actions/editcopy.png @@ -1059,7 +1092,9 @@ share/icons/gnome/22x22/actions/finish.png share/icons/gnome/22x22/actions/folder-new.png share/icons/gnome/22x22/actions/folder_new.png +share/icons/gnome/22x22/actions/format-indent-less-rtl.png share/icons/gnome/22x22/actions/format-indent-less.png +share/icons/gnome/22x22/actions/format-indent-more-rtl.png share/icons/gnome/22x22/actions/format-indent-more.png share/icons/gnome/22x22/actions/format-justify-center.png share/icons/gnome/22x22/actions/format-justify-fill.png @@ -1085,11 +1120,15 @@ share/icons/gnome/22x22/actions/gnome-stock-text-unindent.png share/icons/gnome/22x22/actions/go-bottom.png share/icons/gnome/22x22/actions/go-down.png +share/icons/gnome/22x22/actions/go-first-rtl.png share/icons/gnome/22x22/actions/go-first.png share/icons/gnome/22x22/actions/go-home.png share/icons/gnome/22x22/actions/go-jump.png +share/icons/gnome/22x22/actions/go-last-rtl.png share/icons/gnome/22x22/actions/go-last.png +share/icons/gnome/22x22/actions/go-next-rtl.png share/icons/gnome/22x22/actions/go-next.png +share/icons/gnome/22x22/actions/go-previous-rtl.png share/icons/gnome/22x22/actions/go-previous.png share/icons/gnome/22x22/actions/go-top.png share/icons/gnome/22x22/actions/go-up.png @@ -1204,12 +1243,17 @@ share/icons/gnome/22x22/actions/mail_spam.png share/icons/gnome/22x22/actions/media-eject.png share/icons/gnome/22x22/actions/media-playback-pause.png +share/icons/gnome/22x22/actions/media-playback-start-rtl.png share/icons/gnome/22x22/actions/media-playback-start.png share/icons/gnome/22x22/actions/media-playback-stop.png share/icons/gnome/22x22/actions/media-record.png +share/icons/gnome/22x22/actions/media-seek-backward-rtl.png share/icons/gnome/22x22/actions/media-seek-backward.png +share/icons/gnome/22x22/actions/media-seek-forward-rtl.png share/icons/gnome/22x22/actions/media-seek-forward.png +share/icons/gnome/22x22/actions/media-skip-backward-rtl.png share/icons/gnome/22x22/actions/media-skip-backward.png +share/icons/gnome/22x22/actions/media-skip-forward-rtl.png share/icons/gnome/22x22/actions/media-skip-forward.png share/icons/gnome/22x22/actions/next.png share/icons/gnome/22x22/actions/object-flip-horizontal.png @@ -1392,7 +1436,6 @@ share/icons/gnome/22x22/apps/kuser.png share/icons/gnome/22x22/apps/kwin.png share/icons/gnome/22x22/apps/locale.png -share/icons/gnome/22x22/apps/logviewer.png share/icons/gnome/22x22/apps/multimedia-volume-control.png share/icons/gnome/22x22/apps/multimedia.png share/icons/gnome/22x22/apps/openterm.png @@ -1497,6 +1540,7 @@ share/icons/gnome/22x22/devices/ac-adapter.png share/icons/gnome/22x22/devices/audio-card.png share/icons/gnome/22x22/devices/audio-input-microphone.png +share/icons/gnome/22x22/devices/audio-speakers.png share/icons/gnome/22x22/devices/battery.png share/icons/gnome/22x22/devices/camera-photo.png share/icons/gnome/22x22/devices/camera-video.png @@ -1551,6 +1595,7 @@ share/icons/gnome/22x22/devices/gtk-harddisk.png share/icons/gnome/22x22/devices/harddrive.png share/icons/gnome/22x22/devices/hdd_unmount.png +share/icons/gnome/22x22/devices/input-dialpad.png share/icons/gnome/22x22/devices/input-gaming.png share/icons/gnome/22x22/devices/input-keyboard.png share/icons/gnome/22x22/devices/input-mouse.png @@ -1565,14 +1610,17 @@ share/icons/gnome/22x22/devices/media-flash.png share/icons/gnome/22x22/devices/media-floppy.png share/icons/gnome/22x22/devices/media-optical.png +share/icons/gnome/22x22/devices/media-removable.png share/icons/gnome/22x22/devices/media-tape.png share/icons/gnome/22x22/devices/modem.png share/icons/gnome/22x22/devices/mouse.png share/icons/gnome/22x22/devices/multimedia-player.png +share/icons/gnome/22x22/devices/network-vpn.png share/icons/gnome/22x22/devices/network-wired.png share/icons/gnome/22x22/devices/network-wireless.png share/icons/gnome/22x22/devices/pda.png share/icons/gnome/22x22/devices/phone.png +share/icons/gnome/22x22/devices/printer-network.png share/icons/gnome/22x22/devices/printer-remote.png share/icons/gnome/22x22/devices/printer.png share/icons/gnome/22x22/devices/printer1.png @@ -1583,6 +1631,7 @@ share/icons/gnome/22x22/devices/stock_printers.png share/icons/gnome/22x22/devices/system-floppy.png share/icons/gnome/22x22/devices/system.png +share/icons/gnome/22x22/devices/uninterruptible-power-supply.png share/icons/gnome/22x22/devices/usbpendrive_unmount.png share/icons/gnome/22x22/devices/video-display.png share/icons/gnome/22x22/devices/xfce-printer.png @@ -1892,6 +1941,7 @@ share/icons/gnome/22x22/status/battery-missing.png share/icons/gnome/22x22/status/changes-allow.png share/icons/gnome/22x22/status/changes-prevent.png +share/icons/gnome/22x22/status/computer-fail.png share/icons/gnome/22x22/status/connect_creating.png share/icons/gnome/22x22/status/connect_established.png share/icons/gnome/22x22/status/connect_no.png @@ -1939,6 +1989,10 @@ share/icons/gnome/22x22/status/messagebox_critical.png share/icons/gnome/22x22/status/messagebox_info.png share/icons/gnome/22x22/status/messagebox_warning.png +share/icons/gnome/22x22/status/microphone-sensitivity-high.png +share/icons/gnome/22x22/status/microphone-sensitivity-low.png +share/icons/gnome/22x22/status/microphone-sensitivity-medium.png +share/icons/gnome/22x22/status/microphone-sensitivity-muted.png share/icons/gnome/22x22/status/network-error.png share/icons/gnome/22x22/status/network-idle.png share/icons/gnome/22x22/status/network-offline.png @@ -1945,11 +1999,13 @@ share/icons/gnome/22x22/status/network-receive.png share/icons/gnome/22x22/status/network-transmit-receive.png share/icons/gnome/22x22/status/network-transmit.png +share/icons/gnome/22x22/status/network-wired-disconnected.png share/icons/gnome/22x22/status/network-wireless-encrypted.png share/icons/gnome/22x22/status/nm-adhoc.png share/icons/gnome/22x22/status/nm-device-wired.png share/icons/gnome/22x22/status/nm-device-wireless.png share/icons/gnome/22x22/status/nm-no-connection.png +share/icons/gnome/22x22/status/non-starred.png share/icons/gnome/22x22/status/printer-error.png share/icons/gnome/22x22/status/printer-printing.png share/icons/gnome/22x22/status/security-high.png @@ -1957,6 +2013,7 @@ share/icons/gnome/22x22/status/security-medium.png share/icons/gnome/22x22/status/software-update-available.png share/icons/gnome/22x22/status/software-update-urgent.png +share/icons/gnome/22x22/status/starred.png share/icons/gnome/22x22/status/stock_appointment-reminder-excl.png share/icons/gnome/22x22/status/stock_appointment-reminder.png share/icons/gnome/22x22/status/stock_attach.png @@ -1994,6 +2051,9 @@ share/icons/gnome/22x22/status/task-due.png share/icons/gnome/22x22/status/task-past-due.png share/icons/gnome/22x22/status/trashcan_full.png +share/icons/gnome/22x22/status/trophy-bronze.png +share/icons/gnome/22x22/status/trophy-gold.png +share/icons/gnome/22x22/status/trophy-silver.png share/icons/gnome/22x22/status/user-available.png share/icons/gnome/22x22/status/user-away.png share/icons/gnome/22x22/status/user-busy.png @@ -2034,6 +2094,7 @@ share/icons/gnome/24x24/actions/document-print-preview.png share/icons/gnome/24x24/actions/document-print.png share/icons/gnome/24x24/actions/document-properties.png +share/icons/gnome/24x24/actions/document-revert-rtl.png share/icons/gnome/24x24/actions/document-revert.png share/icons/gnome/24x24/actions/document-save-as.png share/icons/gnome/24x24/actions/document-save.png @@ -2046,8 +2107,10 @@ share/icons/gnome/24x24/actions/edit-find-replace.png share/icons/gnome/24x24/actions/edit-find.png share/icons/gnome/24x24/actions/edit-paste.png +share/icons/gnome/24x24/actions/edit-redo-rtl.png share/icons/gnome/24x24/actions/edit-redo.png share/icons/gnome/24x24/actions/edit-select-all.png +share/icons/gnome/24x24/actions/edit-undo-rtl.png share/icons/gnome/24x24/actions/edit-undo.png share/icons/gnome/24x24/actions/editclear.png share/icons/gnome/24x24/actions/editcopy.png @@ -2066,7 +2129,9 @@ share/icons/gnome/24x24/actions/finish.png share/icons/gnome/24x24/actions/folder-new.png share/icons/gnome/24x24/actions/folder_new.png +share/icons/gnome/24x24/actions/format-indent-less-rtl.png share/icons/gnome/24x24/actions/format-indent-less.png +share/icons/gnome/24x24/actions/format-indent-more-rtl.png share/icons/gnome/24x24/actions/format-indent-more.png share/icons/gnome/24x24/actions/format-justify-center.png share/icons/gnome/24x24/actions/format-justify-fill.png @@ -2092,11 +2157,15 @@ share/icons/gnome/24x24/actions/gnome-stock-text-unindent.png share/icons/gnome/24x24/actions/go-bottom.png share/icons/gnome/24x24/actions/go-down.png +share/icons/gnome/24x24/actions/go-first-rtl.png share/icons/gnome/24x24/actions/go-first.png share/icons/gnome/24x24/actions/go-home.png share/icons/gnome/24x24/actions/go-jump.png +share/icons/gnome/24x24/actions/go-last-rtl.png share/icons/gnome/24x24/actions/go-last.png +share/icons/gnome/24x24/actions/go-next-rtl.png share/icons/gnome/24x24/actions/go-next.png +share/icons/gnome/24x24/actions/go-previous-rtl.png share/icons/gnome/24x24/actions/go-previous.png share/icons/gnome/24x24/actions/go-top.png share/icons/gnome/24x24/actions/go-up.png @@ -2211,12 +2280,17 @@ share/icons/gnome/24x24/actions/mail_spam.png share/icons/gnome/24x24/actions/media-eject.png share/icons/gnome/24x24/actions/media-playback-pause.png +share/icons/gnome/24x24/actions/media-playback-start-rtl.png share/icons/gnome/24x24/actions/media-playback-start.png share/icons/gnome/24x24/actions/media-playback-stop.png share/icons/gnome/24x24/actions/media-record.png +share/icons/gnome/24x24/actions/media-seek-backward-rtl.png share/icons/gnome/24x24/actions/media-seek-backward.png +share/icons/gnome/24x24/actions/media-seek-forward-rtl.png share/icons/gnome/24x24/actions/media-seek-forward.png +share/icons/gnome/24x24/actions/media-skip-backward-rtl.png share/icons/gnome/24x24/actions/media-skip-backward.png +share/icons/gnome/24x24/actions/media-skip-forward-rtl.png share/icons/gnome/24x24/actions/media-skip-forward.png share/icons/gnome/24x24/actions/next.png share/icons/gnome/24x24/actions/object-flip-horizontal.png @@ -2397,7 +2471,6 @@ share/icons/gnome/24x24/apps/kuser.png share/icons/gnome/24x24/apps/kwin.png share/icons/gnome/24x24/apps/locale.png -share/icons/gnome/24x24/apps/logviewer.png share/icons/gnome/24x24/apps/multimedia-volume-control.png share/icons/gnome/24x24/apps/multimedia.png share/icons/gnome/24x24/apps/openterm.png @@ -2502,6 +2575,7 @@ share/icons/gnome/24x24/devices/ac-adapter.png share/icons/gnome/24x24/devices/audio-card.png share/icons/gnome/24x24/devices/audio-input-microphone.png +share/icons/gnome/24x24/devices/audio-speakers.png share/icons/gnome/24x24/devices/battery.png share/icons/gnome/24x24/devices/camera-photo.png share/icons/gnome/24x24/devices/camera-video.png @@ -2556,6 +2630,7 @@ share/icons/gnome/24x24/devices/gtk-harddisk.png share/icons/gnome/24x24/devices/harddrive.png share/icons/gnome/24x24/devices/hdd_unmount.png +share/icons/gnome/24x24/devices/input-dialpad.png share/icons/gnome/24x24/devices/input-gaming.png share/icons/gnome/24x24/devices/input-keyboard.png share/icons/gnome/24x24/devices/input-mouse.png @@ -2570,14 +2645,17 @@ share/icons/gnome/24x24/devices/media-flash.png share/icons/gnome/24x24/devices/media-floppy.png share/icons/gnome/24x24/devices/media-optical.png +share/icons/gnome/24x24/devices/media-removable.png share/icons/gnome/24x24/devices/media-tape.png share/icons/gnome/24x24/devices/modem.png share/icons/gnome/24x24/devices/mouse.png share/icons/gnome/24x24/devices/multimedia-player.png +share/icons/gnome/24x24/devices/network-vpn.png share/icons/gnome/24x24/devices/network-wired.png share/icons/gnome/24x24/devices/network-wireless.png share/icons/gnome/24x24/devices/pda.png share/icons/gnome/24x24/devices/phone.png +share/icons/gnome/24x24/devices/printer-network.png share/icons/gnome/24x24/devices/printer-remote.png share/icons/gnome/24x24/devices/printer.png share/icons/gnome/24x24/devices/printer1.png @@ -2588,6 +2666,7 @@ share/icons/gnome/24x24/devices/stock_printers.png share/icons/gnome/24x24/devices/system-floppy.png share/icons/gnome/24x24/devices/system.png +share/icons/gnome/24x24/devices/uninterruptible-power-supply.png share/icons/gnome/24x24/devices/usbpendrive_unmount.png share/icons/gnome/24x24/devices/video-display.png share/icons/gnome/24x24/devices/xfce-printer.png @@ -2896,6 +2975,7 @@ share/icons/gnome/24x24/status/battery-missing.png share/icons/gnome/24x24/status/changes-allow.png share/icons/gnome/24x24/status/changes-prevent.png +share/icons/gnome/24x24/status/computer-fail.png share/icons/gnome/24x24/status/connect_creating.png share/icons/gnome/24x24/status/connect_established.png share/icons/gnome/24x24/status/connect_no.png @@ -2943,6 +3023,10 @@ share/icons/gnome/24x24/status/messagebox_critical.png share/icons/gnome/24x24/status/messagebox_info.png share/icons/gnome/24x24/status/messagebox_warning.png +share/icons/gnome/24x24/status/microphone-sensitivity-high.png +share/icons/gnome/24x24/status/microphone-sensitivity-low.png +share/icons/gnome/24x24/status/microphone-sensitivity-medium.png +share/icons/gnome/24x24/status/microphone-sensitivity-muted.png share/icons/gnome/24x24/status/network-error.png share/icons/gnome/24x24/status/network-idle.png share/icons/gnome/24x24/status/network-offline.png @@ -2949,11 +3033,13 @@ share/icons/gnome/24x24/status/network-receive.png share/icons/gnome/24x24/status/network-transmit-receive.png share/icons/gnome/24x24/status/network-transmit.png +share/icons/gnome/24x24/status/network-wired-disconnected.png share/icons/gnome/24x24/status/network-wireless-encrypted.png share/icons/gnome/24x24/status/nm-adhoc.png share/icons/gnome/24x24/status/nm-device-wired.png share/icons/gnome/24x24/status/nm-device-wireless.png share/icons/gnome/24x24/status/nm-no-connection.png +share/icons/gnome/24x24/status/non-starred.png share/icons/gnome/24x24/status/printer-error.png share/icons/gnome/24x24/status/printer-printing.png share/icons/gnome/24x24/status/security-high.png @@ -2961,6 +3047,7 @@ share/icons/gnome/24x24/status/security-medium.png share/icons/gnome/24x24/status/software-update-available.png share/icons/gnome/24x24/status/software-update-urgent.png +share/icons/gnome/24x24/status/starred.png share/icons/gnome/24x24/status/stock_appointment-reminder-excl.png share/icons/gnome/24x24/status/stock_appointment-reminder.png share/icons/gnome/24x24/status/stock_attach.png @@ -2998,6 +3085,9 @@ share/icons/gnome/24x24/status/task-due.png share/icons/gnome/24x24/status/task-past-due.png share/icons/gnome/24x24/status/trashcan_full.png +share/icons/gnome/24x24/status/trophy-bronze.png +share/icons/gnome/24x24/status/trophy-gold.png +share/icons/gnome/24x24/status/trophy-silver.png share/icons/gnome/24x24/status/user-available.png share/icons/gnome/24x24/status/user-away.png share/icons/gnome/24x24/status/user-busy.png @@ -3028,6 +3118,7 @@ share/icons/gnome/256x256/actions/document-print-preview.png share/icons/gnome/256x256/actions/document-print.png share/icons/gnome/256x256/actions/document-properties.png +share/icons/gnome/256x256/actions/document-revert-rtl.png share/icons/gnome/256x256/actions/document-revert.png share/icons/gnome/256x256/actions/document-save-as.png share/icons/gnome/256x256/actions/document-save.png @@ -3051,15 +3142,21 @@ share/icons/gnome/256x256/actions/forward.png share/icons/gnome/256x256/actions/gnome-lockscreen.png share/icons/gnome/256x256/actions/gnome-logout.png +share/icons/gnome/256x256/actions/gnome-run.png share/icons/gnome/256x256/actions/gnome-searchtool.png share/icons/gnome/256x256/actions/gnome-stock-mail-new.png +share/icons/gnome/256x256/actions/go-first-rtl.png share/icons/gnome/256x256/actions/go-first.png share/icons/gnome/256x256/actions/go-jump.png +share/icons/gnome/256x256/actions/go-last-rtl.png share/icons/gnome/256x256/actions/go-last.png +share/icons/gnome/256x256/actions/go-next-rtl.png share/icons/gnome/256x256/actions/go-next.png +share/icons/gnome/256x256/actions/go-previous-rtl.png share/icons/gnome/256x256/actions/go-previous.png share/icons/gnome/256x256/actions/gtk-cancel.png share/icons/gnome/256x256/actions/gtk-delete.png +share/icons/gnome/256x256/actions/gtk-execute.png share/icons/gnome/256x256/actions/gtk-find-and-replace.png share/icons/gnome/256x256/actions/gtk-find.png share/icons/gnome/256x256/actions/gtk-go-back-ltr.png @@ -3123,6 +3220,7 @@ share/icons/gnome/256x256/actions/stop.png share/icons/gnome/256x256/actions/system-lock-screen.png share/icons/gnome/256x256/actions/system-log-out.png +share/icons/gnome/256x256/actions/system-run.png share/icons/gnome/256x256/actions/system-search.png share/icons/gnome/256x256/actions/view-refresh.png share/icons/gnome/256x256/actions/xfce-system-lock.png @@ -3133,6 +3231,7 @@ share/icons/gnome/256x256/apps/accessories-dictionary.png share/icons/gnome/256x256/apps/accessories-text-editor.png share/icons/gnome/256x256/apps/applets-screenshooter.png +share/icons/gnome/256x256/apps/arts.png share/icons/gnome/256x256/apps/background.png share/icons/gnome/256x256/apps/calc.png share/icons/gnome/256x256/apps/config-language.png @@ -3142,6 +3241,7 @@ share/icons/gnome/256x256/apps/gnome-calculator.png share/icons/gnome/256x256/apps/gnome-character-map.png share/icons/gnome/256x256/apps/gnome-help.png +share/icons/gnome/256x256/apps/gnome-mixer.png share/icons/gnome/256x256/apps/gnome-monitor.png share/icons/gnome/256x256/apps/gnome-remote-desktop.png share/icons/gnome/256x256/apps/gnome-settings-accessibility-technologies.png @@ -3154,6 +3254,7 @@ share/icons/gnome/256x256/apps/help-browser.png share/icons/gnome/256x256/apps/kcalc.png share/icons/gnome/256x256/apps/kcharselect.png +share/icons/gnome/256x256/apps/kcmsound.png share/icons/gnome/256x256/apps/kedit.png share/icons/gnome/256x256/apps/key_bindings.png share/icons/gnome/256x256/apps/kfm.png @@ -3164,6 +3265,8 @@ share/icons/gnome/256x256/apps/ksysguard.png share/icons/gnome/256x256/apps/kuser.png share/icons/gnome/256x256/apps/locale.png +share/icons/gnome/256x256/apps/multimedia-volume-control.png +share/icons/gnome/256x256/apps/multimedia.png share/icons/gnome/256x256/apps/openterm.png share/icons/gnome/256x256/apps/preferences-desktop-accessibility.png share/icons/gnome/256x256/apps/preferences-desktop-display.png @@ -3190,21 +3293,26 @@ share/icons/gnome/256x256/apps/user-info.png share/icons/gnome/256x256/apps/utilities-system-monitor.png share/icons/gnome/256x256/apps/utilities-terminal.png +share/icons/gnome/256x256/apps/volume-knob.png share/icons/gnome/256x256/apps/wallpaper.png share/icons/gnome/256x256/apps/web-browser.png share/icons/gnome/256x256/apps/xfce-filemanager.png share/icons/gnome/256x256/apps/xfce-terminal.png share/icons/gnome/256x256/apps/xfce4-backdrop.png +share/icons/gnome/256x256/apps/xfce4-mixer.png share/icons/gnome/256x256/apps/xscreensaver.png share/icons/gnome/256x256/apps/zen-icon.png +share/icons/gnome/256x256/categories/applications-development.png share/icons/gnome/256x256/categories/applications-graphics.png share/icons/gnome/256x256/categories/applications-internet.png share/icons/gnome/256x256/categories/applications-office.png share/icons/gnome/256x256/categories/applications-system.png share/icons/gnome/256x256/categories/gnome-applications.png +share/icons/gnome/256x256/categories/gnome-devel.png share/icons/gnome/256x256/categories/gnome-globe.png share/icons/gnome/256x256/categories/gnome-graphics.png share/icons/gnome/256x256/categories/gnome-system.png +share/icons/gnome/256x256/categories/package_development.png share/icons/gnome/256x256/categories/package_graphics.png share/icons/gnome/256x256/categories/package_network.png share/icons/gnome/256x256/categories/package_office.png @@ -3215,6 +3323,7 @@ share/icons/gnome/256x256/categories/redhat-graphics.png share/icons/gnome/256x256/categories/redhat-internet.png share/icons/gnome/256x256/categories/redhat-office.png +share/icons/gnome/256x256/categories/redhat-programming.png share/icons/gnome/256x256/categories/redhat-system_settings.png share/icons/gnome/256x256/categories/redhat-system_tools.png share/icons/gnome/256x256/categories/stock_internet.png @@ -3224,8 +3333,10 @@ share/icons/gnome/256x256/categories/xfce-system-settings.png share/icons/gnome/256x256/devices/ac-adapter.png share/icons/gnome/256x256/devices/audio-input-microphone.png +share/icons/gnome/256x256/devices/audio-speakers.png share/icons/gnome/256x256/devices/battery.png share/icons/gnome/256x256/devices/camera-photo.png +share/icons/gnome/256x256/devices/camera-web.png share/icons/gnome/256x256/devices/camera.png share/icons/gnome/256x256/devices/camera_unmount.png share/icons/gnome/256x256/devices/cdrom_unmount.png @@ -3259,6 +3370,8 @@ share/icons/gnome/256x256/devices/gnome-dev-media-ms.png share/icons/gnome/256x256/devices/gnome-dev-media-sdmmc.png share/icons/gnome/256x256/devices/gnome-dev-media-sm.png +share/icons/gnome/256x256/devices/gnome-dev-mouse-ball.png +share/icons/gnome/256x256/devices/gnome-dev-mouse-optical.png share/icons/gnome/256x256/devices/gnome-dev-printer.png share/icons/gnome/256x256/devices/gnome-dev-removable-1394.png share/icons/gnome/256x256/devices/gnome-dev-removable-usb.png @@ -3269,7 +3382,10 @@ share/icons/gnome/256x256/devices/gtk-harddisk.png share/icons/gnome/256x256/devices/harddrive.png share/icons/gnome/256x256/devices/hdd_unmount.png +share/icons/gnome/256x256/devices/input-dialpad.png share/icons/gnome/256x256/devices/input-keyboard.png +share/icons/gnome/256x256/devices/input-mouse.png +share/icons/gnome/256x256/devices/input-tablet.png share/icons/gnome/256x256/devices/ipod_mount.png share/icons/gnome/256x256/devices/keyboard.png share/icons/gnome/256x256/devices/kjobviewer.png @@ -3277,22 +3393,32 @@ share/icons/gnome/256x256/devices/media-cdrom.png share/icons/gnome/256x256/devices/media-flash.png share/icons/gnome/256x256/devices/media-optical.png +share/icons/gnome/256x256/devices/media-removable.png +share/icons/gnome/256x256/devices/mouse.png share/icons/gnome/256x256/devices/multimedia-player.png +share/icons/gnome/256x256/devices/phone.png +share/icons/gnome/256x256/devices/printer-network.png share/icons/gnome/256x256/devices/printer-remote.png share/icons/gnome/256x256/devices/printer.png share/icons/gnome/256x256/devices/printer1.png share/icons/gnome/256x256/devices/printmgr.png +share/icons/gnome/256x256/devices/scanner.png +share/icons/gnome/256x256/devices/stock_cell-phone.png share/icons/gnome/256x256/devices/stock_mic.png share/icons/gnome/256x256/devices/stock_printers.png share/icons/gnome/256x256/devices/system.png +share/icons/gnome/256x256/devices/uninterruptible-power-supply.png share/icons/gnome/256x256/devices/usbpendrive_unmount.png share/icons/gnome/256x256/devices/video-display.png share/icons/gnome/256x256/devices/xfce-printer.png share/icons/gnome/256x256/devices/xfce4-display.png share/icons/gnome/256x256/devices/xfce4-keyboard.png +share/icons/gnome/256x256/devices/xfce4-mouse.png share/icons/gnome/256x256/devices/yast_HD.png share/icons/gnome/256x256/devices/yast_idetude.png +share/icons/gnome/256x256/devices/yast_mouse.png share/icons/gnome/256x256/devices/yast_printer.png +share/icons/gnome/256x256/emblems/emblem-mail.png share/icons/gnome/256x256/emblems/emblem-noread.png share/icons/gnome/256x256/emblems/emblem-nowrite.png share/icons/gnome/256x256/emblems/emblem-package.png @@ -3558,11 +3684,13 @@ share/icons/gnome/256x256/status/battery-low-charging.png share/icons/gnome/256x256/status/battery-low.png share/icons/gnome/256x256/status/battery-missing.png +share/icons/gnome/256x256/status/computer-fail.png share/icons/gnome/256x256/status/connect_creating.png share/icons/gnome/256x256/status/connect_established.png share/icons/gnome/256x256/status/connect_no.png share/icons/gnome/256x256/status/dialog-error.png share/icons/gnome/256x256/status/dialog-information.png +share/icons/gnome/256x256/status/dialog-password.png share/icons/gnome/256x256/status/dialog-question.png share/icons/gnome/256x256/status/dialog-warning.png share/icons/gnome/256x256/status/edittrash.png @@ -3582,6 +3710,7 @@ share/icons/gnome/256x256/status/gnome-netstatus-tx.png share/icons/gnome/256x256/status/gnome-netstatus-txrx.png share/icons/gnome/256x256/status/gnome-stock-trash-full.png +share/icons/gnome/256x256/status/gtk-dialog-authentication.png share/icons/gnome/256x256/status/gtk-dialog-error.png share/icons/gnome/256x256/status/gtk-dialog-info.png share/icons/gnome/256x256/status/gtk-dialog-question.png @@ -3601,10 +3730,12 @@ share/icons/gnome/256x256/status/network-receive.png share/icons/gnome/256x256/status/network-transmit-receive.png share/icons/gnome/256x256/status/network-transmit.png +share/icons/gnome/256x256/status/network-wired-disconnected.png share/icons/gnome/256x256/status/nm-adhoc.png share/icons/gnome/256x256/status/nm-device-wired.png share/icons/gnome/256x256/status/nm-device-wireless.png share/icons/gnome/256x256/status/nm-no-connection.png +share/icons/gnome/256x256/status/non-starred.png share/icons/gnome/256x256/status/printer-error.png share/icons/gnome/256x256/status/printer-printing.png share/icons/gnome/256x256/status/security-high.png @@ -3612,6 +3743,7 @@ share/icons/gnome/256x256/status/security-medium.png share/icons/gnome/256x256/status/software-update-available.png share/icons/gnome/256x256/status/software-update-urgent.png +share/icons/gnome/256x256/status/starred.png share/icons/gnome/256x256/status/stock_appointment-reminder-excl.png share/icons/gnome/256x256/status/stock_appointment-reminder.png share/icons/gnome/256x256/status/stock_dialog-error.png @@ -3632,6 +3764,15 @@ share/icons/gnome/256x256/status/stock_volume-mute.png share/icons/gnome/256x256/status/stock_volume.png share/icons/gnome/256x256/status/trashcan_full.png +share/icons/gnome/256x256/status/trophy-bronze.png +share/icons/gnome/256x256/status/trophy-gold.png +share/icons/gnome/256x256/status/trophy-silver.png +share/icons/gnome/256x256/status/user-available.png +share/icons/gnome/256x256/status/user-away.png +share/icons/gnome/256x256/status/user-busy.png +share/icons/gnome/256x256/status/user-idle.png +share/icons/gnome/256x256/status/user-invisible.png +share/icons/gnome/256x256/status/user-offline.png share/icons/gnome/256x256/status/user-trash-full.png share/icons/gnome/256x256/status/xfce-trash_full.png share/icons/gnome/32x32/actions/add.png @@ -3655,6 +3796,7 @@ share/icons/gnome/32x32/actions/document-print-preview.png share/icons/gnome/32x32/actions/document-print.png share/icons/gnome/32x32/actions/document-properties.png +share/icons/gnome/32x32/actions/document-revert-rtl.png share/icons/gnome/32x32/actions/document-revert.png share/icons/gnome/32x32/actions/document-save-as.png share/icons/gnome/32x32/actions/document-save.png @@ -3667,8 +3809,10 @@ share/icons/gnome/32x32/actions/edit-find-replace.png share/icons/gnome/32x32/actions/edit-find.png share/icons/gnome/32x32/actions/edit-paste.png +share/icons/gnome/32x32/actions/edit-redo-rtl.png share/icons/gnome/32x32/actions/edit-redo.png share/icons/gnome/32x32/actions/edit-select-all.png +share/icons/gnome/32x32/actions/edit-undo-rtl.png share/icons/gnome/32x32/actions/edit-undo.png share/icons/gnome/32x32/actions/editclear.png share/icons/gnome/32x32/actions/editcopy.png @@ -3687,7 +3831,9 @@ share/icons/gnome/32x32/actions/finish.png share/icons/gnome/32x32/actions/folder-new.png share/icons/gnome/32x32/actions/folder_new.png +share/icons/gnome/32x32/actions/format-indent-less-rtl.png share/icons/gnome/32x32/actions/format-indent-less.png +share/icons/gnome/32x32/actions/format-indent-more-rtl.png share/icons/gnome/32x32/actions/format-indent-more.png share/icons/gnome/32x32/actions/format-justify-center.png share/icons/gnome/32x32/actions/format-justify-fill.png @@ -3713,11 +3859,15 @@ share/icons/gnome/32x32/actions/gnome-stock-text-unindent.png share/icons/gnome/32x32/actions/go-bottom.png share/icons/gnome/32x32/actions/go-down.png +share/icons/gnome/32x32/actions/go-first-rtl.png share/icons/gnome/32x32/actions/go-first.png share/icons/gnome/32x32/actions/go-home.png share/icons/gnome/32x32/actions/go-jump.png +share/icons/gnome/32x32/actions/go-last-rtl.png share/icons/gnome/32x32/actions/go-last.png +share/icons/gnome/32x32/actions/go-next-rtl.png share/icons/gnome/32x32/actions/go-next.png +share/icons/gnome/32x32/actions/go-previous-rtl.png share/icons/gnome/32x32/actions/go-previous.png share/icons/gnome/32x32/actions/go-top.png share/icons/gnome/32x32/actions/go-up.png @@ -3832,12 +3982,17 @@ share/icons/gnome/32x32/actions/mail_spam.png share/icons/gnome/32x32/actions/media-eject.png share/icons/gnome/32x32/actions/media-playback-pause.png +share/icons/gnome/32x32/actions/media-playback-start-rtl.png share/icons/gnome/32x32/actions/media-playback-start.png share/icons/gnome/32x32/actions/media-playback-stop.png share/icons/gnome/32x32/actions/media-record.png +share/icons/gnome/32x32/actions/media-seek-backward-rtl.png share/icons/gnome/32x32/actions/media-seek-backward.png +share/icons/gnome/32x32/actions/media-seek-forward-rtl.png share/icons/gnome/32x32/actions/media-seek-forward.png +share/icons/gnome/32x32/actions/media-skip-backward-rtl.png share/icons/gnome/32x32/actions/media-skip-backward.png +share/icons/gnome/32x32/actions/media-skip-forward-rtl.png share/icons/gnome/32x32/actions/media-skip-forward.png share/icons/gnome/32x32/actions/next.png share/icons/gnome/32x32/actions/object-flip-horizontal.png @@ -4017,7 +4172,6 @@ share/icons/gnome/32x32/apps/kuser.png share/icons/gnome/32x32/apps/kwin.png share/icons/gnome/32x32/apps/locale.png -share/icons/gnome/32x32/apps/logviewer.png share/icons/gnome/32x32/apps/multimedia-volume-control.png share/icons/gnome/32x32/apps/multimedia.png share/icons/gnome/32x32/apps/openterm.png @@ -4122,6 +4276,7 @@ share/icons/gnome/32x32/devices/ac-adapter.png share/icons/gnome/32x32/devices/audio-card.png share/icons/gnome/32x32/devices/audio-input-microphone.png +share/icons/gnome/32x32/devices/audio-speakers.png share/icons/gnome/32x32/devices/battery.png share/icons/gnome/32x32/devices/camera-photo.png share/icons/gnome/32x32/devices/camera-video.png @@ -4176,6 +4331,7 @@ share/icons/gnome/32x32/devices/gtk-harddisk.png share/icons/gnome/32x32/devices/harddrive.png share/icons/gnome/32x32/devices/hdd_unmount.png +share/icons/gnome/32x32/devices/input-dialpad.png share/icons/gnome/32x32/devices/input-gaming.png share/icons/gnome/32x32/devices/input-keyboard.png share/icons/gnome/32x32/devices/input-mouse.png @@ -4190,14 +4346,17 @@ share/icons/gnome/32x32/devices/media-flash.png share/icons/gnome/32x32/devices/media-floppy.png share/icons/gnome/32x32/devices/media-optical.png +share/icons/gnome/32x32/devices/media-removable.png share/icons/gnome/32x32/devices/media-tape.png share/icons/gnome/32x32/devices/modem.png share/icons/gnome/32x32/devices/mouse.png share/icons/gnome/32x32/devices/multimedia-player.png +share/icons/gnome/32x32/devices/network-vpn.png share/icons/gnome/32x32/devices/network-wired.png share/icons/gnome/32x32/devices/network-wireless.png share/icons/gnome/32x32/devices/pda.png share/icons/gnome/32x32/devices/phone.png +share/icons/gnome/32x32/devices/printer-network.png share/icons/gnome/32x32/devices/printer-remote.png share/icons/gnome/32x32/devices/printer.png share/icons/gnome/32x32/devices/printer1.png @@ -4208,6 +4367,7 @@ share/icons/gnome/32x32/devices/stock_printers.png share/icons/gnome/32x32/devices/system-floppy.png share/icons/gnome/32x32/devices/system.png +share/icons/gnome/32x32/devices/uninterruptible-power-supply.png share/icons/gnome/32x32/devices/usbpendrive_unmount.png share/icons/gnome/32x32/devices/video-display.png share/icons/gnome/32x32/devices/xfce-printer.png @@ -4517,6 +4677,7 @@ share/icons/gnome/32x32/status/battery-missing.png share/icons/gnome/32x32/status/changes-allow.png share/icons/gnome/32x32/status/changes-prevent.png +share/icons/gnome/32x32/status/computer-fail.png share/icons/gnome/32x32/status/connect_creating.png share/icons/gnome/32x32/status/connect_established.png share/icons/gnome/32x32/status/connect_no.png @@ -4561,6 +4722,10 @@ share/icons/gnome/32x32/status/messagebox_critical.png share/icons/gnome/32x32/status/messagebox_info.png share/icons/gnome/32x32/status/messagebox_warning.png +share/icons/gnome/32x32/status/microphone-sensitivity-high.png +share/icons/gnome/32x32/status/microphone-sensitivity-low.png +share/icons/gnome/32x32/status/microphone-sensitivity-medium.png +share/icons/gnome/32x32/status/microphone-sensitivity-muted.png share/icons/gnome/32x32/status/network-error.png share/icons/gnome/32x32/status/network-idle.png share/icons/gnome/32x32/status/network-offline.png @@ -4567,10 +4732,12 @@ share/icons/gnome/32x32/status/network-receive.png share/icons/gnome/32x32/status/network-transmit-receive.png share/icons/gnome/32x32/status/network-transmit.png +share/icons/gnome/32x32/status/network-wired-disconnected.png share/icons/gnome/32x32/status/nm-adhoc.png share/icons/gnome/32x32/status/nm-device-wired.png share/icons/gnome/32x32/status/nm-device-wireless.png share/icons/gnome/32x32/status/nm-no-connection.png +share/icons/gnome/32x32/status/non-starred.png share/icons/gnome/32x32/status/printer-error.png share/icons/gnome/32x32/status/printer-printing.png share/icons/gnome/32x32/status/security-high.png @@ -4578,6 +4745,7 @@ share/icons/gnome/32x32/status/security-medium.png share/icons/gnome/32x32/status/software-update-available.png share/icons/gnome/32x32/status/software-update-urgent.png +share/icons/gnome/32x32/status/starred.png share/icons/gnome/32x32/status/stock_appointment-reminder-excl.png share/icons/gnome/32x32/status/stock_appointment-reminder.png share/icons/gnome/32x32/status/stock_attach.png @@ -4615,6 +4783,9 @@ share/icons/gnome/32x32/status/task-due.png share/icons/gnome/32x32/status/task-past-due.png share/icons/gnome/32x32/status/trashcan_full.png +share/icons/gnome/32x32/status/trophy-bronze.png +share/icons/gnome/32x32/status/trophy-gold.png +share/icons/gnome/32x32/status/trophy-silver.png share/icons/gnome/32x32/status/user-available.png share/icons/gnome/32x32/status/user-away.png share/icons/gnome/32x32/status/user-busy.png @@ -4655,6 +4826,7 @@ share/icons/gnome/48x48/actions/document-print-preview.png share/icons/gnome/48x48/actions/document-print.png share/icons/gnome/48x48/actions/document-properties.png +share/icons/gnome/48x48/actions/document-revert-rtl.png share/icons/gnome/48x48/actions/document-revert.png share/icons/gnome/48x48/actions/document-save-as.png share/icons/gnome/48x48/actions/document-save.png @@ -4667,8 +4839,10 @@ share/icons/gnome/48x48/actions/edit-find-replace.png share/icons/gnome/48x48/actions/edit-find.png share/icons/gnome/48x48/actions/edit-paste.png +share/icons/gnome/48x48/actions/edit-redo-rtl.png share/icons/gnome/48x48/actions/edit-redo.png share/icons/gnome/48x48/actions/edit-select-all.png +share/icons/gnome/48x48/actions/edit-undo-rtl.png share/icons/gnome/48x48/actions/edit-undo.png share/icons/gnome/48x48/actions/editclear.png share/icons/gnome/48x48/actions/editcopy.png @@ -4687,7 +4861,9 @@ share/icons/gnome/48x48/actions/finish.png share/icons/gnome/48x48/actions/folder-new.png share/icons/gnome/48x48/actions/folder_new.png +share/icons/gnome/48x48/actions/format-indent-less-rtl.png share/icons/gnome/48x48/actions/format-indent-less.png +share/icons/gnome/48x48/actions/format-indent-more-rtl.png share/icons/gnome/48x48/actions/format-indent-more.png share/icons/gnome/48x48/actions/format-justify-center.png share/icons/gnome/48x48/actions/format-justify-fill.png @@ -4713,11 +4889,15 @@ share/icons/gnome/48x48/actions/gnome-stock-text-unindent.png share/icons/gnome/48x48/actions/go-bottom.png share/icons/gnome/48x48/actions/go-down.png +share/icons/gnome/48x48/actions/go-first-rtl.png share/icons/gnome/48x48/actions/go-first.png share/icons/gnome/48x48/actions/go-home.png share/icons/gnome/48x48/actions/go-jump.png +share/icons/gnome/48x48/actions/go-last-rtl.png share/icons/gnome/48x48/actions/go-last.png +share/icons/gnome/48x48/actions/go-next-rtl.png share/icons/gnome/48x48/actions/go-next.png +share/icons/gnome/48x48/actions/go-previous-rtl.png share/icons/gnome/48x48/actions/go-previous.png share/icons/gnome/48x48/actions/go-top.png share/icons/gnome/48x48/actions/go-up.png @@ -4832,12 +5012,17 @@ share/icons/gnome/48x48/actions/mail_spam.png share/icons/gnome/48x48/actions/media-eject.png share/icons/gnome/48x48/actions/media-playback-pause.png +share/icons/gnome/48x48/actions/media-playback-start-rtl.png share/icons/gnome/48x48/actions/media-playback-start.png share/icons/gnome/48x48/actions/media-playback-stop.png share/icons/gnome/48x48/actions/media-record.png +share/icons/gnome/48x48/actions/media-seek-backward-rtl.png share/icons/gnome/48x48/actions/media-seek-backward.png +share/icons/gnome/48x48/actions/media-seek-forward-rtl.png share/icons/gnome/48x48/actions/media-seek-forward.png +share/icons/gnome/48x48/actions/media-skip-backward-rtl.png share/icons/gnome/48x48/actions/media-skip-backward.png +share/icons/gnome/48x48/actions/media-skip-forward-rtl.png share/icons/gnome/48x48/actions/media-skip-forward.png share/icons/gnome/48x48/actions/next.png share/icons/gnome/48x48/actions/object-flip-horizontal.png @@ -5017,7 +5202,6 @@ share/icons/gnome/48x48/apps/kuser.png share/icons/gnome/48x48/apps/kwin.png share/icons/gnome/48x48/apps/locale.png -share/icons/gnome/48x48/apps/logviewer.png share/icons/gnome/48x48/apps/multimedia-volume-control.png share/icons/gnome/48x48/apps/multimedia.png share/icons/gnome/48x48/apps/openterm.png @@ -5047,7 +5231,6 @@ share/icons/gnome/48x48/apps/user-info.png share/icons/gnome/48x48/apps/utilities-system-monitor.png share/icons/gnome/48x48/apps/utilities-terminal.png -share/icons/gnome/48x48/apps/visor.png share/icons/gnome/48x48/apps/volume-knob.png share/icons/gnome/48x48/apps/wallpaper.png share/icons/gnome/48x48/apps/web-browser.png @@ -5123,6 +5306,7 @@ share/icons/gnome/48x48/devices/ac-adapter.png share/icons/gnome/48x48/devices/audio-card.png share/icons/gnome/48x48/devices/audio-input-microphone.png +share/icons/gnome/48x48/devices/audio-speakers.png share/icons/gnome/48x48/devices/battery.png share/icons/gnome/48x48/devices/camera-photo.png share/icons/gnome/48x48/devices/camera-video.png @@ -5177,6 +5361,7 @@ share/icons/gnome/48x48/devices/gtk-harddisk.png share/icons/gnome/48x48/devices/harddrive.png share/icons/gnome/48x48/devices/hdd_unmount.png +share/icons/gnome/48x48/devices/input-dialpad.png share/icons/gnome/48x48/devices/input-gaming.png share/icons/gnome/48x48/devices/input-keyboard.png share/icons/gnome/48x48/devices/input-mouse.png @@ -5191,14 +5376,17 @@ share/icons/gnome/48x48/devices/media-flash.png share/icons/gnome/48x48/devices/media-floppy.png share/icons/gnome/48x48/devices/media-optical.png +share/icons/gnome/48x48/devices/media-removable.png share/icons/gnome/48x48/devices/media-tape.png share/icons/gnome/48x48/devices/modem.png share/icons/gnome/48x48/devices/mouse.png share/icons/gnome/48x48/devices/multimedia-player.png +share/icons/gnome/48x48/devices/network-vpn.png share/icons/gnome/48x48/devices/network-wired.png share/icons/gnome/48x48/devices/network-wireless.png share/icons/gnome/48x48/devices/pda.png share/icons/gnome/48x48/devices/phone.png +share/icons/gnome/48x48/devices/printer-network.png share/icons/gnome/48x48/devices/printer-remote.png share/icons/gnome/48x48/devices/printer.png share/icons/gnome/48x48/devices/printer1.png @@ -5209,6 +5397,7 @@ share/icons/gnome/48x48/devices/stock_printers.png share/icons/gnome/48x48/devices/system-floppy.png share/icons/gnome/48x48/devices/system.png +share/icons/gnome/48x48/devices/uninterruptible-power-supply.png share/icons/gnome/48x48/devices/usbpendrive_unmount.png share/icons/gnome/48x48/devices/video-display.png share/icons/gnome/48x48/devices/xfce-printer.png @@ -5519,6 +5708,7 @@ share/icons/gnome/48x48/status/battery-missing.png share/icons/gnome/48x48/status/changes-allow.png share/icons/gnome/48x48/status/changes-prevent.png +share/icons/gnome/48x48/status/computer-fail.png share/icons/gnome/48x48/status/connect_creating.png share/icons/gnome/48x48/status/connect_established.png share/icons/gnome/48x48/status/connect_no.png @@ -5563,6 +5753,10 @@ share/icons/gnome/48x48/status/messagebox_critical.png share/icons/gnome/48x48/status/messagebox_info.png share/icons/gnome/48x48/status/messagebox_warning.png +share/icons/gnome/48x48/status/microphone-sensitivity-high.png +share/icons/gnome/48x48/status/microphone-sensitivity-low.png +share/icons/gnome/48x48/status/microphone-sensitivity-medium.png +share/icons/gnome/48x48/status/microphone-sensitivity-muted.png share/icons/gnome/48x48/status/network-error.png share/icons/gnome/48x48/status/network-idle.png share/icons/gnome/48x48/status/network-offline.png @@ -5569,10 +5763,12 @@ share/icons/gnome/48x48/status/network-receive.png share/icons/gnome/48x48/status/network-transmit-receive.png share/icons/gnome/48x48/status/network-transmit.png +share/icons/gnome/48x48/status/network-wired-disconnected.png share/icons/gnome/48x48/status/nm-adhoc.png share/icons/gnome/48x48/status/nm-device-wired.png share/icons/gnome/48x48/status/nm-device-wireless.png share/icons/gnome/48x48/status/nm-no-connection.png +share/icons/gnome/48x48/status/non-starred.png share/icons/gnome/48x48/status/printer-error.png share/icons/gnome/48x48/status/printer-printing.png share/icons/gnome/48x48/status/security-high.png @@ -5580,6 +5776,7 @@ share/icons/gnome/48x48/status/security-medium.png share/icons/gnome/48x48/status/software-update-available.png share/icons/gnome/48x48/status/software-update-urgent.png +share/icons/gnome/48x48/status/starred.png share/icons/gnome/48x48/status/stock_appointment-reminder-excl.png share/icons/gnome/48x48/status/stock_appointment-reminder.png share/icons/gnome/48x48/status/stock_attach.png @@ -5617,6 +5814,9 @@ share/icons/gnome/48x48/status/task-due.png share/icons/gnome/48x48/status/task-past-due.png share/icons/gnome/48x48/status/trashcan_full.png +share/icons/gnome/48x48/status/trophy-bronze.png +share/icons/gnome/48x48/status/trophy-gold.png +share/icons/gnome/48x48/status/trophy-silver.png share/icons/gnome/48x48/status/user-available.png share/icons/gnome/48x48/status/user-away.png share/icons/gnome/48x48/status/user-busy.png