Compare commits

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

4 commits

Author SHA1 Message Date
Fedora Release Engineering
a47521b625 dist-git conversion 2010-07-29 14:54:51 +00:00
Bill Nottingham
d99375b852 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:12:22 +00:00
Aurelien Bompard
9727983ca7 import 2007-05-01 11:55:01 +00:00
Warren Togami
c5409e494b Initialize branch FC-6 for vdccm 2007-04-29 22:08:23 +00:00
5 changed files with 74 additions and 21 deletions

View file

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
synce-vdccm-0.9.3.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)

View file

@ -0,0 +1 @@
996236320a6b4c9410050c4dc6e53164 synce-vdccm-0.9.3.tar.gz

72
vdccm.spec Normal file
View file

@ -0,0 +1,72 @@
Name: vdccm
Version: 0.9.3
Release: 1%{?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/synce-vdccm-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libsynce-devel
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
%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}/proxyclient
%{_bindir}/triggerconnection
%{_libdir}/libdescriptor.so.*
%files devel
%defattr(-,root,root,-)
%{_libdir}/lib*.so
%changelog
* Sat Mar 03 2007 Aurelien Bompard <abompard@fedoraproject.org> 0.9.3-1
- split off the synce package