Compare commits

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

7 commits

Author SHA1 Message Date
Fedora Release Engineering
919c2c35d2 dist-git conversion 2010-07-29 15:13:50 +00:00
Aristeu Sergio Rozanski Filho
6e1781fe87 Xorg now provides input hotplugging 2009-05-20 17:50:56 +00:00
Jesse Keating
8e4509047b - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-25 18:16:02 +00:00
Aristeu Sergio Rozanski Filho
c74518f178 updating to version 0.15 2008-09-02 19:13:34 +00:00
Tom Callaway
916228755f fix license tag 2008-05-21 18:27:26 +00:00
Aristeu Sergio Rozanski Filho
af010b34a2 updating to version 0.14 to support more tablets 2008-03-12 17:26:27 +00:00
Aristeu Sergio Rozanski Filho
9d9f372a92 - Updated to version 0.13
- Added missing entries in udev rules (Bamboo and Intuos3 4x6")
2008-02-06 20:54:38 +00:00
6 changed files with 3 additions and 116 deletions

View file

@ -1,2 +0,0 @@
wdaemon-0.11.tar.bz2
wdaemon-0.12.tar.bz2

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
wdaemon-0.15.tar.bz2

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: wdaemon
# $Id$
NAME := wdaemon
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)

2
dead.package Normal file
View file

@ -0,0 +1,2 @@
Obsolete package with Xorg's new input layer

View file

@ -1,2 +0,0 @@
ccf216d77a096613aa7ddc9da7976102 wdaemon-0.11.tar.bz2
3ca0ff8aad51a12a6deb1fe0734da33c wdaemon-0.12.tar.bz2

View file

@ -1,91 +0,0 @@
Name: wdaemon
Version: 0.12
Release: 1%{?dist}
Summary: Hotplug helper for Wacom X.org driver
Group: User Interface/X Hardware Support
License: GPL
URL: http://jake.ruivo.org/~aris/wdaemon/
Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}
BuildRequires: glibc-devel
Requires: udev >= 030-21
%description
Helper application which emulates persistent input devices for Wacom tablets
so they can be plugged and unplugged while X.org server is running. This should
go away as soon X.org properly supports hotplugging.
%prep
%setup -q
%build
export CFLAGS="$RPM_OPT_FLAGS"
make
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT bindir=%{_bindir} sysconfdir=%{_sysconfdir} install;
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/
install -m 0755 udev/is_uinput.sh $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/
install -m 0644 udev/61-uinput-wacom.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/
install -m 0644 udev/61-uinput-stddev.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/
%clean
rm -rf $RPM_BUILD_ROOT
%post
if [ $1 = 1 ]; then
/sbin/chkconfig --add %{name}
fi
%preun
if [ $1 = 0 ]; then
/sbin/service %{name} stop > /dev/null 2>&1
/sbin/chkconfig --del %{name}
fi
%postun
if [ $1 -ge 1 ]; then
/sbin/service %{name} condrestart >/dev/null 2>&1
fi
%files
%defattr(-,root,root,-)
%doc AUTHORS LICENSE Changelog README simple.conf
%{_bindir}/wdaemon
%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-wacom.rules
%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-stddev.rules
%{_sysconfdir}/rc.d/init.d/wdaemon
%{_sysconfdir}/udev/scripts/is_uinput.sh
%changelog
* Wed Sep 19 2007 Aristeu Rozanski <arozansk@redhat.com> 0.12-1
- Updated to version 0.12
* Wed Aug 01 2007 Aristeu Rozanski <arozansk@redhat.com> 0.11-1
- Updated to version 0.11
* Tue Jul 24 2007 Aristeu S. Rozanski F. <arozansk@redhat.com> 0.10-3
- More problems found by Jarod Wilson fixed:
- Removing exclusive architectures, it used to be in sync with linuxwacom
package
- marking udev rules as non-replaceable config files
- using install on makefile
* Mon Jul 23 2007 Aristeu S. Rozanski F. <arozansk@redhat.com> 0.10-2
- Fixing the problems found by Jarod Wilson:
- Fixing make install target
- Fixing Makefile so it honors the provided CFLAGS
- not using makeinstall macro
- installing is_uinput.sh as 755 instead of changing later with attr
* Fri Jul 20 2007 Aristeu S. Rozanski F. <arozansk@redhat.com> 0.10-1
* upgrading to version 0.10
* Thu Jul 19 2007 Aristeu S. Rozanski F. <arozansk@redhat.com> 0.09-1
- first release