2011-02-04 20:06:37 +01:00
|
|
|
#
|
|
|
|
# spec file for package libmemcached
|
|
|
|
#
|
|
|
|
# Copyright (c) 2011 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-02-04 20:06:31 +01:00
|
|
|
Name: libmemcached
|
|
|
|
# List of additional build dependencies
|
|
|
|
BuildRequires: gcc-c++ memcached
|
|
|
|
%if 0%{?suse_version} > 1020
|
|
|
|
BuildRequires: fdupes
|
|
|
|
%endif
|
|
|
|
Version: 0.30
|
|
|
|
Release: 1
|
|
|
|
License: BSD
|
|
|
|
# http://download.tangent.org/libmemcached-%{version}.tar.gz
|
|
|
|
Source: %{name}-%{version}.tar.bz2
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Summary: Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
(http://danga.com/memcached). It has been designed to be light on
|
|
|
|
memory usage, thread safe, and provide full access to server side
|
|
|
|
methods.
|
|
|
|
|
|
|
|
%package -n libmemcached2
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Summary: Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
|
|
|
|
%description -n libmemcached2
|
|
|
|
Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
(http://danga.com/memcached). It has been designed to be light on
|
|
|
|
memory usage, thread safe, and provide full access to server side
|
|
|
|
methods.
|
|
|
|
|
|
|
|
%package -n libmemcachedutil0
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Summary: Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
|
|
|
|
%description -n libmemcachedutil0
|
|
|
|
Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
(http://danga.com/memcached). It has been designed to be light on
|
|
|
|
memory usage, thread safe, and provide full access to server side
|
|
|
|
methods.
|
|
|
|
|
|
|
|
The libmemcachedutil library contains utility functions used by
|
|
|
|
libmemcached.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Group: Development/Libraries/C and C++
|
2011-02-04 20:06:37 +01:00
|
|
|
Requires: %{name} = %{version} libmemcached2 = %{version} glibc-devel
|
2011-10-18 14:19:54 +02:00
|
|
|
Requires: libmemcachedutil0 = %version
|
2011-02-04 20:06:31 +01:00
|
|
|
Summary: Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Libmemcached is a C and C++ client library to the memcached server
|
|
|
|
(http://danga.com/memcached). It has been designed to be light on
|
|
|
|
memory usage, thread safe, and provide full access to server side
|
|
|
|
methods.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --with-memcached=%{_sbindir}/memcached --disable-static --with-pic
|
2011-10-18 14:19:54 +02:00
|
|
|
make %{?_smp_mflags}
|
2011-02-04 20:06:31 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
%makeinstall
|
|
|
|
%__rm -f %{buildroot}%{_libdir}/*.la
|
|
|
|
%if 0%{?suse_version} > 1020
|
|
|
|
# create symlinks for man pages
|
|
|
|
%fdupes -s %{buildroot}%{_mandir}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
#%check
|
|
|
|
#%__make check
|
|
|
|
|
|
|
|
%post -n libmemcached2 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libmemcached2 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%post -n libmemcachedutil0 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libmemcachedutil0 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/memcat
|
|
|
|
%{_bindir}/memcp
|
|
|
|
%{_bindir}/memdump
|
|
|
|
%{_bindir}/memerror
|
|
|
|
%{_bindir}/memflush
|
|
|
|
%{_bindir}/memrm
|
|
|
|
%{_bindir}/memslap
|
|
|
|
%{_bindir}/memstat
|
|
|
|
%doc %{_mandir}/man1/mem*.1*
|
|
|
|
|
|
|
|
%files -n libmemcached2
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libmemcached.so.2
|
|
|
|
%{_libdir}/libmemcached.so.2.*.*
|
|
|
|
|
|
|
|
%files -n libmemcachedutil0
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libmemcachedutil.so.0
|
|
|
|
%{_libdir}/libmemcachedutil.so.0.*.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%dir %{_includedir}/libmemcached
|
|
|
|
%{_includedir}/libmemcached/*
|
|
|
|
%{_libdir}/pkgconfig/libmemcached.pc
|
|
|
|
%{_libdir}/libmemcached.so
|
|
|
|
%{_libdir}//libmemcachedutil.so
|
|
|
|
%{_mandir}/man3/*.3*
|
|
|
|
|
|
|
|
%changelog
|