aboutsummaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2011-10-14 22:30:49 +0000
committerDoug Barton <dougb@FreeBSD.org>2011-10-14 22:30:49 +0000
commit4eb5b88d9eb1a88094ac3ae85f20e29e7510e97b (patch)
tree07820ebb6104ca954e4d94f3a2fdb93d78912435 /comms
parentb49d99567f90be4113da01b6a7ef65427d682653 (diff)
downloadports-4eb5b88d9eb1a88094ac3ae85f20e29e7510e97b.tar.gz
ports-4eb5b88d9eb1a88094ac3ae85f20e29e7510e97b.zip
Notes
Diffstat (limited to 'comms')
-rw-r--r--comms/Makefile1
-rw-r--r--comms/libsyncml/Makefile42
-rw-r--r--comms/libsyncml/distinfo2
-rw-r--r--comms/libsyncml/files/patch-configure.in37
-rw-r--r--comms/libsyncml/files/patch-libsyncml_transports_obex_client.c16
-rw-r--r--comms/libsyncml/pkg-descr5
-rw-r--r--comms/libsyncml/pkg-plist30
7 files changed, 0 insertions, 133 deletions
diff --git a/comms/Makefile b/comms/Makefile
index 3cd38cbb08ac..bc5e19969775 100644
--- a/comms/Makefile
+++ b/comms/Makefile
@@ -68,7 +68,6 @@
SUBDIR += libfec
SUBDIR += libimobiledevice
SUBDIR += libirman
- SUBDIR += libsyncml
SUBDIR += libticables
SUBDIR += libticables2
SUBDIR += libticalcs2
diff --git a/comms/libsyncml/Makefile b/comms/libsyncml/Makefile
deleted file mode 100644
index 7ddede5a00e2..000000000000
--- a/comms/libsyncml/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# New ports collection makefile for: libsyncml
-# Date created: 2008-03-09
-# Whom: Daniel Roethlisberger <daniel@roe.ch>
-#
-# $FreeBSD$
-#
-
-PORTNAME= libsyncml
-PORTVERSION= 0.4.5
-PORTREVISION= 3
-CATEGORIES= comms
-MASTER_SITES= http://libsyncml.opensync.org/download/releases/${PORTVERSION}/ \
- http://mirror.roe.ch/dist/${PORTNAME}/
-
-MAINTAINER= samm@os2.kiev.ua
-COMMENT= SyncML protocol library for PIM data synchronization
-
-DEPRECATED= Depends on devel/libsoup22, which is FORBIDDEN
-EXPIRATION_DATE= 2011-10-14
-
-LIB_DEPENDS= wbxml2:${PORTSDIR}/textproc/wbxml2 \
- openobex:${PORTSDIR}/comms/openobex \
- soup-2.2.8:${PORTSDIR}/devel/libsoup22
-
-USE_AUTOTOOLS= autoheader automake libtool
-GNU_CONFIGURE= yes
-USE_BZIP2= yes
-USE_GNOME= glib20 libxml2
-USE_LDCONFIG= yes
-CONFIGURE_ARGS= --enable-bluetooth --enable-obex --with-wbxml=${LOCALBASE}
-
-MAN1= syncml-http-server.1 syncml-obex-client.1
-
-post-patch:
- @${REINPLACE_CMD} \
- -e 's|$${libdir}/pkgconfig|$${prefix}/libdata/pkgconfig|' \
- ${WRKSRC}/Makefile.am
-
-pre-configure:
- @cd ${WRKSRC}; ${ACLOCAL}
-
-.include <bsd.port.mk>
diff --git a/comms/libsyncml/distinfo b/comms/libsyncml/distinfo
deleted file mode 100644
index 5731ac2d8359..000000000000
--- a/comms/libsyncml/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (libsyncml-0.4.5.tar.bz2) = ef11f0b79ebeb14369f0fdff34d9072a34c28fb83eccc75450f84225c56cc432
-SIZE (libsyncml-0.4.5.tar.bz2) = 374803
diff --git a/comms/libsyncml/files/patch-configure.in b/comms/libsyncml/files/patch-configure.in
deleted file mode 100644
index c0ce31e9ba13..000000000000
--- a/comms/libsyncml/files/patch-configure.in
+++ /dev/null
@@ -1,37 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2008/01/12 14:09:35 dillo Exp $
-$FreeBSD$
-
-Check for -lbluetooth in addition to -lbluez, to make this compile on BSD.
-
---- configure.ac.orig 2007-10-16 14:42:45.000000000 +0200
-+++ configure.ac
-@@ -78,20 +78,27 @@ AC_ARG_ENABLE(bluetooth,
- AS_HELP_STRING([--enable-bluetooth], [enable obex over bluetooth transports]),
- WANT_BLUETOOTH=$enableval)
-
--PKG_CHECK_MODULES(LIBBLUETOOTH, bluez, HAVE_BLUETOOTH=yes, HAVE_BLUETOOTH=no)
-+PKG_CHECK_MODULES(LIBBLUETOOTH, bluez,
-+ [HAVE_BLUETOOTH=yes
-+ AC_DEFINE(HAVE_BLUETOOTH_BLUETOOTH_H, 1, [Define to 1 if you have the <bluetooth/bluetooth.h> header file.])],
-+ [AC_CHECK_LIB(bluetooth, bt_gethostbyname,
-+ [HAVE_BLUETOOTH=yes
-+ LIBBLUETOOTH_LIBS=-lbluetooth],
-+ HAVE_BLUETOOTH=no)])
- if test "x${HAVE_BLUETOOTH}" = "xyes"; then
- if test "x${WANT_BLUETOOTH}" = "xno"; then
- ENABLE_BLUETOOTH=no
- else
- AC_SUBST(LIBBLUETOOTH_CFLAGS)
- AC_SUBST(LIBBLUETOOTH_LIBS)
-+ AC_SUBST(HAVE_BLUETOOTH_BLUETOOTH_H)
- ENABLE_BLUETOOTH=yes
- AC_SUBST(ENABLE_BLUETOOTH)
- AC_DEFINE(ENABLE_BLUETOOTH,1,[Bluetooth Transport])
- fi
- else
- if test "x${WANT_BLUETOOTH}" = "xyes"; then
-- AC_MSG_ERROR("Bluez not found")
-+ AC_MSG_ERROR("Bluetooth libraries not found")
- else
- ENABLE_BLUETOOTH=no
- fi
diff --git a/comms/libsyncml/files/patch-libsyncml_transports_obex_client.c b/comms/libsyncml/files/patch-libsyncml_transports_obex_client.c
deleted file mode 100644
index 79a7b41a479e..000000000000
--- a/comms/libsyncml/files/patch-libsyncml_transports_obex_client.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- libsyncml/transports/obex_client.c.orig 2007-10-16 15:25:31.000000000 +0200
-+++ libsyncml/transports/obex_client.c 2008-03-09 22:32:06.000000000 +0100
-@@ -26,7 +26,13 @@
- #include <libsyncml/sml_transport_internals.h>
-
- #ifdef ENABLE_BLUETOOTH
-+#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
- #include <bluetooth/bluetooth.h>
-+#else
-+#define COMPAT_BLUEZ
-+#include <bluetooth.h>
-+#define BDADDR_ANY NG_HCI_BDADDR_ANY
-+#endif
- #endif
-
- #include "obex_client.h"
diff --git a/comms/libsyncml/pkg-descr b/comms/libsyncml/pkg-descr
deleted file mode 100644
index 4480a9649971..000000000000
--- a/comms/libsyncml/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-Libsyncml is a implementation of the SyncML protocol.
-Its purpose is PIM data synchronization with mobile
-devices over HTTP or OBEX/Bluetooth channels.
-
-WWW: http://libsyncml.opensync.org/
diff --git a/comms/libsyncml/pkg-plist b/comms/libsyncml/pkg-plist
deleted file mode 100644
index ed3d8cc13e04..000000000000
--- a/comms/libsyncml/pkg-plist
+++ /dev/null
@@ -1,30 +0,0 @@
-bin/syncml-http-server
-bin/syncml-obex-client
-bin/syncml-http-client
-include/libsyncml-1.0/libsyncml/http_server.h
-include/libsyncml-1.0/libsyncml/http_client.h
-include/libsyncml-1.0/libsyncml/obex_client.h
-include/libsyncml-1.0/libsyncml/obex_server.h
-include/libsyncml-1.0/libsyncml/sml_auth.h
-include/libsyncml-1.0/libsyncml/sml_ds_server.h
-include/libsyncml-1.0/libsyncml/sml_devinf_obj.h
-include/libsyncml-1.0/libsyncml/syncml.h
-include/libsyncml-1.0/libsyncml/sml_transport.h
-include/libsyncml-1.0/libsyncml/sml_defines.h
-include/libsyncml-1.0/libsyncml/sml_command.h
-include/libsyncml-1.0/libsyncml/sml_devinf.h
-include/libsyncml-1.0/libsyncml/sml_elements.h
-include/libsyncml-1.0/libsyncml/sml_parse.h
-include/libsyncml-1.0/libsyncml/sml_manager.h
-include/libsyncml-1.0/libsyncml/sml_session.h
-include/libsyncml-1.0/libsyncml/sml_notification.h
-include/libsyncml-1.0/libsyncml/sml_error.h
-include/libsyncml-1.0/libsyncml/sml_base64.h
-include/libsyncml-1.0/libsyncml/sml_md5.h
-lib/libsyncml.so
-lib/libsyncml.so.0
-lib/libsyncml.a
-lib/libsyncml.la
-libdata/pkgconfig/libsyncml-1.0.pc
-@dirrm include/libsyncml-1.0/libsyncml
-@dirrm include/libsyncml-1.0