mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
Add telepathy-salut, a link-local connection manager for the telepathy framework.
This commit is contained in:
parent
ae8f7c478f
commit
64fda164fe
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=190378
@ -124,6 +124,7 @@
|
||||
SUBDIR += sulci
|
||||
SUBDIR += telepathy-gabble
|
||||
SUBDIR += telepathy-glib
|
||||
SUBDIR += telepathy-salut
|
||||
SUBDIR += tik
|
||||
SUBDIR += tkabber
|
||||
SUBDIR += tkabber-devel
|
||||
|
38
net-im/telepathy-salut/Makefile
Normal file
38
net-im/telepathy-salut/Makefile
Normal file
@ -0,0 +1,38 @@
|
||||
# New ports collection makefile for: telepathy-salut
|
||||
# Date created: Apr 16 2007
|
||||
# Whom: Florent Thoumie <flz@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= telepathy-salut
|
||||
PORTVERSION= 0.1.1
|
||||
CATEGORIES= net-im
|
||||
MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/
|
||||
|
||||
MAINTAINER= flz@FreeBSD.org
|
||||
COMMENT= Link-local Connection Manager for Telepathy Framework
|
||||
|
||||
LIB_PC_DEPENDS= gobject-2.0.pc:${PORTSDIR}/devel/glib20 \
|
||||
dbus-glib-1.pc:${PORTSDIR}/devel/dbus-glib \
|
||||
avahi-glib.pc:${PORTSDIR}/net/avahi
|
||||
|
||||
BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt
|
||||
|
||||
BUILD_DEPENDS+= ${LIB_PC_DEPENDS:C|^|${LOCALBASE}/libdata/pkgconfig/|g}
|
||||
RUN_DEPENDS+= ${LIB_PC_DEPENDS:C|^|${LOCALBASE}/libdata/pkgconfig/|g}
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomehack pkgconfig
|
||||
USE_OPENSSL= yes
|
||||
|
||||
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|make -C|${GMAKE} -C|g' \
|
||||
${WRKSRC}/src/Makefile.in \
|
||||
${WRKSRC}/tests/Makefile.in \
|
||||
${WRKSRC}/lib/gibber/examples/Makefile.in
|
||||
|
||||
.include <bsd.port.mk>
|
3
net-im/telepathy-salut/distinfo
Normal file
3
net-im/telepathy-salut/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (telepathy-salut-0.1.1.tar.gz) = 8821ddd1300e1db21332c7f93a211f41
|
||||
SHA256 (telepathy-salut-0.1.1.tar.gz) = 57c814de8c7f9017c0efec45a383b400e964f906586e5d2d559267aa306b1463
|
||||
SIZE (telepathy-salut-0.1.1.tar.gz) = 521898
|
@ -0,0 +1,26 @@
|
||||
--- lib/gibber/gibber-linklocal-transport.c.orig Thu Apr 19 16:56:03 2007
|
||||
+++ lib/gibber/gibber-linklocal-transport.c Thu Apr 19 17:06:11 2007
|
||||
@@ -18,6 +18,9 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
+#include <sys/types.h>
|
||||
+#include <netinet/in.h>
|
||||
+
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
@@ -196,7 +199,13 @@
|
||||
if (s6->sin6_family == AF_INET6 && IN6_IS_ADDR_V4MAPPED(&(s6->sin6_addr))) {
|
||||
/* Normalize to ipv4 address */
|
||||
s4->sin_family = AF_INET;
|
||||
+#if defined(__Linux__)
|
||||
s4->sin_addr.s_addr = s6->sin6_addr.s6_addr32[3];
|
||||
+#elif defined(__FreeBSD__)
|
||||
+ s4->sin_addr.s_addr = s6->sin6_addr.__u6_addr.__u6_addr32[3];
|
||||
+#else
|
||||
+#error XXX - fill in the blanks.
|
||||
+#endif
|
||||
}
|
||||
return success;
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
--- lib/gibber/gibber-tcp-transport.c.orig Thu Apr 19 16:54:23 2007
|
||||
+++ lib/gibber/gibber-tcp-transport.c Thu Apr 19 16:54:46 2007
|
||||
@@ -18,6 +18,7 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
+#include <netinet/in.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
11
net-im/telepathy-salut/files/patch-src_salut-contact.h
Normal file
11
net-im/telepathy-salut/files/patch-src_salut-contact.h
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/salut-contact.h.orig Thu Apr 19 17:06:44 2007
|
||||
+++ src/salut-contact.h Thu Apr 19 17:08:20 2007
|
||||
@@ -20,6 +20,8 @@
|
||||
#ifndef __SALUT_CONTACT_H__
|
||||
#define __SALUT_CONTACT_H__
|
||||
|
||||
+#include <sys/socket.h>
|
||||
+
|
||||
#include <netinet/in.h>
|
||||
#include <glib-object.h>
|
||||
|
@ -0,0 +1,11 @@
|
||||
--- src/salut-muc-connection.c.orig Thu Apr 19 17:11:46 2007
|
||||
+++ src/salut-muc-connection.c Thu Apr 19 17:11:58 2007
|
||||
@@ -27,6 +27,8 @@
|
||||
#include <sys/socket.h>
|
||||
#include <netdb.h>
|
||||
|
||||
+#include <netinet/in.h>
|
||||
+
|
||||
#include "salut-muc-connection.h"
|
||||
#include "salut-muc-connection-signals-marshal.h"
|
||||
|
10
net-im/telepathy-salut/files/patch-src_salut-self.c
Normal file
10
net-im/telepathy-salut/files/patch-src_salut-self.c
Normal file
@ -0,0 +1,10 @@
|
||||
--- src/salut-self.c.orig Thu Apr 19 17:09:13 2007
|
||||
+++ src/salut-self.c Thu Apr 19 17:10:24 2007
|
||||
@@ -24,6 +24,7 @@
|
||||
#include <string.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
+#include <netinet/in.h>
|
||||
#include <netdb.h>
|
||||
#include <errno.h>
|
||||
|
7
net-im/telepathy-salut/pkg-descr
Normal file
7
net-im/telepathy-salut/pkg-descr
Normal file
@ -0,0 +1,7 @@
|
||||
Telepathy is a real time communications framework. Salut provides
|
||||
Link-local Jabber functionality for Telepathy.
|
||||
|
||||
WWW: http://telepathy.freedesktop.org/
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
5
net-im/telepathy-salut/pkg-plist
Normal file
5
net-im/telepathy-salut/pkg-plist
Normal file
@ -0,0 +1,5 @@
|
||||
bin/telepathy-salut
|
||||
share/telepathy/managers/salut.manager
|
||||
share/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.salut.service
|
||||
@dirrmtry share/telepathy/managers
|
||||
@dirrmtry share/telepathy
|
Loading…
Reference in New Issue
Block a user