Fri, 11 Mar 2011 21:41:16 +0100
Import unmodified vendor specs for introduction into repository.
1 %define _root_libdir /%{_lib}
3 Summary: Generic Security Services Application Programming Interface Library
4 Vendor: Europalab Software
5 Packager: Michael Schloh von Bennewitz
6 Distribution: MeeGo Thirdparty
7 Name: libgssglue
8 Version: 0.1
9 Release: 20101201
10 URL: http://www.citi.umich.edu/projects/nfsv4/linux/
11 License: GPL+
12 Source0: http://www.citi.umich.edu/projects/nfsv4/linux/%{name}/%{name}-%{version}.tar.gz
13 Group: System Environment/Libraries
14 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
15 Requires: krb5-libs >= 1.5
17 Provides: libgssapi = %{version}-%{release}
18 Provides: libgssapi-devel = %{version}-%{release}
19 Obsoletes: libgssapi <= 0.11 libgssapi-devel <= 0.11
21 Patch0: libgssglue.patch
23 %description
24 This library exports a gssapi interface, but doesn't implement any gssapi
25 mechanisms itself; instead it calls gssapi routines in other libraries,
26 depending on the mechanism.
28 %package devel
29 Summary: Development files for the gssglue library
30 Vendor: Europalab Software
31 Packager: Michael Schloh von Bennewitz
32 Distribution: MeeGo Thirdparty
33 Group: Development/Libraries
34 Requires: %{name} = %{version}-%{release}
35 Requires: pkgconfig
37 %description devel
38 This package includes header files and libraries necessary for
39 developing programs which use the gssapi library.
41 %prep
42 %setup -q
43 %patch0 -p1
45 %build
46 %configure
47 make %{?_smp_mflags} all
49 %install
50 rm -rf %{buildroot}
51 mkdir -p %{buildroot}/%{_sysconfdir}
52 mkdir -p %{buildroot}%{_root_libdir}
53 mkdir -p %{buildroot}%{_libdir}/pkgconfig
54 make DESTDIR=%{buildroot} install \
55 libdir=%{_root_libdir} pkgconfigdir=%{_libdir}/pkgconfig
56 install -p -m 644 doc/gssapi_mech.conf %{buildroot}/%{_sysconfdir}/gssapi_mech.conf
57 rm -f %{buildroot}/%{_root_libdir}/*.{a,la}
59 %post -p /sbin/ldconfig
61 %postun -p /sbin/ldconfig
63 %clean
64 rm -rf %{buildroot}
67 %files
68 %defattr(-,root,root,-)
69 %doc AUTHORS ChangeLog NEWS README
70 %{_root_libdir}/libgssglue.so.*
71 %config(noreplace) %{_sysconfdir}/gssapi_mech.conf
73 %files devel
74 %defattr(0644,root,root,755)
75 %{_root_libdir}/libgssglue.so
76 %dir %{_includedir}/gssglue
77 %dir %{_includedir}/gssglue/gssapi
78 %{_includedir}/gssglue/gssapi/gssapi.h
79 %{_libdir}/pkgconfig/libgssglue.pc
81 %changelog
82 * Sat Dec 4 2010 Michael Schloh von Bennewitz <michael@schloh.com> - 0.1-20101201
83 - Repackage for MeeGo 1.1
85 * Thu Dec 2 2010 Steve Dickson <steved@redhat.com> 0.1-9
86 - Moved the libraries from /usr/lib to /lib
88 * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-8
89 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
91 * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-7
92 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
94 * Fri Jun 27 2008 Steve Dickson <steved@redhat.com> 0.1-6
95 - Changed gssapi_mech.conf to use libgssapi_krb5.so.2
96 instead of libgssapi_krb5.so (bz 447503)
98 * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.1-5
99 - Autorebuild for GCC 4.3
101 * Wed Oct 17 2007 Steve Dickson <steved@redhat.com> 0.1-4
102 - updated Obsoletes: (0.1-3)
103 - Obsolete -devel package
105 * Mon Sep 17 2007 Steve Dickson <steved@redhat.com> 0.1-2
106 - RPM review
108 * Tue Sep 11 2007 Steve Dickson <steved@redhat.com>
109 - Initial commit