diff options
author | wiz <wiz@pkgsrc.org> | 2012-08-26 14:06:19 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-08-26 14:06:19 +0000 |
commit | e860e21e9cfebb26c8b68c80d4993cf3d7e7ceaa (patch) | |
tree | 08815a7f5c83651014abd37376aa7bcf53971062 /chat/irssi-xmpp/Makefile | |
parent | 4f4eabeb7450b779783519630e4e6ae05c500ea0 (diff) | |
download | pkgsrc-e860e21e9cfebb26c8b68c80d4993cf3d7e7ceaa.tar.gz |
Import irssi-xmpp-0.52 as chat/irssi-xmpp.
Packaged for wip by Leonardo Taccari.
irssi-xmpp is an irssi plugin to connect to the Jabber network.
Its aim is to provide a good integration in this text-based irc client
and a good support of XMPP (the Jabber protocol).
Its main features are:
* Sending and receiving messages in irssi's query windows
* A roster with contact & resource tracking (contact list)
* Contact management (add, remove, manage subscriptions)
* Tab completion of commands, JIDs and resources
* Many extensions supported (XEP) including Multi-User Chat (MUC)
* Support for multiple accounts
* Unicode support (UTF-8)
* SSL and STARTTLS support
To deal with the XMPP protocol, it uses of the Loudmouth library.
Diffstat (limited to 'chat/irssi-xmpp/Makefile')
-rw-r--r-- | chat/irssi-xmpp/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/chat/irssi-xmpp/Makefile b/chat/irssi-xmpp/Makefile new file mode 100644 index 00000000000..555093647be --- /dev/null +++ b/chat/irssi-xmpp/Makefile @@ -0,0 +1,38 @@ +# $NetBSD: Makefile,v 1.1 2012/08/26 14:06:19 wiz Exp $ +# + +DISTNAME= irssi-xmpp-0.52 +CATEGORIES= chat +MASTER_SITES= http://cybione.org/~irssi-xmpp/files/ +DISTFILES= ${DISTNAME}.tar.gz ${IRSSI_DISTFILE} + +MAINTAINER= leot1990@users.sourceforge.net +HOMEPAGE= http://cybione.org/~irssi-xmpp/ +COMMENT= Irssi plugin to connect to the Jabber network +LICENSE= gnu-gpl-v2 + +DEPENDS+= irssi>=${IRSSI_VERSION}:../../chat/irssi + +PKG_DESTDIR_SUPPORT= user-destdir + +.include "../../mk/bsd.prefs.mk" +.include "../../chat/irssi/Makefile.common" + +MAKE_JOBS_SAFE= no +USE_TOOLS+= pkg-config +WRKSRC= ${WRKDIR}/${IRSSI_DISTNAME}/${DISTNAME} + +MAKE_ENV+= IRSSI_INCLUDE="${WRKDIR}/${IRSSI_DISTNAME}" + +SUBST_CLASSES+= makefile +SUBST_STAGE.makefile= pre-build +SUBST_MESSAGE.makefile= Fixing doc-install Makefile target. +SUBST_FILES.makefile= Makefile +SUBST_SED.makefile+= -e '/docs/s/install/install -m 644/' + +post-extract: + ${MV} ${WRKDIR}/${DISTNAME} ${WRKDIR}/${IRSSI_DISTNAME} + ${CP} ${IRSSI_CONFIG_H} ${WRKSRC}/src/config.h + +.include "../../chat/loudmouth/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |