2012-10-03 02:02:33 +02:00
|
|
|
# $NetBSD: Makefile,v 1.8 2012/10/03 00:02:45 asau Exp $
|
2008-03-08 19:57:38 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
# TODO: gnupg support, ssl support, others
|
|
|
|
|
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 01:21:19 +01:00
|
|
|
DISTNAME= tkabber-0.11.1
|
2012-08-22 01:49:18 +02:00
|
|
|
PKGREVISION= 1
|
2009-12-13 18:29:19 +01:00
|
|
|
CATEGORIES= chat
|
|
|
|
MASTER_SITES= http://files.jabber.ru/tkabber/
|
2008-03-08 19:57:38 +01:00
|
|
|
|
2009-12-13 18:29:19 +01:00
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
|
|
HOMEPAGE= http://tkabber.jabber.ru/en/
|
|
|
|
COMMENT= Free and Open Source TCL/TK jabber client
|
2008-03-08 19:57:38 +01:00
|
|
|
|
2009-12-13 18:29:19 +01:00
|
|
|
DEPENDS+= tcllib-[0-9]*:../../devel/tcllib
|
2008-03-08 19:57:38 +01:00
|
|
|
|
2009-12-13 18:29:19 +01:00
|
|
|
USE_TOOLS+= pax wish:run
|
2008-03-08 19:57:38 +01:00
|
|
|
|
2009-12-13 18:29:19 +01:00
|
|
|
EGDIR= ${PREFIX}/share/examples/tkabber
|
|
|
|
DATADIR= ${PREFIX}/share/tkabber
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/tkabber
|
2008-03-08 19:57:38 +01:00
|
|
|
|
2009-12-13 18:29:19 +01:00
|
|
|
AUTO_MKDIRS= yes
|
2008-03-08 19:57:38 +01:00
|
|
|
|
|
|
|
# XXX this is also in the tkabber's Makefile
|
2009-12-13 18:29:19 +01:00
|
|
|
SUBDIRS= emoticons \
|
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 01:21:19 +01:00
|
|
|
ifacetk \
|
|
|
|
jabberlib \
|
|
|
|
tclxml \
|
|
|
|
mclistbox \
|
|
|
|
msgs \
|
|
|
|
pixmaps \
|
|
|
|
plugins \
|
|
|
|
sounds \
|
|
|
|
trans
|
2009-12-13 18:29:19 +01:00
|
|
|
|
|
|
|
EXTRA_FILES= AUTHORS README COPYING INSTALL ChangeLog
|
2009-12-13 17:03:52 +01:00
|
|
|
|
|
|
|
do-build:
|
|
|
|
# TODO This must be a CLASS
|
|
|
|
${SED} -e "s,@WISH@,${WISH}," \
|
2009-12-13 18:29:19 +01:00
|
|
|
-e "s,@DATADIR@,${DATADIR}," ${FILESDIR}/tkabber.sh \
|
|
|
|
> ${WRKSRC}/tkabber
|
2008-03-08 19:57:38 +01:00
|
|
|
|
|
|
|
do-install:
|
2009-12-13 17:03:52 +01:00
|
|
|
${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}
|
2008-03-08 19:57:38 +01:00
|
|
|
.for i in ${SUBDIRS}
|
2009-12-13 17:03:52 +01:00
|
|
|
cd ${WRKSRC} && pax -rw -pm ${i} ${DESTDIR}${DATADIR}
|
2008-03-08 19:57:38 +01:00
|
|
|
.endfor
|
2009-12-13 17:03:52 +01:00
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tkabber ${DESTDIR}${PREFIX}/bin
|
2008-03-08 19:57:38 +01:00
|
|
|
|
2009-09-12 22:51:06 +02:00
|
|
|
.include "../../x11/tk-BWidget/buildlink3.mk"
|
2008-03-08 19:57:38 +01:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|