5908229cb6
i) CVE-2008-2927 fix ii) the previous version was being rejected from the ICQ network. version 2.4.3 (07/01/2008): libpurple: * Yahoo! Japan now uses UTF-8, matching the behavior of official clients and restoring compatibility with the web messenger (Yusuke Odate) * Setting your buddy icon once again works for Yahoo! accounts. * Fixes in the Yahoo! protocol to prevent a double free, crashes on aliases, and alias functionality * Fix crashes in the bonjour protocol * Always use UTF-8 for Yahoo! (#5973) * Fix a crash when the given jabber id is invalid. * Make the IRC "unknown message" debugging messages UTF-8 safe. * Fix connecting to ICQ * Fix a memleak when handling jabber xforms. Pidgin: * Include the send button plugin in the win32 build * Various memory leak fixes
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.14 2008/07/11 07:39:20 tnn Exp $
|
|
#
|
|
|
|
PKGNAME= finch-${PIDGIN_VERSION}
|
|
|
|
COMMENT= Multi-protocol Instant Messaging client console frontend
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../chat/libpurple/Makefile.common"
|
|
|
|
USE_TOOLS+= msgfmt
|
|
|
|
PKGCONFIG_OVERRIDE+= finch/finch.pc.in
|
|
PKGCONFIG_OVERRIDE+= finch/libgnt/gnt.pc.in
|
|
PKGCONFIG_OVERRIDE+= gaim.pc.in
|
|
PKGCONFIG_OVERRIDE+= libpurple/purple.pc.in
|
|
PKGCONFIG_OVERRIDE+= pidgin/pidgin.pc.in
|
|
|
|
CONFIGURE_ARGS+= --enable-consoleui
|
|
|
|
#CONFIGURE_ARGS+= --disable-plugins
|
|
|
|
# The configure script uses an incredibly stupid way to detect if the
|
|
# ncurses header is present. As such, it needs the exact path to the
|
|
# ncurses header it will use, so provide the path to the one in
|
|
# ${BUILDLINK_DIR}.
|
|
#
|
|
CONFIGURE_ARGS+= --with-ncurses-headers=${BUILDLINK_DIR}/include
|
|
|
|
USE_NCURSES= yes # force ncurses, for libpanel
|
|
|
|
BUILD_DIRS= finch
|
|
|
|
.include "options.mk"
|
|
|
|
pre-build:
|
|
# XXX Find a cleaner way.
|
|
${TEST} -r ${WRKSRC}/libpurple/libpurple.la || \
|
|
ln -s ${BUILDLINK_DIR}/lib/libpurple.la ${WRKSRC}/libpurple/.
|
|
|
|
post-install:
|
|
${INSTALL_MAN_DIR} ${DESTDIR:Q}${PREFIX:Q}/${PKGMANDIR:Q}/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/finch.1 \
|
|
${DESTDIR:Q}${PREFIX:Q}/${PKGMANDIR:Q}/man1
|
|
|
|
BUILDLINK_API_DEPENDS.libpurple+= libpurple-${PIDGIN_VERSION}{,nb*}
|
|
.include "../../chat/libpurple/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/ncursesw/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|