Index: head/palm/synce-dccm/pkg-descr =================================================================== --- head/palm/synce-dccm/pkg-descr (revision 217665) +++ head/palm/synce-dccm/pkg-descr (nonexistent) @@ -1,5 +0,0 @@ -SynCE is a project for connecting to devices running Windows CE or Pocket PC. -Dccm is a daemon that listens for connections from a Windows CE device. -Once connected, the synce-librapi tools are able to interact with the device. - -WWW: http://synce.sourceforge.net/ Property changes on: head/palm/synce-dccm/pkg-descr ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/distinfo =================================================================== --- head/palm/synce-dccm/distinfo (revision 217665) +++ head/palm/synce-dccm/distinfo (nonexistent) @@ -1,3 +0,0 @@ -MD5 (synce-vdccm-0.9.3.tar.gz) = 996236320a6b4c9410050c4dc6e53164 -SHA256 (synce-vdccm-0.9.3.tar.gz) = e2e26ff503c242189c3cdc4778db72c38d28c86c0a18f7a1d2fda26801789571 -SIZE (synce-vdccm-0.9.3.tar.gz) = 354000 Property changes on: head/palm/synce-dccm/distinfo ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.7 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/pkg-plist =================================================================== --- head/palm/synce-dccm/pkg-plist (revision 217665) +++ head/palm/synce-dccm/pkg-plist (nonexistent) @@ -1,6 +0,0 @@ -bin/vdccm -bin/proxyclient -bin/triggerconnection -lib/libdescriptor.la -lib/libdescriptor.so -lib/libdescriptor.so.0 Property changes on: head/palm/synce-dccm/pkg-plist ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/Makefile =================================================================== --- head/palm/synce-dccm/Makefile (revision 217665) +++ head/palm/synce-dccm/Makefile (nonexistent) @@ -1,28 +0,0 @@ -# New ports collection makefile for: synce-dccm -# Date created: 14 June 2003 -# Whom: Sam Lawrance -# -# $FreeBSD$ - -PORTNAME= synce-dccm -PORTVERSION= 0.9.3 -CATEGORIES= palm -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= synce -DISTNAME= synce-vdccm-${PORTVERSION} - -MAINTAINER= ports@logvinov.com -COMMENT= Listener daemon for connections from WinCE devices - -BUILD_DEPENDS+= pkg-config:${PORTSDIR}/devel/pkg-config -LIB_DEPENDS+= synce.0:${PORTSDIR}/palm/synce-libsynce - -GNU_CONFIGURE= yes -USE_ICONV= yes -WRKSRC= ${WRKDIR}/vdccm-${PORTVERSION} -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS+= --with-libiconv=${LOCALBASE} \ - --with-libsynce=${LOCALBASE} -USE_LDCONFIG= yes - -.include Property changes on: head/palm/synce-dccm/Makefile ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.14 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/palm/synce-dccm/files/patch-src_windowscedevice.cpp =================================================================== --- head/palm/synce-dccm/files/patch-src_windowscedevice.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-src_windowscedevice.cpp (nonexistent) @@ -1,15 +0,0 @@ ---- src/windowscedevice.cpp.orig 2008-04-15 11:28:35.000000000 +0200 -+++ src/windowscedevice.cpp 2008-04-15 11:37:11.000000000 +0200 -@@ -29,6 +29,12 @@ - - #include - -+#if defined(__FreeBSD__) && defined(__sparc64__) -+#include -+#define bswap_16 bswap16 -+#define bswap_32 bswap32 -+#endif -+ - using namespace std; - - WindowsCEDevice::WindowsCEDevice(int fd, TCPServerSocket *tcpServerSocket) Property changes on: head/palm/synce-dccm/files/patch-src_windowscedevice.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-lib-tcpconnectedsocket.cpp =================================================================== --- head/palm/synce-dccm/files/patch-lib-tcpconnectedsocket.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-lib-tcpconnectedsocket.cpp (nonexistent) @@ -1,14 +0,0 @@ ---- lib/tcpconnectedsocket.cpp.orig Thu Jun 29 22:01:48 2006 -+++ lib/tcpconnectedsocket.cpp Fri Jan 26 20:36:48 2007 -@@ -149,8 +149,10 @@ - int TCPConnectedSocket::getMTU() - { - int s; -+ struct protoent *pent; - socklen_t r = sizeof(int); -- if (getsockopt(getDescriptor(), SOL_IP, IP_MTU, &s, &r) < 0) { -+ pent = getprotobyname ("ip"); -+ if (getsockopt(getDescriptor(), ((pent != NULL) ? pent->p_proto : 0), IP_MTU, &s, &r) < 0) { - s = -1; - } - Property changes on: head/palm/synce-dccm/files/patch-lib-tcpconnectedsocket.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-lib-udpsocket.cpp =================================================================== --- head/palm/synce-dccm/files/patch-lib-udpsocket.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-lib-udpsocket.cpp (nonexistent) @@ -1,11 +0,0 @@ ---- lib/udpsocket.cpp.orig Sun May 7 18:49:36 2006 -+++ lib/udpsocket.cpp Fri Jan 26 19:21:19 2007 -@@ -10,6 +10,8 @@ - // - // - #include "udpsocket.h" -+#include -+#include - #include - - using namespace std; Property changes on: head/palm/synce-dccm/files/patch-lib-udpsocket.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-src-vdccm.cpp =================================================================== --- head/palm/synce-dccm/files/patch-src-vdccm.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-src-vdccm.cpp (nonexistent) @@ -1,11 +0,0 @@ ---- src/vdccm.cpp.orig Fri Jan 26 19:24:38 2007 -+++ src/vdccm.cpp Fri Jan 26 19:26:01 2007 -@@ -34,7 +34,7 @@ - #include - #include - #include --#include -+#include - - using namespace synce; - using namespace std; Property changes on: head/palm/synce-dccm/files/patch-src-vdccm.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-testtools-triggerconnection.cpp =================================================================== --- head/palm/synce-dccm/files/patch-testtools-triggerconnection.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-testtools-triggerconnection.cpp (nonexistent) @@ -1,10 +0,0 @@ ---- testtools/triggerconnection.cpp.orig Fri Jan 26 19:27:52 2007 -+++ testtools/triggerconnection.cpp Fri Jan 26 19:28:25 2007 -@@ -16,6 +16,7 @@ - #include - #include - #include -+#include - - - int main(int argc, char *argv[]) Property changes on: head/palm/synce-dccm/files/patch-testtools-triggerconnection.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-src_rapiproxyconnection.cpp =================================================================== --- head/palm/synce-dccm/files/patch-src_rapiproxyconnection.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-src_rapiproxyconnection.cpp (nonexistent) @@ -1,15 +0,0 @@ ---- src/rapiproxyconnection.cpp.orig 2008-04-15 11:39:47.000000000 +0200 -+++ src/rapiproxyconnection.cpp 2008-04-15 11:42:37.000000000 +0200 -@@ -19,6 +19,12 @@ - - #include - -+#if defined(__FreeBSD__) && defined(__sparc64__) -+#include -+#define bswap_16 bswap16 -+#define bswap_32 bswap32 -+#endif -+ - RapiProxyConnection::RapiProxyConnection(RapiConnection *rapiConnection, RapiProxy *rapiProxy, - RapiProvisioningClient *rapiProvisioningClient) - : rapiConnection(rapiConnection), Property changes on: head/palm/synce-dccm/files/patch-src_rapiproxyconnection.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-lib-localsocket.h =================================================================== --- head/palm/synce-dccm/files/patch-lib-localsocket.h (revision 217665) +++ head/palm/synce-dccm/files/patch-lib-localsocket.h (nonexistent) @@ -1,10 +0,0 @@ ---- lib/localsocket.h.orig Fri Jan 26 03:40:07 2007 -+++ lib/localsocket.h Fri Jan 26 03:40:23 2007 -@@ -24,6 +24,7 @@ - #define LOCALSOCKET_H - - #include -+#include - #include - #include "netsocket.h" - Property changes on: head/palm/synce-dccm/files/patch-lib-localsocket.h ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-lib-tcpsocket.h =================================================================== --- head/palm/synce-dccm/files/patch-lib-tcpsocket.h (revision 217665) +++ head/palm/synce-dccm/files/patch-lib-tcpsocket.h (nonexistent) @@ -1,10 +0,0 @@ ---- lib/tcpsocket.h.orig Fri Jan 26 03:21:01 2007 -+++ lib/tcpsocket.h Fri Jan 26 03:21:48 2007 -@@ -24,6 +24,7 @@ - #define TCPSOCKET_H - - #include -+#include - #include - #include "netsocket.h" - Property changes on: head/palm/synce-dccm/files/patch-lib-tcpsocket.h ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-src_rapihandshakeclient.cpp =================================================================== --- head/palm/synce-dccm/files/patch-src_rapihandshakeclient.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-src_rapihandshakeclient.cpp (nonexistent) @@ -1,14 +0,0 @@ ---- src/rapihandshakeclient.cpp.orig 2008-04-15 11:38:15.000000000 +0200 -+++ src/rapihandshakeclient.cpp 2008-04-15 11:38:23.000000000 +0200 -@@ -17,6 +17,11 @@ - #include - #include - -+#if defined(__FreeBSD__) && defined(__sparc64__) -+#include -+#define bswap_16 bswap16 -+#define bswap_32 bswap32 -+#endif - - RapiHandshakeClient::RapiHandshakeClient( int fd, TCPServerSocket *tcpServerSocket ) - : RapiClient( fd, tcpServerSocket ) Property changes on: head/palm/synce-dccm/files/patch-src_rapihandshakeclient.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-src_rapiconnection.cpp =================================================================== --- head/palm/synce-dccm/files/patch-src_rapiconnection.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-src_rapiconnection.cpp (nonexistent) @@ -1,15 +0,0 @@ ---- src/rapiconnection.cpp.orig 2008-04-15 11:39:02.000000000 +0200 -+++ src/rapiconnection.cpp 2008-04-15 11:39:14.000000000 +0200 -@@ -22,6 +22,12 @@ - #include "synce_log.h" - #include - -+#if defined(__FreeBSD__) && defined(__sparc64__) -+#include -+#define bswap_16 bswap16 -+#define bswap_32 bswap32 -+#endif -+ - using namespace std; - - RapiConnection::RapiConnection(RapiProxyFactory *proxyFactory, string path, RapiServer *rapiServer, string deviceIpAddress) : LocalServerSocket(proxyFactory, path), rapiHandshakeClient(NULL), deviceIpAddress(deviceIpAddress), rapiServer(rapiServer) Property changes on: head/palm/synce-dccm/files/patch-src_rapiconnection.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/synce-dccm/files/patch-src_rapiclient.cpp =================================================================== --- head/palm/synce-dccm/files/patch-src_rapiclient.cpp (revision 217665) +++ head/palm/synce-dccm/files/patch-src_rapiclient.cpp (nonexistent) @@ -1,14 +0,0 @@ ---- src/rapiclient.cpp.orig 2008-04-15 11:35:52.000000000 +0200 -+++ src/rapiclient.cpp 2008-04-15 11:37:50.000000000 +0200 -@@ -20,6 +20,11 @@ - #include - #include - -+#if defined(__FreeBSD__) && defined(__sparc64__) -+#include -+#define bswap_16 bswap16 -+#define bswap_32 bswap32 -+#endif - - using namespace std; - Property changes on: head/palm/synce-dccm/files/patch-src_rapiclient.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/palm/Makefile =================================================================== --- head/palm/Makefile (revision 217665) +++ head/palm/Makefile (revision 217666) @@ -1,47 +1,47 @@ # $FreeBSD$ # COMMENT = Software support for handheld devices (Palm, PocketPC, ...) SUBDIR += bibelot SUBDIR += coldsync SUBDIR += gnome-pilot SUBDIR += gnome-pilot-conduits SUBDIR += iSiloXC SUBDIR += imgvtopgm SUBDIR += isilo SUBDIR += jfconv SUBDIR += jpilot SUBDIR += jpilot-db SUBDIR += libmal SUBDIR += makeztxt SUBDIR += mdbconv SUBDIR += p5-Palm SUBDIR += p5-Palm-PalmDoc SUBDIR += palm-db-tools SUBDIR += palmos-sdk SUBDIR += palmpower SUBDIR += pdbar SUBDIR += pdbc SUBDIR += pilot-link SUBDIR += pilot_makedoc SUBDIR += pilrc SUBDIR += plucker SUBDIR += pose SUBDIR += ppmtoTbmp SUBDIR += prc-tools SUBDIR += romeo SUBDIR += sitescooper - SUBDIR += synce-dccm SUBDIR += synce-gnomevfs SUBDIR += synce-kde SUBDIR += synce-librapi2 SUBDIR += synce-libsynce SUBDIR += synce-librra SUBDIR += synce-multisync SUBDIR += synce-serial SUBDIR += synce-trayicon + SUBDIR += synce-vdccm SUBDIR += txt2pdbdoc SUBDIR += uppc-kmod .include Property changes on: head/palm/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.67 \ No newline at end of property +1.68 \ No newline at end of property Index: head/palm/synce-serial/Makefile =================================================================== --- head/palm/synce-serial/Makefile (revision 217665) +++ head/palm/synce-serial/Makefile (revision 217666) @@ -1,26 +1,26 @@ # New ports collection makefile for: synce-serial # Date created: 14 June 2003 # Whom: Sam Lawrance # # $FreeBSD$ PORTNAME= synce-serial PORTVERSION= 0.11 CATEGORIES= palm MASTER_SITES= SF MASTER_SITE_SUBDIR= synce MAINTAINER= ports@logvinov.com COMMENT= Wrapper for pppd to initiate communications with Windows Mobile devices -RUN_DEPENDS= vdccm:${PORTSDIR}/palm/synce-dccm +RUN_DEPENDS= vdccm:${PORTSDIR}/palm/synce-vdccm CONFLICTS= synce-hal-[0-9]* MAN8= ${PORTNAME}-config.8 ${PORTNAME}-start.8 \ ${PORTNAME}-abort.8 ${PORTNAME}-chat.8 GNU_CONFIGURE= yes USE_GNOME= gnometarget .include Property changes on: head/palm/synce-serial/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property