Compare commits

...
Sign in to create a new pull request.

6 commits

Author SHA1 Message Date
Andreas Bierfert
6cbd906b37 Package is retired and obsoleted by synce-connector 2011-08-23 18:07:36 +02:00
Andreas Bierfert
f18be3ab0d Package is retired 2011-08-23 18:07:16 +02:00
Dennis Gilmore
c857c6e21b - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 19:03:25 -06:00
Fedora Release Engineering
1fcb8d0725 dist-git conversion 2010-07-29 14:54:50 +00:00
Bill Nottingham
2ad56ab8c4 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:43:19 +00:00
Jesse Keating
199a6713a0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 06:45:44 +00:00
6 changed files with 1 additions and 230 deletions

View file

@ -1 +0,0 @@
vdccm-0.10.1.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: vdccm
# $Id$
NAME := vdccm
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

1
dead.package Normal file
View file

@ -0,0 +1 @@
Package is retired and obsoleted by synce-connector

View file

@ -1 +0,0 @@
43bca4c2fdb658f99b07549fa03832e0 vdccm-0.10.1.tar.gz

View file

@ -1,116 +0,0 @@
diff -ru vdccm-0.10.1.orig/lib/localconnectedsocket.cpp vdccm-0.10.1/lib/localconnectedsocket.cpp
--- vdccm-0.10.1.orig/lib/localconnectedsocket.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/lib/localconnectedsocket.cpp 2009-03-06 13:15:37.000000000 +0000
@@ -22,6 +22,7 @@
***************************************************************************/
#include "localconnectedsocket.h"
#include <netdb.h>
+#include <string.h>
using namespace std;
diff -ru vdccm-0.10.1.orig/lib/tcpclientsocket.cpp vdccm-0.10.1/lib/tcpclientsocket.cpp
--- vdccm-0.10.1.orig/lib/tcpclientsocket.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/lib/tcpclientsocket.cpp 2009-03-06 13:15:37.000000000 +0000
@@ -22,6 +22,7 @@
***************************************************************************/
#include "tcpclientsocket.h"
#include <netdb.h>
+#include <string.h>
using namespace std;
diff -ru vdccm-0.10.1.orig/lib/tcpconnectedsocket.cpp vdccm-0.10.1/lib/tcpconnectedsocket.cpp
--- vdccm-0.10.1.orig/lib/tcpconnectedsocket.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/lib/tcpconnectedsocket.cpp 2009-03-06 13:15:37.000000000 +0000
@@ -23,6 +23,7 @@
#include "tcpconnectedsocket.h"
#include <arpa/inet.h>
#include <netdb.h>
+#include <string.h>
// Ugly hack - the header <linux/in.h> could not be included
// due to conflicts with other systemheader
diff -ru vdccm-0.10.1.orig/lib/tcpsocket.cpp vdccm-0.10.1/lib/tcpsocket.cpp
--- vdccm-0.10.1.orig/lib/tcpsocket.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/lib/tcpsocket.cpp 2009-03-06 13:15:37.000000000 +0000
@@ -23,7 +23,7 @@
#include "tcpsocket.h"
#include <arpa/inet.h>
#include <netdb.h>
-
+#include <string.h>
using namespace std;
diff -ru vdccm-0.10.1.orig/lib/udpsocket.cpp vdccm-0.10.1/lib/udpsocket.cpp
--- vdccm-0.10.1.orig/lib/udpsocket.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/lib/udpsocket.cpp 2009-03-06 13:15:37.000000000 +0000
@@ -11,6 +11,7 @@
//
#include "udpsocket.h"
#include <netdb.h>
+#include <string.h>
using namespace std;
diff -ru vdccm-0.10.1.orig/lib/udpsocket.h vdccm-0.10.1/lib/udpsocket.h
--- vdccm-0.10.1.orig/lib/udpsocket.h 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/lib/udpsocket.h 2009-03-06 12:48:21.000000000 +0000
@@ -13,6 +13,7 @@
#define UDPSOCKET_H
#include <netsocket.h>
+#include <stdint.h>
#include <string>
/**
diff -ru vdccm-0.10.1.orig/src/rapiclient.cpp vdccm-0.10.1/src/rapiclient.cpp
--- vdccm-0.10.1.orig/src/rapiclient.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/src/rapiclient.cpp 2009-03-06 13:15:37.000000000 +0000
@@ -19,6 +19,7 @@
#include <iomanip>
#include <errno.h>
#include <synce.h>
+#include <string.h>
using namespace std;
diff -ru vdccm-0.10.1.orig/src/rapiclient.h vdccm-0.10.1/src/rapiclient.h
--- vdccm-0.10.1.orig/src/rapiclient.h 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/src/rapiclient.h 2009-03-06 13:15:37.000000000 +0000
@@ -14,6 +14,8 @@
#include <tcpacceptedsocket.h>
+#include <limits.h>
+
/**
@author Volker Christian <voc@users.sourceforge.net>
*/
diff -ru vdccm-0.10.1.orig/src/rapiconnection.cpp vdccm-0.10.1/src/rapiconnection.cpp
--- vdccm-0.10.1.orig/src/rapiconnection.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/src/rapiconnection.cpp 2009-03-06 13:15:48.000000000 +0000
@@ -22,6 +22,8 @@
#include "synce_log.h"
#include <algorithm>
#include <multiplexer.h>
+#include <string.h>
+#include <stdio.h>
using namespace std;
Only in vdccm-0.10.1/src: rapiconnection.cpp.orig
Only in vdccm-0.10.1/src: rapiconnection.cpp.rej
diff -ru vdccm-0.10.1.orig/src/rapiproxyconnection.cpp vdccm-0.10.1/src/rapiproxyconnection.cpp
--- vdccm-0.10.1.orig/src/rapiproxyconnection.cpp 2009-03-06 12:47:32.000000000 +0000
+++ vdccm-0.10.1/src/rapiproxyconnection.cpp 2009-03-06 13:15:37.000000000 +0000
@@ -19,6 +19,8 @@
#include <iostream>
+#include <string.h>
+
RapiProxyConnection::RapiProxyConnection(RapiConnection *rapiConnection, RapiProxy *rapiProxy,
RapiProvisioningClient *rapiProvisioningClient)
: rapiConnection(rapiConnection),

View file

@ -1,91 +0,0 @@
Name: vdccm
Version: 0.10.1
Release: 5%{?dist}
Summary: Serial connection daemon for Pocket PC devices
Group: Applications/Communications
License: MIT
URL: http://www.synce.org
Source0: http://download.sf.net/synce/vdccm-%{version}.tar.gz
Patch0: %{name}-includes.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libsynce-devel >= 0.10.0
BuildRequires: libtool
Requires: synce-serial
%description
Vdccm is a daemon running as the user on the desktop machine, which
the Pocket PC connects to.
This vdccm is a replacement of the original dccm and the vdccm comming
with SynCE-KDE.
%package devel
Summary: Development libraries and header files for vdccm
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
This package contains the header files and link libraries for vdccm
%prep
%setup -q
sed -i -e "/chown root/d" src/Makefile.in
%patch0 -p1
%build
%configure --disable-static
make LIBTOOL=%{_bindir}/libtool %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
rm -f $RPM_BUILD_ROOT%{_libdir}/*.{la,a}
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING NEWS README TODO
%attr(4755,root,root) %{_bindir}/vdccm
%{_bindir}/triggerconnection
%{_mandir}/man1/*
%files devel
%defattr(-,root,root,-)
%changelog
* Fri Mar 05 2009 Caolán McNamara <caolanm@redhat.com> - 0.10.1-5
- fix build
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Fri Feb 22 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.10.1-3
- fix gcc43 build (#433998)
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.10.1-2
- Autorebuild for GCC 4.3
* Fri Dec 21 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.10.1-1
- version upgrade
* Wed May 09 2007 Aurelien Bompard <abompard@fedoraproject.org> 0.10.0-1
- version 0.10.0
* Sat Mar 03 2007 Aurelien Bompard <abompard@fedoraproject.org> 0.9.3-1
- split off the synce package