Initial import (#532874)

This commit is contained in:
Peter Hutterer 2009-11-19 23:28:39 +00:00
parent 61b7bf813f
commit ed7046c2aa
4 changed files with 85 additions and 0 deletions

View File

@ -0,0 +1 @@
xf86-input-wacom-0.10.0.tar.bz2

1
import.log Normal file
View File

@ -0,0 +1 @@
xorg-x11-drv-wacom-0_10_0-3_fc13:HEAD:xorg-x11-drv-wacom-0.10.0-3.fc13.src.rpm:1258673148

View File

@ -0,0 +1 @@
91af5fab1637c6ce52e3f9418d53e22b xf86-input-wacom-0.10.0.tar.bz2

82
xorg-x11-drv-wacom.spec Normal file
View File

@ -0,0 +1,82 @@
%global tarball xf86-input-wacom
%global moduledir %(pkg-config xorg-server --variable=moduledir )
%global driverdir %{moduledir}/input
Summary: Xorg X11 wacom input driver
Name: xorg-x11-drv-wacom
Version: 0.10.0
Release: 3%{?dist}
URL: http://www.x.org
License: GPLv2+
Group: User Interface/X Hardware Support
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Source0: http://people.freedesktop.org/~whot/%{tarball}/%{tarball}-%{version}.tar.bz2
ExcludeArch: s390 s390x
BuildRequires: xorg-x11-server-sdk >= 1.7.0
Requires: xorg-x11-server-Xorg >= 1.7.0
Obsoletes: linuxwacom <= 0.8.4.3
%description
X.Org X11 wacom input driver for Wacom tablets.
%prep
%setup -q -n %{tarball}-%{version}
find -type f -name '*.[ch]' | xargs chmod -x
%build
%configure --disable-static
make %{_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
# FIXME: Remove all libtool archives (*.la) from modules directory. This
# should be fixed in upstream Makefile.am or whatever.
find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog README
%{driverdir}/wacom_drv.so
%{_mandir}/man4/wacom.4*
%package devel
Summary: Xorg X11 wacom input driver development package
Group: Development/Libraries
Requires: xorg-x11-server-devel >= 1.7.0
Requires: pkgconfig
%description devel
X.Org X11 wacom input driver development files.
%files devel
%defattr(-,root,root,-)
%{_libdir}/pkgconfig/xorg-wacom.pc
%{_includedir}/xorg/Xwacom.h
%changelog
* Thu Nov 19 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.0-3
- Use smp_mflags when building.
* Wed Nov 18 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.0-2
- Obsolete linuxwacom, don't Conflict with it.
- Remove trailing dot from summary (rpmlint warning).
- Remove spurious executable bits from source files (rpmlint warning).
- Add AUTHORS, ChangeLog, README to doc
* Mon Oct 19 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.0-1
- Initial import