libfprint-vl.spec 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. Name: libfprint
  2. Summary: Tool kit for fingerprint scanner
  3. Summary(ja): 指紋スキャナツールキット
  4. Version: 0.4.0
  5. Release: 2%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: LGPLv2+
  8. URL: http://www.reactivated.net/fprint/wiki/Main_Page
  9. Source0: http://people.freedesktop.org/~hadess/%{name}-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. # FIXME remove the ImageMagick dependency when we either have the
  12. # gdk-pixbuf support merged, or disable the driver that requires it (F10)
  13. BuildRequires: libusb1-devel
  14. BuildRequires: ImageMagick-devel
  15. BuildRequires: glib2-devel
  16. BuildRequires: openssl-devel
  17. BuildRequires: nss-devel
  18. BuildRequires: doxygen
  19. Requires: ConsoleKit
  20. %description
  21. libfprint offers support for consumer fingerprint reader devices.
  22. %package devel
  23. Summary: Development files for %{name}
  24. Group: Development/Libraries
  25. Requires: %{name} = %{version}-%{release}
  26. Requires: pkgconfig
  27. %description devel
  28. The %{name}-devel package contains libraries and header files for
  29. developing applications that use %{name}.
  30. %prep
  31. %setup -q
  32. %build
  33. %configure --disable-static
  34. make %{?_smp_mflags}
  35. pushd doc
  36. make docs
  37. popd
  38. %install
  39. rm -rf $RPM_BUILD_ROOT
  40. make install DESTDIR=$RPM_BUILD_ROOT
  41. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  42. %clean
  43. rm -rf $RPM_BUILD_ROOT
  44. %post -p /sbin/ldconfig
  45. %postun -p /sbin/ldconfig
  46. %files
  47. %defattr(-,root,root,-)
  48. %doc COPYING INSTALL NEWS TODO THANKS AUTHORS
  49. %{_sysconfdir}/udev/rules.d/60-fprint-autosuspend.rules
  50. %{_libdir}/*.so.*
  51. %files devel
  52. %defattr(-,root,root,-)
  53. %doc HACKING doc/html
  54. %{_includedir}/*
  55. %{_libdir}/*.so
  56. %{_libdir}/pkgconfig/%{name}.pc
  57. %changelog
  58. * Wed Aug 14 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.0-2
  59. - rebuild with ImageMagick-6.8.6.8
  60. * Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.0-1
  61. - update to 0.4.0
  62. * Sun Mar 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.0-4.pre2
  63. - rebuilt with ImageMagick-6.7.5.10
  64. * Sun Oct 3 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.1.0-3.pre2
  65. - rebuilt with ImageMagick-6.6.4.8
  66. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.0-2.pre2
  67. - rebuild with rpm-4.8.1 for pkg-config file
  68. * Thu Apr 29 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.1.0-1.pre2
  69. - new upstream release
  70. - dropt Patch0 (merged into upstream)
  71. - built with new toolchain and ImageMagick-6.6.1.5
  72. * Wed May 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.1.0-1.pre1
  73. - initial build for Vine Linux
  74. * Mon Mar 09 2009 pingou <pingou@pingoured.fr> - 0.1.0-6.pre1
  75. - Rebuilt for rawhide
  76. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-5.pre1
  77. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  78. * Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 0.1.0-4.pre1
  79. - rebuild with new openssl
  80. * Tue Nov 25 2008 - Bastien Nocera <bnocera@redhat.com> - 0.1.0-3.pre1
  81. - Fix possible crasher in libfprint when setting up the fds for polling
  82. * Mon Nov 24 2008 - Bastien Nocera <bnocera@redhat.com> - 0.1.0-2.pre1
  83. - And add some API docs
  84. * Tue Nov 18 2008 - Bastien Nocera <bnocera@redhat.com> - 0.1.0-1.pre1
  85. - Fix build
  86. * Tue Nov 04 2008 - Bastien Nocera <bnocera@redhat.com> - 0.1.0-0.pre1
  87. - Update to 0.1.0-pre1
  88. * Tue May 13 2008 Pingou <pingoufc4@yahoo.fr> 0.0.5-6
  89. - Correction on the Build Requires
  90. * Tue May 13 2008 Pingou <pingoufc4@yahoo.fr> 0.0.5-5
  91. - Correction on the Build Requires
  92. * Tue May 13 2008 Pingou <pingoufc4@yahoo.fr> 0.0.5-4
  93. - Update the Build Requires due to the change on ImageMagick
  94. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.0.5-3
  95. - Autorebuild for GCC 4.3
  96. * Sat Jan 05 2008 Pingou <pingoufc4@yahoo.fr> 0.0.5-2
  97. - Change on the BuildRequires
  98. * Sat Jan 05 2008 Pingou <pingoufc4@yahoo.fr> 0.0.5-1
  99. - Update to version 0.0.5
  100. * Sat Dec 01 2007 Pingou <pingoufc4@yahoo.fr> 0.0.4-3
  101. - Changes on the Requires
  102. * Sun Nov 25 2007 Pingou <pingoufc4@yahoo.fr> 0.0.4-2
  103. - Changes on the Requires
  104. * Sat Nov 24 2007 Pingou <pingoufc4@yahoo.fr> 0.0.4-1
  105. - First release