libgssglue-vl.spec 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. Summary: Generic Security Services Application Programming Interface Library
  2. Name: libgssglue
  3. Version: 0.1
  4. Release: 8%{?_dist_release}
  5. URL: http://www.citi.umich.edu/projects/nfsv4/linux/
  6. License: GPL+
  7. Source0:http://www.citi.umich.edu/projects/nfsv4/linux/%{name}/%{name}-%{version}.tar.gz
  8. Group: System Environment/Libraries
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. #Requires: krb5-libs >= 1.5
  11. Provides: libgssapi = %{version}-%{release}
  12. Obsoletes: libgssapi <= 0.11
  13. Patch0: libgssglue-0.1-gssglue.patch
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. %description
  17. This library exports a gssapi interface, but doesn't implement any gssapi
  18. mechanisms itself; instead it calls gssapi routines in other libraries,
  19. depending on the mechanism.
  20. %package devel
  21. Summary: Development files for the gssclug library
  22. Group: Development/Libraries
  23. Requires: %{name} = %{version}-%{release}
  24. Requires: pkgconfig
  25. Provides: libgssapi-devel = %{version}-%{release}
  26. Obsoletes: libgssapi-devel <= 0.11
  27. %description devel
  28. This package includes header files and libraries necessary for
  29. developing programs which use the gssapi library.
  30. %prep
  31. %setup -q
  32. %patch0 -p1
  33. %build
  34. %configure
  35. make %{?_smp_mflags} all
  36. %install
  37. rm -rf %{buildroot}
  38. mkdir -p %{buildroot}/%{_sysconfdir}
  39. make DESTDIR=%{buildroot} install
  40. install -p -m 644 doc/gssapi_mech.conf %{buildroot}/%{_sysconfdir}/gssapi_mech.conf
  41. rm -f %{buildroot}/%{_libdir}/*.a %{buildroot}/%{_libdir}/*.la
  42. %post -p /sbin/ldconfig
  43. %postun -p /sbin/ldconfig
  44. %clean
  45. rm -rf %{buildroot}
  46. %files
  47. %defattr(-,root,root,-)
  48. %doc AUTHORS ChangeLog NEWS README
  49. %{_libdir}/libgssglue.so.*
  50. %config(noreplace) %{_sysconfdir}/gssapi_mech.conf
  51. %files devel
  52. %defattr(0644,root,root,755)
  53. %{_libdir}/libgssglue.so
  54. %dir %{_includedir}/gssglue
  55. %dir %{_includedir}/gssglue/gssapi
  56. %{_includedir}/gssglue/gssapi/gssapi.h
  57. %{_libdir}/pkgconfig/libgssglue.pc
  58. %changelog
  59. * Sat Dec 28 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1-8
  60. - rebuild with VineSeed environment
  61. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1-7
  62. - rebuild with rpm-4.8.1 for pkg-config file
  63. * Sun Feb 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.1-6
  64. - rebuilt with new toolchain
  65. * Sun May 11 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.1-5
  66. - initial build for Vine Linux
  67. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.1-5
  68. - Autorebuild for GCC 4.3
  69. * Wed Oct 17 2007 Steve Dickson <steved@redhat.com> 0.1-4
  70. - updated Obsoletes: (0.1-3)
  71. - Obsolete -devel package
  72. * Mon Sep 17 2007 Steve Dickson <steved@redhat.com> 0.1-2
  73. - RPM review
  74. * Tue Sep 11 2007 Steve Dickson <steved@redhat.com>
  75. - Initial commit