[Midnightbsd-cvs] mports [19067] trunk/net-im/libpurple: update libpurple 2.10.11
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat May 23 11:24:55 EDT 2015
Revision: 19067
http://svnweb.midnightbsd.org/mports/?rev=19067
Author: laffer1
Date: 2015-05-23 11:24:52 -0400 (Sat, 23 May 2015)
Log Message:
-----------
update libpurple 2.10.11
Modified Paths:
--------------
trunk/net-im/libpurple/Makefile
trunk/net-im/libpurple/distinfo
trunk/net-im/libpurple/pkg-plist
Added Paths:
-----------
trunk/net-im/libpurple/files/patch-configure
Removed Paths:
-------------
trunk/net-im/libpurple/files/patch-libpurple-media-backend-fs2.h
trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.am
trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.in
trunk/net-im/libpurple/files/patch-pidgin_plugins_cap_cap.c
Modified: trunk/net-im/libpurple/Makefile
===================================================================
--- trunk/net-im/libpurple/Makefile 2015-05-23 15:24:20 UTC (rev 19066)
+++ trunk/net-im/libpurple/Makefile 2015-05-23 15:24:52 UTC (rev 19067)
@@ -1,8 +1,8 @@
# $MidnightBSD$
PORTNAME?= libpurple
-PORTVERSION= 2.10.7
-PORTREVISION?= 2
+PORTVERSION= 2.10.11
+PORTREVISION?= 0
CATEGORIES?= net-im
MASTER_SITES= SF/pidgin/Pidgin/${PORTVERSION}
DISTNAME= pidgin-${PORTVERSION}
@@ -12,27 +12,24 @@
LICENSE= gpl2
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_GNOME?= gnomeprefix gnomehack intlhack glib20 libxml2
+USES= cpe gettext gmake libtool pathfix pkgconfig tar:bzip2
+USE_GNOME?= gnomeprefix intltool glib20 libxml2
GNU_CONFIGURE= yes
CONFIGURE_ARGS?=--disable-gtkui \
--disable-consoleui \
- --with-dynamic_prpls=${PRPL_MODULES:S/,$//} \
+ --with-dynamic-prpls=${PRPL_MODULES:S/,$//} \
--enable-static \
--disable-nm
-CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
- PTHREAD_LIB="${PTHREAD_LIBS}"
-CFLAGS+= -D_XOPEN_SOURCE_EXTENDED
-CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
+CPPFLAGS+= -I${LOCALBASE}/include
+LIBS+= -L${LOCALBASE}/lib
+INSTALL_TARGET= install-strip
.if !defined(PIDGIN_SLAVE)
# Pidgin slave ports that require the following functionality, must explicitly
# set these macros themselves.
-USES= gettext iconv
+USES+= iconv python
USE_LDCONFIG= yes
WANT_GNOME= yes
-USE_PYTHON= yes
.if defined(PACKAGE_BUILDING)
.undef WITHOUT_GNOME
@@ -43,6 +40,8 @@
PRPL_MODULES=
+CPE_VENDOR= pidgin
+
OPTIONS_DEFINE= BONJOUR DBUS GNUTLS NSS SASL GSTREAMER VV IDN PERL TCLTK \
SAMETIME SILC GG IRC JABBER MSN MYSPACE NOVELL OSCAR QQ \
SIMPLE YAHOO ZEPHYR
@@ -53,6 +52,7 @@
NSS_DESC= Use Mozilla NSS for encryption support
SASL_DESC= Cyrus SASL support (for jabberd)
GSTREAMER_DESC= Use GStreamer for playing sounds
+VV_DESC= Video and voice support
SAMETIME_DESC= The Lotus Sametime chat protocol
SILC_DESC= The Secure Internet Live Conferencing protocol
GG_DESC= The Gadu-Gadu chat protocol
@@ -72,9 +72,16 @@
OPTIONS_DEFAULT+= GTKSPELL CAP
GTKSPELL_DESC= Spell checking support
CAP_DESC= Contact Availability Prediction plugin
+PLIST_SUB+= GTKUI=""
+.else
+PLIST_SUB+= GTKUI="@comment not installed: "
.endif
-OPTIONSFILE= ${PORT_DBDIR}/${UNIQUENAME}/options
+.if defined(WITH_CONSOLEUI)
+PLIST_SUB+= CONSOLEUI=""
+.else
+PLIST_SUB+= CONSOLEUI="@comment not installed: "
+.endif
CONFIGURE_ARGS+=--disable-doxygen
@@ -81,10 +88,10 @@
.include <bsd.mport.options.mk>
.if ${PORT_OPTIONS:MTCLTK}
-USE_TK= yes
-CFLAGS+= -I${LOCALBASE}/include/tk${TK_VER} -I${LOCALBASE}/include/tcl${TCL_VER}
-CONFIGURE_ARGS+= --with-tclconfig=${LOCALBASE}/lib/tcl${TCL_VER} \
- --with-tkconfig=${LOCALBASE}/lib/tk${TK_VER}
+USES+= tk
+CFLAGS+= -I${TK_INCLUDEDIR} -I${TCL_INCLUDEDIR}
+CONFIGURE_ARGS+= --with-tclconfig=${TCL_LIBDIR} \
+ --with-tkconfig=${TK_LIBDIR}
PLIST_SUB+= TCL:=""
.else
CONFIGURE_ARGS+= --disable-tcl
@@ -115,17 +122,23 @@
CONFIGURE_ARGS+=--disable-gstreamer
.endif
+.if ${PORT_OPTIONS:MVV} && ${PORT_OPTIONS:MGSTREAMER}
+LIB_DEPENDS+= libgstfarsight-0.10.so:${PORTSDIR}/net-im/farsight2
+USE_GSTREAMER+= v4l2
+PLIST_SUB+= VV=""
+.else
CONFIGURE_ARGS+=--disable-vv
PLIST_SUB+= VV="@comment "
+.endif
.if ${PORT_OPTIONS:MIDN}
-LIB_DEPENDS+= idn.17:${PORTSDIR}/dns/libidn
+LIB_DEPENDS+= libidn.so:${PORTSDIR}/dns/libidn
.else
CONFIGURE_ARGS+=--disable-idn
.endif
.if ${PORT_OPTIONS:MCAP}
-LIB_DEPENDS+= sqlite3.8:${PORTSDIR}/databases/sqlite3
+LIB_DEPENDS+= libsqlite3.so:${PORTSDIR}/databases/sqlite3
CONFIGURE_ARGS+=--enable-cap
PLIST_SUB+= CAP=""
.else
@@ -134,7 +147,7 @@
.endif
.if ${PORT_OPTIONS:MGNUTLS}
-LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls
+LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls
CONFIGURE_ARGS+= --enable-gnutls=yes
PLIST_SUB+= GNUTLS=""
.else
@@ -143,7 +156,7 @@
.endif
.if ${PORT_OPTIONS:MNSS}
-LIB_DEPENDS+= nss3:${PORTSDIR}/security/nss
+LIB_DEPENDS+= libnss3.so:${PORTSDIR}/security/nss
CONFIGURE_ARGS+= --enable-nss=yes \
--with-nspr-includes=${LOCALBASE}/include/nspr \
--with-nspr-libs=${LOCALBASE}/lib \
@@ -156,12 +169,12 @@
.endif
.if ${PORT_OPTIONS:MSASL}
-LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2
+LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2
CONFIGURE_ARGS+= --enable-cyrus-sasl
.endif
.if ${PORT_OPTIONS:MBONJOUR}
-LIB_DEPENDS+= avahi-client.3:${PORTSDIR}/net/avahi-app
+LIB_DEPENDS+= libavahi-client.so:${PORTSDIR}/net/avahi-app
PLIST_SUB+= BONJOUR=""
PRPL_MODULES:= bonjour,${PRPL_MODULES}
.else
@@ -170,13 +183,13 @@
.endif
.if ${PORT_OPTIONS:MGTKSPELL}
-LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell
+LIB_DEPENDS+= libgtkspell.so:${PORTSDIR}/textproc/gtkspell
.else
CONFIGURE_ARGS+= --disable-gtkspell
.endif
.if ${PORT_OPTIONS:MDBUS}
-LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
+LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
.if !defined(PIDGIN_SLAVE)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus
.endif
@@ -188,19 +201,22 @@
.endif
.if ${PORT_OPTIONS:MPERL}
-USE_PERL5= yes
+USES+= perl5
CONFIGURE_ARGS+= --with-perl-lib=site
PLIST_SUB+= PERL:=""
.if !defined(PIDGIN_SLAVE)
-MAN3+= Purple.3
+PLIST_SUB+= PERLMAN:=""
+.else
+PLIST_SUB+= PERLMAN:="@comment not installed: "
.endif
.else
CONFIGURE_ARGS+= --disable-perl
-PLIST_SUB+= PERL:="@comment not installed: "
+PLIST_SUB+= PERL:="@comment not installed: " \
+ PERLMAN:="@comment not installed: "
.endif
.if ${PORT_OPTIONS:MSAMETIME}
-LIB_DEPENDS+= meanwhile.1:${PORTSDIR}/net-im/meanwhile
+LIB_DEPENDS+= libmeanwhile.so:${PORTSDIR}/net-im/meanwhile
PLIST_SUB+= SAMETIME=""
PRPL_MODULES:= sametime,${PRPL_MODULES}
.else
@@ -209,7 +225,7 @@
.endif
.if ${PORT_OPTIONS:MSILC}
-LIB_DEPENDS+= silcclient-1.1:${PORTSDIR}/devel/silc-toolkit
+LIB_DEPENDS+= libsilcclient.so:${PORTSDIR}/devel/silc-toolkit
CONFIGURE_ARGS+= --with-silc-includes=${LOCALBASE}/include/silc \
--with-silc-libs=${LOCALBASE}/lib
PLIST_SUB+= SILC=""
@@ -301,24 +317,19 @@
.endif
post-patch:
- @${REINPLACE_CMD} -e 's|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' \
- -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
- -e 's|-lpanel |-lpanel -lncurses|g' \
+ @${REINPLACE_CMD} \
-e 's|-lpthread|${PTHREAD_LIBS:S/"//g}|g' \
- -e 's|-lsilc -lsilcclient ${PTHREAD_LIBS} $$LIBDL|-lsilc -lsilcclient ${PTHREAD_LIBS} -liconv|' \
- -e 's|TCL_VERSION found but 8.3 required|TCL_VERSION found but ${TCLTK_VER} required|g' \
- -e 's|TCL_MINOR_VERSION" -ne 3|TCL_MINOR_VERSION" -ne ${TCLTK_VER:E}|' \
+ -e 's|-lsilc -lsilcclient ${PTHREAD_LIBS} $$LIBDL|-lsilc -lsilcclient ${PTHREAD_LIBS} ${ICONV_LIB}|' \
${WRKSRC}/configure
- @${REINPLACE_CMD} -e 's|/bin/bash|${SH}|' \
- ${WRKSRC}/libpurple/purple-send \
- ${WRKSRC}/libpurple/purple-send-async
- @${REINPLACE_CMD} -e 's|/python|/env python|' \
- ${WRKSRC}/libpurple/purple-remote \
- ${WRKSRC}/libpurple/purple-url-handler
.if defined(PIDGIN_SLAVE)
@${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \
- 's|[$$][(]top_builddir[)]/libpurple/libpurple.la|${LOCALBASE}/lib/libpurple.la|g'
+ 's|$$(top_builddir)/libpurple/libpurple.la|-lpurple|'
.endif
- @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH}
+.if !defined(PIDGIN_SLAVE) && ${PORT_OPTIONS:MPERL}
+post-install:
+ @${SED} -i '' -e 's|^${FAKE_DESTDIR}||g' \
+ ${PREFIX}/lib/purple-2/perl/auto/Purple/.packlist
+.endif
+
.include <bsd.port.post.mk>
Modified: trunk/net-im/libpurple/distinfo
===================================================================
--- trunk/net-im/libpurple/distinfo 2015-05-23 15:24:20 UTC (rev 19066)
+++ trunk/net-im/libpurple/distinfo 2015-05-23 15:24:52 UTC (rev 19067)
@@ -1,2 +1,2 @@
-SHA256 (pidgin-2.10.7.tar.bz2) = eba32994eca20d1cf24a4261b059b2de71a1ec2dd0926e904074b0db49f7f192
-SIZE (pidgin-2.10.7.tar.bz2) = 10069279
+SHA256 (pidgin-2.10.11.tar.bz2) = f2ae211341fc77efb9945d40e9932aa535cdf3a6c8993fe7919fca8cc1c04007
+SIZE (pidgin-2.10.11.tar.bz2) = 9458050
Added: trunk/net-im/libpurple/files/patch-configure
===================================================================
--- trunk/net-im/libpurple/files/patch-configure (rev 0)
+++ trunk/net-im/libpurple/files/patch-configure 2015-05-23 15:24:52 UTC (rev 19067)
@@ -0,0 +1,11 @@
+--- configure.orig 2014-12-02 11:21:18.056424694 -0500
++++ configure 2014-12-02 11:21:43.067421364 -0500
+@@ -17452,7 +17452,7 @@ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncursesw_initscr" >&5
+ $as_echo "$ac_cv_lib_ncursesw_initscr" >&6; }
+ if test "x$ac_cv_lib_ncursesw_initscr" = xyes; then :
+- GNT_LIBS="-lncursesw"
++ GNT_LIBS="-lncursesw -ltinfow"
+ else
+ enable_consoleui=no
+ fi
Property changes on: trunk/net-im/libpurple/files/patch-configure
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Deleted: trunk/net-im/libpurple/files/patch-libpurple-media-backend-fs2.h
===================================================================
--- trunk/net-im/libpurple/files/patch-libpurple-media-backend-fs2.h 2015-05-23 15:24:20 UTC (rev 19066)
+++ trunk/net-im/libpurple/files/patch-libpurple-media-backend-fs2.h 2015-05-23 15:24:52 UTC (rev 19067)
@@ -1,18 +0,0 @@
---- libpurple/media/backend-fs2.h.orig 2010-05-22 16:51:01.677902000 +0800
-+++ libpurple/media/backend-fs2.h 2010-05-23 16:07:07.000000000 +0800
-@@ -59,6 +59,7 @@
- * Temporary function in order to be able to test while
- * integrating with PurpleMedia
- */
-+#ifdef USE_GSTREAMER
- #include <gst/gst.h>
- GstElement *purple_media_backend_fs2_get_src(
- PurpleMediaBackendFs2 *self,
-@@ -70,6 +71,7 @@
- const gchar *sess_id, double level);
- void purple_media_backend_fs2_set_output_volume(PurpleMediaBackendFs2 *self,
- const gchar *sess_id, const gchar *who, double level);
-+#endif
- /* end tmp */
-
- G_END_DECLS
Deleted: trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.am
===================================================================
--- trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.am 2015-05-23 15:24:20 UTC (rev 19066)
+++ trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.am 2015-05-23 15:24:52 UTC (rev 19067)
@@ -1,11 +0,0 @@
---- libpurple/protocols/irc/Makefile.am.orig 2013-02-11 03:16:52.000000000 -0600
-+++ libpurple/protocols/irc/Makefile.am 2013-02-15 15:18:32.950591016 -0600
-@@ -27,7 +27,7 @@
- st =
- pkg_LTLIBRARIES = libirc.la
- libirc_la_SOURCES = $(IRCSOURCES)
--libirc_la_LIBADD = $(GLIB_LIBS)
-+libirc_la_LIBADD = $(GLIB_LIBS) $(SASL_LIBS)
-
- endif
-
Deleted: trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.in
===================================================================
--- trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.in 2015-05-23 15:24:20 UTC (rev 19066)
+++ trunk/net-im/libpurple/files/patch-libpurple-protocols-irc-Makefile.in 2015-05-23 15:24:52 UTC (rev 19067)
@@ -1,21 +0,0 @@
---- libpurple/protocols/irc/Makefile.in.orig 2013-02-11 03:17:20.000000000 -0600
-+++ libpurple/protocols/irc/Makefile.in 2013-02-15 15:18:43.256590687 -0600
-@@ -92,7 +92,8 @@
- am__installdirs = "$(DESTDIR)$(pkgdir)"
- LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkg_LTLIBRARIES)
- am__DEPENDENCIES_1 =
-- at STATIC_IRC_FALSE@libirc_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
-+ at STATIC_IRC_FALSE@libirc_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
-+ at STATIC_IRC_FALSE@ $(am__DEPENDENCIES_1)
- am__libirc_la_SOURCES_DIST = cmds.c dcc_send.c irc.c irc.h msgs.c \
- parse.c
- am__objects_1 = libirc_la-cmds.lo libirc_la-dcc_send.lo \
-@@ -415,7 +416,7 @@
- @STATIC_IRC_TRUE at libirc_la_SOURCES = $(IRCSOURCES)
- @STATIC_IRC_TRUE at libirc_la_CFLAGS = $(AM_CFLAGS)
- @STATIC_IRC_FALSE at pkg_LTLIBRARIES = libirc.la
-- at STATIC_IRC_FALSE@libirc_la_LIBADD = $(GLIB_LIBS)
-+ at STATIC_IRC_FALSE@libirc_la_LIBADD = $(GLIB_LIBS) $(SASL_LIBS)
- AM_CPPFLAGS = \
- -I$(top_srcdir)/libpurple \
- -I$(top_builddir)/libpurple \
Deleted: trunk/net-im/libpurple/files/patch-pidgin_plugins_cap_cap.c
===================================================================
--- trunk/net-im/libpurple/files/patch-pidgin_plugins_cap_cap.c 2015-05-23 15:24:20 UTC (rev 19066)
+++ trunk/net-im/libpurple/files/patch-pidgin_plugins_cap_cap.c 2015-05-23 15:24:52 UTC (rev 19067)
@@ -1,11 +0,0 @@
---- pidgin/plugins/cap/cap.c.orig 2013-03-24 20:34:29.882262000 +0000
-+++ pidgin/plugins/cap/cap.c 2013-03-24 20:34:39.576121000 +0000
-@@ -43,7 +43,7 @@ static double generate_prediction_for(Pu
- int threshold = purple_prefs_get_int("/plugins/gtk/cap/threshold");
- int min_minute = (current_minute - threshold) % 1440;
- int max_minute = (current_minute + threshold) % 1440;
-- char *sql, sta_id = NULL;
-+ char *sql, *sta_id = NULL;
- sqlite3_stmt *stmt = NULL;
- const char *tail = NULL;
- int rc;
Modified: trunk/net-im/libpurple/pkg-plist
===================================================================
--- trunk/net-im/libpurple/pkg-plist 2015-05-23 15:24:20 UTC (rev 19066)
+++ trunk/net-im/libpurple/pkg-plist 2015-05-23 15:24:52 UTC (rev 19067)
@@ -75,125 +75,99 @@
include/libpurple/whiteboard.h
include/libpurple/xmlnode.h
lib/purple-2/autoaccept.a
-lib/purple-2/autoaccept.la
lib/purple-2/autoaccept.so
lib/purple-2/buddynote.a
-lib/purple-2/buddynote.la
lib/purple-2/buddynote.so
%%DBUS%%lib/purple-2/dbus-example.a
-%%DBUS%%lib/purple-2/dbus-example.la
%%DBUS%%lib/purple-2/dbus-example.so
lib/purple-2/idle.a
-lib/purple-2/idle.la
lib/purple-2/idle.so
lib/purple-2/joinpart.a
-lib/purple-2/joinpart.la
lib/purple-2/joinpart.so
%%OSCAR%%lib/purple-2/libaim.a
-%%OSCAR%%lib/purple-2/libaim.la
%%OSCAR%%lib/purple-2/libaim.so
%%OSCAR%%lib/purple-2/libicq.a
-%%OSCAR%%lib/purple-2/libicq.la
%%OSCAR%%lib/purple-2/libicq.so
%%BONJOUR%%lib/purple-2/libbonjour.a
-%%BONJOUR%%lib/purple-2/libbonjour.la
%%BONJOUR%%lib/purple-2/libbonjour.so
%%GG%%lib/purple-2/libgg.a
-%%GG%%lib/purple-2/libgg.la
%%GG%%lib/purple-2/libgg.so
%%IRC%%lib/purple-2/libirc.a
-%%IRC%%lib/purple-2/libirc.la
%%IRC%%lib/purple-2/libirc.so
%%JABBER%%lib/purple-2/libjabber.a
-%%JABBER%%lib/purple-2/libjabber.la
%%JABBER%%lib/purple-2/libjabber.so
%%JABBER%%lib/purple-2/libjabber.so.0
+%%JABBER%%lib/purple-2/libjabber.so.0.0.0
%%MSN%%lib/purple-2/libmsn.a
-%%MSN%%lib/purple-2/libmsn.la
%%MSN%%lib/purple-2/libmsn.so
%%MYSPACE%%lib/purple-2/libmyspace.a
-%%MYSPACE%%lib/purple-2/libmyspace.la
%%MYSPACE%%lib/purple-2/libmyspace.so
%%NOVELL%%lib/purple-2/libnovell.a
-%%NOVELL%%lib/purple-2/libnovell.la
%%NOVELL%%lib/purple-2/libnovell.so
%%OSCAR%%lib/purple-2/liboscar.a
-%%OSCAR%%lib/purple-2/liboscar.la
%%OSCAR%%lib/purple-2/liboscar.so
%%OSCAR%%lib/purple-2/liboscar.so.0
+%%OSCAR%%lib/purple-2/liboscar.so.0.0.0
%%SILC%%lib/purple-2/libsilcpurple.a
-%%SILC%%lib/purple-2/libsilcpurple.la
%%SILC%%lib/purple-2/libsilcpurple.so
%%SAMETIME%%lib/purple-2/libsametime.a
-%%SAMETIME%%lib/purple-2/libsametime.la
%%SAMETIME%%lib/purple-2/libsametime.so
%%SIMPLE%%lib/purple-2/libsimple.a
-%%SIMPLE%%lib/purple-2/libsimple.la
%%SIMPLE%%lib/purple-2/libsimple.so
%%JABBER%%lib/purple-2/libxmpp.a
-%%JABBER%%lib/purple-2/libxmpp.la
%%JABBER%%lib/purple-2/libxmpp.so
%%YAHOO%%lib/purple-2/libyahoo.a
-%%YAHOO%%lib/purple-2/libyahoo.la
%%YAHOO%%lib/purple-2/libyahoo.so
%%YAHOO%%lib/purple-2/libyahoojp.a
-%%YAHOO%%lib/purple-2/libyahoojp.la
%%YAHOO%%lib/purple-2/libyahoojp.so
%%YAHOO%%lib/purple-2/libymsg.a
-%%YAHOO%%lib/purple-2/libymsg.la
%%YAHOO%%lib/purple-2/libymsg.so
%%YAHOO%%lib/purple-2/libymsg.so.0
+%%YAHOO%%lib/purple-2/libymsg.so.0.0.0
%%ZEPHYR%%lib/purple-2/libzephyr.a
-%%ZEPHYR%%lib/purple-2/libzephyr.la
%%ZEPHYR%%lib/purple-2/libzephyr.so
lib/purple-2/log_reader.a
-lib/purple-2/log_reader.la
lib/purple-2/log_reader.so
lib/purple-2/newline.a
-lib/purple-2/newline.la
lib/purple-2/newline.so
+%%NSS%%lib/purple-2/nss-prefs.a
+%%NSS%%lib/purple-2/nss-prefs.so
lib/purple-2/offlinemsg.a
-lib/purple-2/offlinemsg.la
lib/purple-2/offlinemsg.so
%%PERL:%%lib/purple-2/perl.a
-%%PERL:%%lib/purple-2/perl.la
%%PERL:%%lib/purple-2/perl.so
%%PERL:%%lib/purple-2/perl/Purple.pm
-%%PERL:%%lib/purple-2/perl/auto/Purple/.packlist
-%%PERL:%%lib/purple-2/perl/auto/Purple/Purple.bs
%%PERL:%%lib/purple-2/perl/auto/Purple/Purple.so
%%PERL:%%lib/purple-2/perl/auto/Purple/autosplit.ix
lib/purple-2/psychic.a
-lib/purple-2/psychic.la
lib/purple-2/psychic.so
%%GNUTLS%%lib/purple-2/ssl-gnutls.a
-%%GNUTLS%%lib/purple-2/ssl-gnutls.la
%%GNUTLS%%lib/purple-2/ssl-gnutls.so
%%NSS%%lib/purple-2/ssl-nss.a
-%%NSS%%lib/purple-2/ssl-nss.la
%%NSS%%lib/purple-2/ssl-nss.so
lib/purple-2/ssl.a
-lib/purple-2/ssl.la
lib/purple-2/ssl.so
lib/purple-2/statenotify.a
-lib/purple-2/statenotify.la
lib/purple-2/statenotify.so
%%TCL:%%lib/purple-2/tcl.a
-%%TCL:%%lib/purple-2/tcl.la
%%TCL:%%lib/purple-2/tcl.so
%%DBUS%%lib/libpurple-client.a
-%%DBUS%%lib/libpurple-client.la
%%DBUS%%lib/libpurple-client.so
-%%DBUS%%lib/libpurple-client.so.10
+%%DBUS%%lib/libpurple-client.so.0
+%%DBUS%%lib/libpurple-client.so.0.10.11
lib/libpurple.a
-lib/libpurple.la
lib/libpurple.so
-lib/libpurple.so.10
+lib/libpurple.so.0
+lib/libpurple.so.0.10.11
libdata/pkgconfig/purple.pc
+%%CONSOLEUI%%man/man1/finch.1.gz
+%%GTKUI%%man/man1/pidgin.1.gz
+%%PERLMAN:%%man/man3/Purple.3.gz
share/aclocal/purple.m4
share/locale/af/LC_MESSAGES/pidgin.mo
share/locale/am/LC_MESSAGES/pidgin.mo
share/locale/ar/LC_MESSAGES/pidgin.mo
+share/locale/ast/LC_MESSAGES/pidgin.mo
share/locale/az/LC_MESSAGES/pidgin.mo
share/locale/be at latin/LC_MESSAGES/pidgin.mo
share/locale/bg/LC_MESSAGES/pidgin.mo
@@ -224,23 +198,23 @@
share/locale/hi/LC_MESSAGES/pidgin.mo
share/locale/hr/LC_MESSAGES/pidgin.mo
share/locale/hu/LC_MESSAGES/pidgin.mo
-share/locale/hy/LC_MESSAGES/pidgin.mo
share/locale/id/LC_MESSAGES/pidgin.mo
share/locale/it/LC_MESSAGES/pidgin.mo
share/locale/ja/LC_MESSAGES/pidgin.mo
share/locale/ka/LC_MESSAGES/pidgin.mo
+share/locale/kk/LC_MESSAGES/pidgin.mo
share/locale/ko/LC_MESSAGES/pidgin.mo
share/locale/km/LC_MESSAGES/pidgin.mo
share/locale/kn/LC_MESSAGES/pidgin.mo
share/locale/ku/LC_MESSAGES/pidgin.mo
-share/locale/lo/LC_MESSAGES/pidgin.mo
+share/locale/ku_IQ/LC_MESSAGES/pidgin.mo
share/locale/lt/LC_MESSAGES/pidgin.mo
+share/locale/lv/LC_MESSAGES/pidgin.mo
share/locale/mai/LC_MESSAGES/pidgin.mo
share/locale/mhr/LC_MESSAGES/pidgin.mo
share/locale/mk/LC_MESSAGES/pidgin.mo
share/locale/mn/LC_MESSAGES/pidgin.mo
share/locale/mr/LC_MESSAGES/pidgin.mo
-share/locale/ms_MY/LC_MESSAGES/pidgin.mo
share/locale/my_MM/LC_MESSAGES/pidgin.mo
share/locale/nb/LC_MESSAGES/pidgin.mo
share/locale/ne/LC_MESSAGES/pidgin.mo
@@ -267,6 +241,7 @@
share/locale/te/LC_MESSAGES/pidgin.mo
share/locale/th/LC_MESSAGES/pidgin.mo
share/locale/tr/LC_MESSAGES/pidgin.mo
+share/locale/tt/LC_MESSAGES/pidgin.mo
share/locale/uk/LC_MESSAGES/pidgin.mo
share/locale/ur/LC_MESSAGES/pidgin.mo
share/locale/vi/LC_MESSAGES/pidgin.mo
@@ -282,82 +257,27 @@
share/purple/ca-certs/CAcert_Root.pem
share/purple/ca-certs/Deutsche_Telekom_Root_CA_2.pem
share/purple/ca-certs/DigiCertHighAssuranceCA-3.pem
+share/purple/ca-certs/DigiCertHighAssuranceEVRootCA.pem
+share/purple/ca-certs/Entrust.net_2048.pem
share/purple/ca-certs/Entrust.net_Secure_Server_CA.pem
share/purple/ca-certs/Equifax_Secure_CA.pem
share/purple/ca-certs/Equifax_Secure_Global_eBusiness_CA-1.pem
share/purple/ca-certs/GTE_CyberTrust_Global_Root.pem
share/purple/ca-certs/Go_Daddy_Class_2_CA.pem
-share/purple/ca-certs/Microsoft_Internet_Authority.pem
share/purple/ca-certs/Microsoft_Internet_Authority_2010.pem
-share/purple/ca-certs/Microsoft_Secure_Server_Authority.pem
share/purple/ca-certs/Microsoft_Secure_Server_Authority_2010.pem
share/purple/ca-certs/StartCom_Certification_Authority.pem
-share/purple/ca-certs/StartCom_Free_SSL_CA.pem
share/purple/ca-certs/Thawte_Premium_Server_CA.pem
share/purple/ca-certs/Thawte_Primary_Root_CA.pem
share/purple/ca-certs/ValiCert_Class_2_VA.pem
share/purple/ca-certs/VeriSign_Class3_Extended_Validation_CA.pem
-share/purple/ca-certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G2.pem
-share/purple/ca-certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem
-share/purple/ca-certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5_2.pem
share/purple/ca-certs/VeriSign_International_Server_Class_3_CA.pem
share/purple/ca-certs/Verisign_Class3_Primary_CA.pem
-share/purple/ca-certs/Verisign_RSA_Secure_Server_CA.pem
+share/purple/ca-certs/VeriSign_Class_3_Primary_CA-G2.pem
+share/purple/ca-certs/VeriSign_Class_3_Primary_CA-G5-2.pem
+share/purple/ca-certs/VeriSign_Class_3_Primary_CA-G5.pem
share/sounds/purple/alert.wav
share/sounds/purple/login.wav
share/sounds/purple/logout.wav
share/sounds/purple/receive.wav
share/sounds/purple/send.wav
- at dirrm share/sounds/purple
- at dirrm share/purple/ca-certs
- at dirrm share/purple
- at dirrmtry share/locale/zh_HK/LC_MESSAGES
- at dirrmtry share/locale/zh_HK
- at dirrmtry share/locale/xh/LC_MESSAGES
- at dirrmtry share/locale/xh
- at dirrmtry share/locale/ur/LC_MESSAGES
- at dirrmtry share/locale/ur
- at dirrmtry share/locale/te/LC_MESSAGES
- at dirrmtry share/locale/te
- at dirrmtry share/locale/sw/LC_MESSAGES
- at dirrmtry share/locale/sw
- at dirrmtry share/locale/sr at latin/LC_MESSAGES
- at dirrmtry share/locale/sr at latin
- at dirrmtry share/locale/si/LC_MESSAGES
- at dirrmtry share/locale/si
- at dirrmtry share/locale/ps/LC_MESSAGES
- at dirrmtry share/locale/ps
- at dirrmtry share/locale/oc/LC_MESSAGES
- at dirrmtry share/locale/oc
- at dirrmtry share/locale/my_MM/LC_MESSAGES
- at dirrmtry share/locale/my_MM
- at dirrmtry share/locale/ms_MY/LC_MESSAGES
- at dirrmtry share/locale/ms_MY
- at dirrmtry share/locale/mr/LC_MESSAGES
- at dirrmtry share/locale/mr
- at dirrmtry share/locale/mhr/LC_MESSAGES
- at dirrmtry share/locale/mhr
- at dirrmtry share/locale/mai/LC_MESSAGES
- at dirrmtry share/locale/mai
- at dirrmtry share/locale/lo/LC_MESSAGES
- at dirrmtry share/locale/lo
- at dirrmtry share/locale/ku/LC_MESSAGES
- at dirrmtry share/locale/ku
- at dirrmtry share/locale/km/LC_MESSAGES
- at dirrmtry share/locale/km
- at dirrmtry share/locale/hy/LC_MESSAGES
- at dirrmtry share/locale/hy
- at dirrmtry share/locale/dz/LC_MESSAGES
- at dirrmtry share/locale/dz
- at dirrmtry share/locale/ca at valencia/LC_MESSAGES
- at dirrmtry share/locale/ca at valencia
- at dirrmtry share/locale/bn_IN/LC_MESSAGES
- at dirrmtry share/locale/bn_IN
- at dirrmtry share/locale/be at latin/LC_MESSAGES
- at dirrmtry share/locale/be at latin
-%%PERL:%%@dirrm lib/purple-2/perl/auto/Purple
-%%PERL:%%@dirrm lib/purple-2/perl/auto
-%%PERL:%%@dirrm lib/purple-2/perl
- at dirrm lib/purple-2
- at dirrm include/libpurple/media
- at dirrm include/libpurple
More information about the Midnightbsd-cvs
mailing list