libnscd/libnscd.spec

97 lines
2.4 KiB
RPMSpec

#
# spec file for package libnscd (Version 2.0.2)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: libnscd
License: LGPLv2.1
Group: System/Libraries
AutoReqProv: on
# bug437293
%ifarch ppc64
Obsoletes: libnscd-64bit
%endif
#
Version: 2.0.2
Release: 116
Summary: Library to Allow Applications to Communicate with nscd
Source: libnscd-%{version}.tar.bz2
Source2: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This library provides an interface for applications to NSCD (Name
Service Cache Daemon) and allows those applications, to flush the cache
for special services, if they have the necessary permissions.
%package devel
License: LGPLv2.1+
Summary: Include Files and Libraries for Development.
Group: Development/Libraries/C and C++
Requires: libnscd = %{version}
AutoReqProv: on
# bug437293
%ifarch ppc64
Obsoletes: libnscd-devel-64bit
%endif
#
%description devel
This package contains all necessary include files and libraries needed
to develop applications that needs to communicate with a running nscd.
%prep
%setup -q
%build
%configure --libdir=/%{_lib} --disable-static --with-pic
%{__make} %{?_smp_mflags}
%check
make check
%install
make install DESTDIR=$RPM_BUILD_ROOT
%{__mkdir_p} %{buildroot}%{_libdir}
%{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/%{name}.so) %{buildroot}%{_libdir}/%{name}.so
%{__rm} -v %{buildroot}/%{_lib}/%{name}.{so,la}
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc COPYING.LIB README NEWS
/%{_lib}/libnscd.so.*
%files devel
%defattr(-,root,root)
%{_includedir}/*.h
%{_libdir}/libnscd.so
%{_mandir}/man3/nscd_flush_cache.3*
%changelog