pkgsrc-wip/swift/Makefile
Thomas Klausner 44a6df76f6 Update to 2.0.
These are the changes since 1.0:

    Suitable names will now be suggested from the contact's vcard
    when adding/editing their roster entry.
    It is now possible for sysadmins to deploy files with policies
    for configuration options, such as making it impossible for
    users to save passwords or to force sound notifications off,
    or to set defaults.
    Swift will now use appropriate algorithms when run on a Windows
    platform locked down in FIPS-140-2 mode.
    Our TLS provider has been changed to the platform-provided one
    (Schannel) on Windows, allowing us to use certificates (both
    file and card-based) from the system store (CAPI).
    Added support for message receipts in one-to-one conversations
    (XEP-0184)
    Added support for several MUC operations (kicking, banning,
    invites, topic changes, room destruction, changing participant
    affiliations)
    It is now possible to resize the font in the chat window
    conversations.
    Added support for message correction. Use 'up' to edit the
    previous message.
    A list of recent chats is now kept in the 'Chats' tab of the
    main window.
    Added support for server commands.
    Chat tabs with unread messages from several chats will now be
    a little more descriptive.
    Use a bar for showing where the last read messages in a chat
    are.
    Added support for SOCKS5 and HTTPConnect proxies. These settings
    are taken from the platform preferences.
    Retrieve incremental contact list on login on servers that
    support it (XEP-0237: Roster Versioning)
    Lots of bugfixes, performance fixes, and other changes
    Enable auto-completion of nicknames that don't start with a
    letter.
    Generate crash dumps on Windows.
    Connection timeouts are now on each connection separately,
    instead of on the complete connection process.
    Don't allow pressing <Enter> in the roster to trigger logins.
    Don't lose security labels when correcting a message.
    Don't crash when completing user search without selection.
    Always auto join MUC with a consistent nickname.
    Renamed swift binary to swift-im on Linux.
    Avoid woosh down and woosh up on Mac when opening chat windows.
    Improved MUC invitation dialog.
    Fixed problem with displaying group names containing '&' in
    the 'Edit' dialog.
    Show stream encryption status in header.
    Show extended certificate dialog when encryption errors occur.
    Don't allow server command results to get interpreted as HTML.
    Additional connection settings (such as manual host setting,
    proxy configuration and BOSH) can now be specified through a
    new dialog on the login window.

Thanks to Tobias Markmann, Jan Kaluza, Thilo Cestonaro, Arnt
Gulbrandsen, Vlad Voicu, Vitaly Takmazov, Yoann Blein, Catalin
Badea, Pavol Babincak, Mateusz Piekos, Alexey Melnikov and Soren
Dreijer.
2013-07-07 11:42:58 +00:00

45 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.4 2013/07/07 11:42:58 thomasklausner Exp $
DISTNAME= swift-2.0
CATEGORIES= chat
MASTER_SITES= http://swift.im/downloads/releases/swift-2.0/
MAINTAINER= eric@cirr.com
HOMEPAGE= http://www.swift.im/
COMMENT= Swift XMPP Client
LICENSE= gnu-gpl-v3
DEPENDS+= scons>=1.3:../../devel/scons
USE_LANGUAGES= c c++
PYTHON_VERSIONS_ACCEPTED= 31 27 26
# MAKE_ENV+= CPPPATH="${BUILDLINK_DIR}/include:${BUILDLINK_DIR}/qt4/include"
# MAKE_ENV+= LIBPATH="${BUILDLINK_DIR}/lib:${BUILDLINK_DIR}/qt4/lib"
do-configure:
cd ${WRKSRC} ; \
${ECHO} "qt=\"${QTDIR}\"" > config.py ;\
${ECHO} "linkflags=\"-Wl,-R${QTDIR}/lib -Wl,-R${X11BASE}/lib -Wl,-R${BUILDLINK_DIR}/lib\"" >> config.py ; \
${ECHO} "allow_warnings=\"true\"" >> config.py ;
do-build:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/scons
do-install:
cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} ${PREFIX}/bin/scons \
SWIFT_INSTALLDIR=${DESTDIR}/${PREFIX} ${DESTDIR}/${PREFIX}
.include "../../lang/python/application.mk"
# should use boost-libs from pkgsrc, but that's too new and it won't compile against it
# so use included copy for now
#.include "../../devel/boost-libs/buildlink3.mk"
.include "../../devel/libidn/buildlink3.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../x11/qt4-libs/buildlink3.mk"
.include "../../x11/qt4-qdbus/buildlink3.mk"
.include "../../x11/qt4-tools/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"