xorg-x11-drv-synaptics-vl.spec 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. %define tarball xf86-input-synaptics
  2. %define moduledir %(pkg-config xorg-server --variable=moduledir )
  3. %define driverdir %{moduledir}/input
  4. Name: xorg-x11-drv-synaptics
  5. Summary: Xorg X11 synaptics input driver
  6. Summary(ja): Xorg X11 synaptics 入力ドライバ
  7. Version: 1.7.6
  8. Release: 1%{?_dist_release}
  9. URL: http://www.x.org
  10. License: MIT
  11. Group: User Interface/X Hardware Support
  12. Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2
  13. Source1: 50-synaptics.conf
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  15. ExcludeArch: s390 s390x
  16. BuildRequires: libtool, pkgconfig
  17. BuildRequires: xorg-x11-server-sdk >= 1.6.0
  18. BuildRequires: libX11-devel, libXi-devel, libXext-devel
  19. BuildRequires: libXtst-devel
  20. BuildRequires: mtdev-devel
  21. BuildRequires: xorg-x11-util-macros >= 1.3.0
  22. Requires: xorg-x11-server-Xorg
  23. Provides: synaptics = %{version}-%{release}
  24. Obsoletes: synaptics < 0.15.0
  25. Vendor: Project Vine
  26. Distribution: Vine Linux
  27. %description
  28. This is a driver for the Synaptics TouchPad for X.Org. A Synaptics touchpad by
  29. default operates in compatibility mode by emulating a standard mouse. However,
  30. by using a dedicated driver, more advanced features of the touchpad becomes
  31. available.
  32. Features:
  33. * Movement with adjustable, non-linear acceleration and speed.
  34. * Button events through short touching of the touchpad.
  35. * Double-Button events through double short touching of the touchpad.
  36. * Dragging through short touching and holding down the finger on the
  37. touchpad.
  38. * Middle and right button events on the upper and lower corner of the
  39. touchpad.
  40. * Vertical scrolling (button four and five events) through moving the
  41. finger on the right side of the touchpad.
  42. * The up/down button sends button four/five events.
  43. * Horizontal scrolling (button six and seven events) through moving the
  44. finger on the lower side of the touchpad.
  45. * The multi-buttons send button four/five events, and six/seven events for
  46. horizontal scrolling.
  47. * Adjustable finger detection.
  48. Multifinger taps: two finger for middle button and three finger for
  49. right button events. (Needs hardware support. Not all models implement
  50. this feature.)
  51. * Run-time configuration using shared memory. This means you can change
  52. parameter settings without restarting the X server.
  53. %description -l ja
  54. Synaptics は XOrg 用の Synaptics タッチパッドドライバです。Synaptics タッチ
  55. パッドはデフォルトでは標準マウスをエミュレートし互換モードで動作します。
  56. しかしこの専用ドライバを使用することで、より多くの機能が使用できるようになり
  57. ます。
  58. 機能:
  59. * スピードと加速の調整が可能。
  60. * タッチパッドに短く触れたらクリック。
  61. * タッチパッドに2度短く触れたらダブルクリック。
  62. * タッチパッドに短く触れた後、指を下ろしたまま移動させたらドラッグ。
  63. * タッチパッドの上下のコーナーに中ボタンと右ボタンを割り当て。
  64. * タッチパッドの右端を上下になぞる事で縦スクロール。
  65. (ボタン4及びボタン5として動作)
  66. * 上下ボタンをボタン4及びボタン5として動作。
  67. * タッチパッドの下端を左右になぞることで横スクロール。
  68. (ボタン6及びボタン7として動作)
  69. * 複数ボタンがある場合は横スクロール用にボタン4/5とボタン6/7として動作。
  70. * 感度の調整が可能。
  71. * 複数の指によるタップ: 二本指を中ボタン、三本指を右ボタンに割り当て。
  72. (ハードウェアのサポートが必要。全てのタッチパッドで動作する訳では無い)
  73. * 共有メモリによる実行中の設定変更が可能。これにより X の再起動無しに
  74. 設定を変更することができる。
  75. %prep
  76. %setup -q -n %{tarball}-%{version}
  77. %build
  78. autoreconf -v --install --force || exit 1
  79. %configure --disable-static
  80. make %{?_smp_mflags}
  81. %install
  82. rm -rf $RPM_BUILD_ROOT
  83. make install DESTDIR=$RPM_BUILD_ROOT
  84. # FIXME: Remove all libtool archives (*.la) from modules directory. This
  85. # should be fixed in upstream Makefile.am or whatever.
  86. find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
  87. # install xorg.conf snippet
  88. install -d $RPM_BUILD_ROOT%{_datadir}/X11/xorg.conf.d/
  89. install -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/X11/xorg.conf.d/
  90. %clean
  91. rm -rf $RPM_BUILD_ROOT
  92. %files
  93. %defattr(-,root,root,-)
  94. %doc COPYING README
  95. %{_datadir}/X11/xorg.conf.d/*.conf
  96. %{driverdir}/synaptics_drv.so
  97. %{_bindir}/synclient
  98. %{_bindir}/syndaemon
  99. %{_mandir}/man4/synaptics.4*
  100. %{_mandir}/man1/synclient.1*
  101. %{_mandir}/man1/syndaemon.1*
  102. %{_includedir}/xorg/synaptics-properties.h
  103. %{_libdir}/pkgconfig/xorg-synaptics.pc
  104. %changelog
  105. * Wed Jun 11 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.6-1
  106. - new upstream release
  107. * Wed Apr 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.4-1
  108. - new upstream release
  109. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.2-1
  110. - new upstream release
  111. * Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.1-1
  112. - new upstream release
  113. * Sun May 05 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.0-1
  114. - new upstream release
  115. * Mon Jun 18 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-1
  116. - new upstream release
  117. * Sat May 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.1-1
  118. - new upstream release
  119. - add BuildRequires: libXtst-devel
  120. * Sun Mar 25 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.99.902-1
  121. - new upstream release
  122. - add BuildRequires: mtdev-devel
  123. * Wed Nov 02 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.0-1
  124. - new upstream release
  125. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.1-1
  126. - new upstream release
  127. * Sat Mar 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
  128. - new upstream release
  129. * Mon Feb 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.99.901-1
  130. - new upstream release
  131. * Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.0-2
  132. - rebuild with xserver-1.9.2
  133. * Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.0-1
  134. - new upstream release
  135. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-3
  136. - rebuild with rpm-4.8.1 for pkg-config file
  137. * Sat Apr 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-2
  138. - move xorg.conf snippet to /usr/share/X11/xorg.conf.d
  139. * Mon Mar 29 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-1
  140. - update to 1.2.2
  141. - drop hal support
  142. - drop hal fdi policy
  143. - remove R: hal
  144. - add xorg.conf snippet
  145. * Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.1-3
  146. - rebuild with xserver-1.8rc (x86_64)
  147. * Wed Mar 24 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-2
  148. - rebuild with xserver-1.8rc
  149. * Sun Feb 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.1-1
  150. - new upstream release
  151. * Thu Nov 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-1
  152. - new upstream release
  153. - add BR: xorg-x11-util-macros >= 1.3.0
  154. * Sat Jun 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.2-1
  155. - new upstream release
  156. - remove Patch10: SHMconfig is not needed
  157. * Sun Mar 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.0-1
  158. - new upstream release
  159. * Sun Dec 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.3-1
  160. - new upstream release
  161. * Mon Nov 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.1-1
  162. - new upstream release
  163. * Wed Oct 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.15.2-2
  164. - use bundled fdi
  165. - add patch10 to enable SHMConfig on all synaptics devices.
  166. * Sat Sep 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.15.2-1
  167. - new upstream release
  168. * Tue Sep 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.15.1-1
  169. - new upstream version released from x.org
  170. - rename to xorg-x11-drv-synaptics
  171. - add Obsoletes/Provides synaptics
  172. - add patch1,2 from fedora
  173. - patch1: reserve 5% on each side for edge detection.
  174. - patch2: force a click if middle button emulation times out during ReadInput cycle.
  175. * Tue Jul 8 2008 Shu KONNO <owa@bg.wakwak.com> 0.14.6.20070706-3
  176. - fixed synaptics_drv.so path by using %%{_libdir}
  177. * Sun Jul 6 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.14.6.20070706-2
  178. - add Patch0; add BuildRequires: libpciaccess-devel
  179. - built with xorg-x11-server-1.4.99.905
  180. * Fri May 23 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.14.6.20070706-1
  181. - updated to newest git upstream (cd6a1225ec319cad9788e8fba158d9792b55de23)
  182. - built with xorg-x11
  183. - spec encoding converted to UTF-8
  184. * Wed Jul 19 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.6-0vl1
  185. - source update.
  186. - build for VineSeed (4.0) Plus.
  187. * Sun Jun 18 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.5-0vl0
  188. - build for Vine Plus/3.0.
  189. * Sun Jun 18 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.5-0vl1
  190. - source update.
  191. - build for VineSeed Plus.
  192. * Mon Jan 23 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.4-0vl3
  193. - add man page synaptics.5.
  194. - build for VineSeed Plus.
  195. * Sat Jan 21 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.4-0vl0
  196. - build for Vine Plus/3.0.
  197. * Sat Jan 21 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.4-0vl1
  198. - source update.
  199. - build for VineSeed Plus.
  200. * Sun Apr 03 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.1-0vl0
  201. - build for Vine Plus/3.0.
  202. * Thu Mar 31 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.14.1-0vl1
  203. - initial build for VineSeed Plus.