source: projects/specs/branches/6/lib/libg/libgssglue/libgssglue-vl.spec @ 1901

Revision 1901, 2.5 KB checked in by Takemikaduchi, 14 years ago (diff)

rebuild with rpm-4.8.1

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