summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorwiz <wiz>2008-11-14 23:00:12 +0000
committerwiz <wiz>2008-11-14 23:00:12 +0000
commit7fa3fbb1e9126f8e99e866472b93146d6677f53b (patch)
tree4a35d5fe21ada16641b160c1dded1f0053da9342 /chat
parent3eea90d220ba899c3068258056469037b5294d5a (diff)
downloadpkgsrc-7fa3fbb1e9126f8e99e866472b93146d6677f53b.tar.gz
Initial import of telepathy-idle-0.1.2:
A full-featured IRC connection manager for Telepathy. XXX: I couldn't get this to work with empathy. Might need further fixes.
Diffstat (limited to 'chat')
-rw-r--r--chat/telepathy-idle/DESCR1
-rw-r--r--chat/telepathy-idle/Makefile27
-rw-r--r--chat/telepathy-idle/PLIST7
-rw-r--r--chat/telepathy-idle/distinfo6
-rw-r--r--chat/telepathy-idle/patches/patch-aa25
5 files changed, 66 insertions, 0 deletions
diff --git a/chat/telepathy-idle/DESCR b/chat/telepathy-idle/DESCR
new file mode 100644
index 00000000000..0ce20af7f33
--- /dev/null
+++ b/chat/telepathy-idle/DESCR
@@ -0,0 +1 @@
+A full-featured IRC connection manager for Telepathy.
diff --git a/chat/telepathy-idle/Makefile b/chat/telepathy-idle/Makefile
new file mode 100644
index 00000000000..fcf0d2c76d8
--- /dev/null
+++ b/chat/telepathy-idle/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2008/11/14 23:00:12 wiz Exp $
+#
+
+DISTNAME= telepathy-idle-0.1.2
+CATEGORIES= chat
+MASTER_SITES= http://telepathy.freedesktop.org/releases/telepathy-idle/
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://telepathy.freedesktop.org/wiki/Components
+COMMENT= Full-featured IRC connection manager for Telepathy
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL= yes
+USE_TOOLS+= gmake pkg-config
+
+CONFIGURE_ARGS+= OPENSSL_CFLAGS=-I${BUILDLINK_PREFIX.openssl}/include
+CONFIGURE_ARGS+= OPENSSL_LIBS="-L${BUILDLINK_PREFIX.openssl}/lib ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.openssl}/lib -lssl"
+
+.include "../../chat/telepathy-glib/buildlink3.mk"
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../lang/python/application.mk"
+BUILDLINK_API_DEPENDS.openssl+= openssl>=0.9.7
+.include "../../security/openssl/buildlink3.mk"
+.include "../../sysutils/dbus-glib/buildlink3.mk"
+.include "../../sysutils/dbus/buildlink3.mk"
+.include "../../textproc/libxslt/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/chat/telepathy-idle/PLIST b/chat/telepathy-idle/PLIST
new file mode 100644
index 00000000000..e3a91e92402
--- /dev/null
+++ b/chat/telepathy-idle/PLIST
@@ -0,0 +1,7 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2008/11/14 23:00:12 wiz Exp $
+bin/telepathy-idle
+share/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.idle.service
+share/telepathy/managers/idle.manager
+@unexec ${RMDIR} %D/share/telepathy/managers 2>/dev/null || ${TRUE}
+@unexec ${RMDIR} %D/share/telepathy 2>/dev/null || ${TRUE}
+@comment in dbus: @dirrm share/dbus-1/services
diff --git a/chat/telepathy-idle/distinfo b/chat/telepathy-idle/distinfo
new file mode 100644
index 00000000000..ad77bf72944
--- /dev/null
+++ b/chat/telepathy-idle/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2008/11/14 23:00:12 wiz Exp $
+
+SHA1 (telepathy-idle-0.1.2.tar.gz) = c8ffa208b18db1a7b7f88237bbc5167c6a585f03
+RMD160 (telepathy-idle-0.1.2.tar.gz) = 124ca06ba8077016c0dea54f0635a8652049018b
+Size (telepathy-idle-0.1.2.tar.gz) = 405694 bytes
+SHA1 (patch-aa) = ae01882fdde77b13424974f6365fb3c531f0ccb6
diff --git a/chat/telepathy-idle/patches/patch-aa b/chat/telepathy-idle/patches/patch-aa
new file mode 100644
index 00000000000..ff2833ef232
--- /dev/null
+++ b/chat/telepathy-idle/patches/patch-aa
@@ -0,0 +1,25 @@
+$NetBSD: patch-aa,v 1.1.1.1 2008/11/14 23:00:12 wiz Exp $
+
+--- src/idle-parser.c.orig 2007-09-25 18:46:25.000000000 +0000
++++ src/idle-parser.c
+@@ -184,6 +184,20 @@ static void _parse_message(IdleParser *p
+ static void _parse_and_forward_one(IdleParser *parser, gchar **tokens, IdleParserMessageCode code, const gchar *format);
+ static gboolean _parse_atom(IdleParser *parser, GValueArray *arr, char atom, const gchar *token, TpHandleSet *contact_reffed, TpHandleSet *room_reffed);
+
++#ifndef strnlen
++size_t
++strnlen(const char *msg, size_t maxlen)
++{
++ size_t i;
++
++ for (i=0; i<maxlen; i++)
++ if (msg[i] == '\0')
++ break;
++
++ return i;
++}
++#endif
++
+ void idle_parser_receive(IdleParser *parser, const gchar *msg) {
+ IdleParserPrivate *priv = IDLE_PARSER_GET_PRIVATE(parser);
+ int i;