pkgsrc/chat/tkabber/Makefile
schnoebe 43f71ed1a2 Update to tkabber 0.11.1
Change log:

Main changes in 0.11.0

    * New tabbed user interface. Tab headers now occupy several rows and
      tab bar can be docked to the left and right sides of chat window
    * Roster filter
    * Added support for pixmaps (in particular emoticons) JISP archives
      (XEP-0038)
    * Added support for SOCKS4a and SOCKS5 proxy for the main connection
    * Added user location support (XEP-0080)
    * Added user mood support (XEP-0107)
    * Added user activity support (XEP-0108)
    * Added user tune support (XEP-0118)
    * Added entity capabilities (XEP-0115 v.1.5, only reporting) support
    * Added basic robot challenges support (XEP-0158, v.0.9)
    * Added partial data forms media element support (XEP-0221, v.0.2,
      URIs and images only)
    * Roster is now exported to XML instead of Tcl list
    * Added support for entity time (XEP-0202)
    * Tkabber version is now reported in disco#info (XEP-0232)
    * Moved deprecated Jabber Browser (XEP-0011) to an external plugin
    * Moved Jidlink file transfer to an external plugin
    * Added several new plugins: attline, ctcomp, custom-urls,
      floatinglog, gmail, openurl, presencecmd, receipts
    * Many fixes and enhancements
2011-01-03 00:21:19 +00:00

56 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.6 2011/01/03 00:21:19 schnoebe Exp $
#
# TODO: gnupg support, ssl support, others
DISTNAME= tkabber-0.11.1
CATEGORIES= chat
MASTER_SITES= http://files.jabber.ru/tkabber/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://tkabber.jabber.ru/en/
COMMENT= Free and Open Source TCL/TK jabber client
DEPENDS+= tcllib-[0-9]*:../../devel/tcllib
USE_TOOLS+= pax wish:run
EGDIR= ${PREFIX}/share/examples/tkabber
DATADIR= ${PREFIX}/share/tkabber
DOCDIR= ${PREFIX}/share/doc/tkabber
PKG_DESTDIR_SUPPORT= user-destdir
AUTO_MKDIRS= yes
# XXX this is also in the tkabber's Makefile
SUBDIRS= emoticons \
ifacetk \
jabberlib \
tclxml \
mclistbox \
msgs \
pixmaps \
plugins \
sounds \
trans
EXTRA_FILES= AUTHORS README COPYING INSTALL ChangeLog
do-build:
# TODO This must be a CLASS
${SED} -e "s,@WISH@,${WISH}," \
-e "s,@DATADIR@,${DATADIR}," ${FILESDIR}/tkabber.sh \
> ${WRKSRC}/tkabber
do-install:
${INSTALL_DATA} ${WRKSRC}/*.tcl ${DESTDIR}${DATADIR} #${WRKSRC}/*.xrdb ${DATADIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${EXTRA_FILES} ${DESTDIR}${DOCDIR}
cd ${WRKSRC}/examples && pax -rw -pm . ${DESTDIR}${EGDIR}
.for i in ${SUBDIRS}
cd ${WRKSRC} && pax -rw -pm ${i} ${DESTDIR}${DATADIR}
.endfor
${INSTALL_SCRIPT} ${WRKSRC}/tkabber ${DESTDIR}${PREFIX}/bin
.include "../../x11/tk-BWidget/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"