| 1 | %global tarball xf86-input-wacom |
|---|
| 2 | %global moduledir %(pkg-config xorg-server --variable=moduledir ) |
|---|
| 3 | %global driverdir %{moduledir}/input |
|---|
| 4 | |
|---|
| 5 | Summary: Xorg X11 wacom input driver |
|---|
| 6 | Name: xorg-x11-drv-wacom |
|---|
| 7 | Version: 0.14.0 |
|---|
| 8 | Release: 1%{?_dist_release} |
|---|
| 9 | URL: http://www.x.org |
|---|
| 10 | License: GPLv2+ |
|---|
| 11 | Group: User Interface/X Hardware Support |
|---|
| 12 | |
|---|
| 13 | Source0: http://prdownloads.sourceforge.net/linuxwacom/xf86-input-wacom-%{version}.tar.bz2 |
|---|
| 14 | Source1: 70-wacom.rules |
|---|
| 15 | |
|---|
| 16 | ExcludeArch: s390 s390x |
|---|
| 17 | |
|---|
| 18 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root |
|---|
| 19 | |
|---|
| 20 | BuildRequires: xorg-x11-server-sdk >= 1.7.0 |
|---|
| 21 | BuildRequires: xorg-x11-util-macros >= 1.3.0 |
|---|
| 22 | BuildRequires: libX11-devel |
|---|
| 23 | BuildRequires: libXi-devel |
|---|
| 24 | BuildRequires: libXrandr-devel |
|---|
| 25 | BuildRequires: libXinerama-devel |
|---|
| 26 | BuildRequires: glib2-devel |
|---|
| 27 | BuildRequires: libudev-devel |
|---|
| 28 | |
|---|
| 29 | Requires: xorg-x11-server-Xorg |
|---|
| 30 | Requires: udev |
|---|
| 31 | |
|---|
| 32 | Provides: linuxwacom = %{version}-%{release} |
|---|
| 33 | Obsoletes: linuxwacom <= 0.8.4.3 |
|---|
| 34 | |
|---|
| 35 | Vendor: Project Vine |
|---|
| 36 | Distribution: Vine Linux |
|---|
| 37 | |
|---|
| 38 | %description |
|---|
| 39 | X.Org X11 wacom input driver for Wacom tablets. |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | %package devel |
|---|
| 43 | Summary: Xorg X11 wacom input driver development package |
|---|
| 44 | Group: Development/Libraries |
|---|
| 45 | |
|---|
| 46 | Requires: xorg-x11-server-sdk >= 1.7.0 |
|---|
| 47 | Requires: pkgconfig |
|---|
| 48 | |
|---|
| 49 | %description devel |
|---|
| 50 | X.Org X11 wacom input driver development files. |
|---|
| 51 | |
|---|
| 52 | |
|---|
| 53 | %prep |
|---|
| 54 | %setup -q -n %{tarball}-%{version} |
|---|
| 55 | |
|---|
| 56 | %build |
|---|
| 57 | %configure --disable-static |
|---|
| 58 | make %{_smp_mflags} |
|---|
| 59 | |
|---|
| 60 | %install |
|---|
| 61 | rm -rf $RPM_BUILD_ROOT |
|---|
| 62 | |
|---|
| 63 | make install DESTDIR=$RPM_BUILD_ROOT |
|---|
| 64 | |
|---|
| 65 | # FIXME: Remove all libtool archives (*.la) from modules directory. This |
|---|
| 66 | # should be fixed in upstream Makefile.am or whatever. |
|---|
| 67 | find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f -- |
|---|
| 68 | |
|---|
| 69 | install -d $RPM_BUILD_ROOT/lib/udev/rules.d |
|---|
| 70 | install -m 0644 %{SOURCE1} $RPM_BUILD_ROOT/lib/udev/rules.d/70-wacom.rules |
|---|
| 71 | |
|---|
| 72 | %clean |
|---|
| 73 | rm -rf $RPM_BUILD_ROOT |
|---|
| 74 | |
|---|
| 75 | %files |
|---|
| 76 | %defattr(-,root,root,-) |
|---|
| 77 | %doc AUTHORS README GPL |
|---|
| 78 | # ChangeLog is autogenerated by make dist, we don't run it from git builds |
|---|
| 79 | %doc ChangeLog |
|---|
| 80 | %{driverdir}/wacom_drv.so |
|---|
| 81 | %{_mandir}/man4/wacom.4* |
|---|
| 82 | %{_mandir}/man1/xsetwacom.1* |
|---|
| 83 | %{_datadir}/X11/xorg.conf.d/50-wacom.conf |
|---|
| 84 | %{_bindir}/xsetwacom |
|---|
| 85 | /lib/udev/rules.d/70-wacom.rules |
|---|
| 86 | |
|---|
| 87 | %files devel |
|---|
| 88 | %defattr(-,root,root,-) |
|---|
| 89 | %doc GPL |
|---|
| 90 | %{_libdir}/pkgconfig/xorg-wacom.pc |
|---|
| 91 | %{_includedir}/xorg/Xwacom.h |
|---|
| 92 | %{_includedir}/xorg/isdv4.h |
|---|
| 93 | %{_includedir}/xorg/wacom-properties.h |
|---|
| 94 | %{_includedir}/xorg/wacom-util.h |
|---|
| 95 | %{_bindir}/isdv4-serial-debugger |
|---|
| 96 | |
|---|
| 97 | %changelog |
|---|
| 98 | * Sun Mar 25 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.0-1 |
|---|
| 99 | - new upstream release |
|---|
| 100 | |
|---|
| 101 | * Sat Mar 03 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.13.0-1 |
|---|
| 102 | - new upstream release |
|---|
| 103 | - add BuildRequires: libXinerama-devel |
|---|
| 104 | |
|---|
| 105 | * Wed Nov 02 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.11.1-3 |
|---|
| 106 | - rebuild with xserver-1.11.1.902 |
|---|
| 107 | |
|---|
| 108 | * Sun Aug 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.11.1-2 |
|---|
| 109 | - update Source1 (70-wacom.rules) |
|---|
| 110 | |
|---|
| 111 | * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.11.1-1 |
|---|
| 112 | - new upstream release |
|---|
| 113 | |
|---|
| 114 | * Sat May 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.11.0-1 |
|---|
| 115 | - new upstream release |
|---|
| 116 | - add BuildRequires: libudev-devel |
|---|
| 117 | |
|---|
| 118 | * Tue Mar 01 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.11-1 |
|---|
| 119 | - initial build for Vine Linux |
|---|
| 120 | |
|---|
| 121 | |
|---|
| 122 | * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.10-3.20101122 |
|---|
| 123 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
|---|
| 124 | |
|---|
| 125 | * Thu Nov 25 2010 Peter Hutterer <peter.hutterer@redhat.com> - 0.10.10-2.20101122 |
|---|
| 126 | - Rebuild for server 1.10 |
|---|
| 127 | |
|---|
| 128 | * Mon Nov 22 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.10-1 |
|---|
| 129 | - Update to today's git snapshot (0.10.10), an emergency release. |
|---|
| 130 | |
|---|
| 131 | * Fri Nov 19 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.9-2 |
|---|
| 132 | - require libXrandr-devel for xsetwacom |
|---|
| 133 | |
|---|
| 134 | * Fri Nov 19 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.9-1 |
|---|
| 135 | - Update to today's git snapshot (0.10.9) |
|---|
| 136 | |
|---|
| 137 | * Wed Oct 27 2010 Adam Jackson <ajax@redhat.com> 0.10.8-3 |
|---|
| 138 | - Add ABI requires magic (#542742) |
|---|
| 139 | |
|---|
| 140 | |
|---|
| 141 | * Mon Aug 02 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.8-2 |
|---|
| 142 | - Update to today's git snapshot. |
|---|
| 143 | |
|---|
| 144 | * Mon Jul 26 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.8-1 |
|---|
| 145 | - wacom 0.10.8 (from git) |
|---|
| 146 | |
|---|
| 147 | * Thu Jul 08 2010 Adam Jackson <ajax@redhat.com> 0.10.7-4 |
|---|
| 148 | - Install GPL in -devel too |
|---|
| 149 | |
|---|
| 150 | * Mon Jul 05 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.7-3.20100705 |
|---|
| 151 | - Update to git to build against newest X server. |
|---|
| 152 | |
|---|
| 153 | * Mon Jul 05 2010 Peter Hutterer <peter.hutterer@redhat.com> - 0.10.7-2.20100621 |
|---|
| 154 | - rebuild for X Server 1.9 |
|---|
| 155 | |
|---|
| 156 | * Mon Jun 21 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.7-1.20100621 |
|---|
| 157 | - Update to 0.10.7 from git. |
|---|
| 158 | |
|---|
| 159 | * Wed Jun 16 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.6-6.20100616 |
|---|
| 160 | - Update to today's git snapshot. |
|---|
| 161 | |
|---|
| 162 | * Thu Jun 03 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.6-5.2010603 |
|---|
| 163 | - Update to today's git snapshot. |
|---|
| 164 | |
|---|
| 165 | * Thu Jun 03 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.6-5.20100521 |
|---|
| 166 | - Update udev rules file to include Fujitsu serial tablets. (#598168) |
|---|
| 167 | - Update udev rules file to set ID_INPUT_TABLET |
|---|
| 168 | |
|---|
| 169 | * Fri May 21 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.6-4.20100521 |
|---|
| 170 | - Update to today's git snapshot. |
|---|
| 171 | - wacom-0.10.6-serial-identifiers.patch: drop, upstream. |
|---|
| 172 | |
|---|
| 173 | * Tue May 18 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.6-3.20100427 |
|---|
| 174 | - Install wacom udev rules file to identify serial devices. |
|---|
| 175 | |
|---|
| 176 | * Tue Apr 27 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.6-2.20100427 |
|---|
| 177 | - wacom-0.10.6-serial-identifiers.patch: add some more serial IDs to the |
|---|
| 178 | config file. |
|---|
| 179 | |
|---|
| 180 | * Tue Apr 27 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.6-1.20100427 |
|---|
| 181 | - wacom 0.10.6 (from git) |
|---|
| 182 | |
|---|
| 183 | * Thu Apr 15 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.5-5.20100325 |
|---|
| 184 | - Fix up missing directory change from last commit. |
|---|
| 185 | |
|---|
| 186 | * Thu Apr 15 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.5-4.20100325 |
|---|
| 187 | - Install config snippet in $datadir/X11/xorg.conf.d |
|---|
| 188 | - rename to 50-wacom.conf to match upstream naming |
|---|
| 189 | |
|---|
| 190 | * Thu Mar 25 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.5-3.20100325 |
|---|
| 191 | - Update to today's git snapshot. |
|---|
| 192 | |
|---|
| 193 | * Tue Mar 23 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.5-2.20100319 |
|---|
| 194 | - Enable the debug properties. |
|---|
| 195 | |
|---|
| 196 | * Fri Mar 19 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.5-1.20100319 |
|---|
| 197 | - Update to today's git snapshot (0.10.5) |
|---|
| 198 | |
|---|
| 199 | * Tue Mar 16 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.4-7.20100316 |
|---|
| 200 | - Update to today's git snapshot. |
|---|
| 201 | |
|---|
| 202 | * Fri Mar 05 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.4-6.20100305 |
|---|
| 203 | - Update to today's git snapshot. |
|---|
| 204 | |
|---|
| 205 | * Thu Mar 04 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.4-5.20100219 |
|---|
| 206 | - Fix 10-wacom.conf for N-Trig devices: rename the class (copy/paste error) |
|---|
| 207 | and only take event devices. (Related #526270) |
|---|
| 208 | |
|---|
| 209 | * Fri Feb 19 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.4-4.20100219 |
|---|
| 210 | - Add stuff required to build from upstream git. |
|---|
| 211 | - Update to today's git snapshot. |
|---|
| 212 | |
|---|
| 213 | * Wed Feb 17 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.4-3 |
|---|
| 214 | - Add 10-wacom.conf, the fdi file doesn't work anymore. |
|---|
| 215 | - Drop hal requires. |
|---|
| 216 | |
|---|
| 217 | * Wed Feb 03 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.4-2 |
|---|
| 218 | - Update sources to sourceforge, 0.10.4 was released on sf only. |
|---|
| 219 | - Remove wacom.fdi, we're just using the one shipped by the driver now. |
|---|
| 220 | |
|---|
| 221 | * Thu Jan 21 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.4-1 |
|---|
| 222 | - wacom 0.10.4 |
|---|
| 223 | |
|---|
| 224 | * Thu Jan 21 2010 Peter Hutterer <peter.hutterer@redhat.com> - 0.10.3-3 |
|---|
| 225 | - Rebuild for server 1.8 |
|---|
| 226 | |
|---|
| 227 | * Tue Jan 05 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.3-2 |
|---|
| 228 | - BuildRequires and Requires libX11 and libXi for xsetwacom. |
|---|
| 229 | |
|---|
| 230 | * Tue Jan 05 2010 Peter Hutterer <peter.hutterer@redhat.com> 0.10.3-1 |
|---|
| 231 | - wacom 0.10.3 |
|---|
| 232 | |
|---|
| 233 | * Thu Dec 03 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.2-1 |
|---|
| 234 | - wacom 0.10.2 |
|---|
| 235 | |
|---|
| 236 | * Fri Nov 20 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.1-2 |
|---|
| 237 | - cvs add 10-wacom.fdi, this time really. |
|---|
| 238 | |
|---|
| 239 | * Fri Nov 20 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.1-1 |
|---|
| 240 | - wacom 0.10.1 |
|---|
| 241 | - BuildRequires xorg-x11-util-macros 1.3.0 |
|---|
| 242 | - Remove unnecessary 'find' directive, changed upstream. |
|---|
| 243 | - Add GPL document |
|---|
| 244 | - Install 10-wacom.fdi file. |
|---|
| 245 | - Provides: linuxwacom |
|---|
| 246 | |
|---|
| 247 | * Thu Nov 19 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.0-3 |
|---|
| 248 | - Use smp_mflags when building. |
|---|
| 249 | |
|---|
| 250 | * Wed Nov 18 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.0-2 |
|---|
| 251 | - Obsolete linuxwacom, don't Conflict with it. |
|---|
| 252 | - Remove trailing dot from summary (rpmlint warning). |
|---|
| 253 | - Remove spurious executable bits from source files (rpmlint warning). |
|---|
| 254 | - Add AUTHORS, ChangeLog, README to doc |
|---|
| 255 | |
|---|
| 256 | * Mon Oct 19 2009 Peter Hutterer <peter.hutterer@redhat.com> 0.10.0-1 |
|---|
| 257 | - Initial import |
|---|
| 258 | |
|---|