2010-09-08 09:21:57 +00:00
|
|
|
#
|
2011-07-18 11:51:13 +00:00
|
|
|
# spec file for package xmmlrpc-c (Version 1.25.07)
|
2010-09-08 09:21:57 +00:00
|
|
|
#
|
|
|
|
|
# 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/
|
|
|
|
|
#
|
|
|
|
|
|
2010-10-30 18:14:12 +00:00
|
|
|
# vim: set sw=4 ts=4 et:
|
2009-05-09 18:43:02 +00:00
|
|
|
# norootforbuild
|
|
|
|
|
|
|
|
|
|
%define soname 3
|
2011-07-18 11:51:13 +00:00
|
|
|
%define soname_cpp 7
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
Name: xmlrpc-c
|
2011-07-18 11:51:13 +00:00
|
|
|
Version: 1.25.07
|
2010-09-08 09:21:57 +00:00
|
|
|
Release: 1
|
|
|
|
|
License: BSD
|
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
|
URL: http://xmlrpc-c.sourceforge.net
|
|
|
|
|
# http://prdownloads.sourceforge.net/xmlrpc-c/xmlrpc-c-%{version}.tgz
|
2011-11-21 17:00:16 +00:00
|
|
|
Source: %{name}-%{version}.tar.bz2
|
2011-07-18 11:51:13 +00:00
|
|
|
Patch0: %{name}-default-constructor.patch
|
2011-11-21 17:00:16 +00:00
|
|
|
Patch1: %{name}-no-curltypes-incl.patch
|
2010-10-30 18:14:12 +00:00
|
|
|
Source99: %{name}-rpmlintrc
|
2010-09-08 09:21:57 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
BuildRequires: autoconf automake file gcc-c++ libtool
|
|
|
|
|
%if 0%{?suse_version} >= 1020
|
|
|
|
|
BuildRequires: libcurl-devel
|
|
|
|
|
%else
|
|
|
|
|
BuildRequires: curl-devel
|
|
|
|
|
%endif
|
|
|
|
|
BuildRequires: libxml2-devel libstdc++-devel
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2007-06-12 10:13:48 +00:00
|
|
|
%description
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2007-06-12 10:13:48 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2009-05-09 18:43:02 +00:00
|
|
|
%package -n libxmlrpc-c-devel
|
2008-08-04 15:06:15 +00:00
|
|
|
Group: Development/Libraries/C and C++
|
2011-07-18 11:51:13 +00:00
|
|
|
Requires: libxmlrpc++%{soname_cpp} = %{version}
|
|
|
|
|
Requires: libxmlrpc_client++%{soname_cpp} = %{version}
|
|
|
|
|
Requires: libxmlrpc_cpp%{soname_cpp} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server++%{soname_cpp} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server_cgi++%{soname_cpp} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server_abyss++%{soname_cpp} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server_pstream++%{soname_cpp} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server_packetsocket%{soname_cpp} = %{version}
|
2010-09-08 09:21:57 +00:00
|
|
|
Requires: libxmlrpc%{soname} = %{version}
|
|
|
|
|
Requires: libxmlrpc_client%{soname} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server%{soname} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server_abyss%{soname} = %{version}
|
|
|
|
|
Requires: libxmlrpc_server_cgi%{soname} = %{version}
|
|
|
|
|
Requires: libxmlrpc_abyss%{soname} = %{version}
|
|
|
|
|
Requires: libxmlrpc_util%{soname} = %{version}
|
2009-09-28 07:19:39 +00:00
|
|
|
Requires: libxml2-devel
|
2009-05-09 18:43:02 +00:00
|
|
|
Summary: Development package for xmlrpc-c
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2009-05-09 18:43:02 +00:00
|
|
|
%description -n libxmlrpc-c-devel
|
2007-06-12 10:13:48 +00:00
|
|
|
Files needed for software development using xmlrpc-c.
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%package -n libxmlrpc%{soname}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: A library implementing XML-based remote procedure calls
|
|
|
|
|
#Requires: libxmlrpc_util = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description -n libxmlrpc%{soname}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%package -n libxmlrpc++%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: A library implementing XML-based remote procedure calls
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%description -n libxmlrpc++%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%package -n libxmlrpc_client%{soname}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
#Requires: libxmlrpc_util = %{version}-%{release}
|
|
|
|
|
#Requires: libxmlrpc = %{version}-%{release}
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%description -n libxmlrpc_client%{soname}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2009-05-09 18:43:02 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%package -n libxmlrpc_client++%{soname_cpp}
|
2010-09-08 09:21:57 +00:00
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%description -n libxmlrpc_client++%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%package -n libxmlrpc_cpp%{soname_cpp}
|
2010-09-08 09:21:57 +00:00
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%description -n libxmlrpc_cpp%{soname_cpp}
|
2010-09-08 09:21:57 +00:00
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2009-05-09 18:43:02 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%package -n libxmlrpc_abyss%{soname}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
#Requires: libxmlrpc_util = %{version}-%{release}
|
|
|
|
|
#Requires: libxmlrpc = %{version}-%{release}
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%description -n libxmlrpc_abyss%{soname}
|
2009-05-09 18:43:02 +00:00
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%package -n libxmlrpc_server%{soname}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
#Requires: libxmlrpc_util = %{version}-%{release}
|
|
|
|
|
#Requires: libxmlrpc = %{version}-%{release}
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%description -n libxmlrpc_server%{soname}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2009-05-09 18:43:02 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%package -n libxmlrpc_server++%{soname_cpp}
|
2010-09-08 09:21:57 +00:00
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%description -n libxmlrpc_server++%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%package -n libxmlrpc_server_abyss%{soname}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
#Requires: libxmlrpc_util = %{version}-%{release}
|
|
|
|
|
#Requires: libxmlrpc_server = %{version}-%{release}
|
|
|
|
|
#Requires: libxmlrpc_server_abyss = %{version}-%{release}
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%description -n libxmlrpc_server_abyss%{soname}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2009-05-09 18:43:02 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%package -n libxmlrpc_server_abyss++%{soname_cpp}
|
2010-09-08 09:21:57 +00:00
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%description -n libxmlrpc_server_abyss++%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%package -n libxmlrpc_server_cgi%{soname}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
#Requires: libxmlrpc_util = %{version}-%{release}
|
|
|
|
|
#Requires: libxmlrpc_server = %{version}-%{release}
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%description -n libxmlrpc_server_cgi%{soname}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
|
|
|
|
%package -n libxmlrpc_util%{soname}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
|
|
|
|
|
%description -n libxmlrpc_util%{soname}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
2009-09-28 07:19:39 +00:00
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
|
|
|
|
%package -n libxmlrpc_server_cgi++%{soname_cpp}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
|
|
|
|
|
%description -n libxmlrpc_server_cgi++%{soname_cpp}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
|
|
|
|
%package -n libxmlrpc_server_pstream++%{soname_cpp}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
|
|
|
|
|
%description -n libxmlrpc_server_pstream++%{soname_cpp}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
|
|
|
|
|
|
|
|
|
%package -n libxmlrpc_packetsocket%{soname_cpp}
|
|
|
|
|
Group: System/Libraries
|
|
|
|
|
Summary: Library implementing XML-based Remote Procedure Calls
|
|
|
|
|
|
|
|
|
|
%description -n libxmlrpc_packetsocket%{soname_cpp}
|
|
|
|
|
XML-RPC is a lightweight RPC protocol based on XML and HTTP. This
|
|
|
|
|
package is used by XML-RPC clients and servers written in C and C++.
|
|
|
|
|
|
2007-06-12 10:13:48 +00:00
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Eric Kidd <eric.kidd@pobox.com>
|
2007-03-14 15:08:23 +00:00
|
|
|
|
|
|
|
|
%prep
|
2007-06-05 21:03:54 +00:00
|
|
|
%setup -q
|
2011-07-18 11:51:13 +00:00
|
|
|
%patch0
|
2011-11-21 17:00:16 +00:00
|
|
|
%if 0%{?suse_version} >= 1040
|
|
|
|
|
%patch1
|
|
|
|
|
%endif
|
2010-09-08 09:21:57 +00:00
|
|
|
|
|
|
|
|
%__rm -rf examples/.cvsignore examples/cpp/.cvsignore
|
2007-03-14 15:08:23 +00:00
|
|
|
|
|
|
|
|
%build
|
2010-09-08 09:21:57 +00:00
|
|
|
export CFLAGS_PERSONAL="%{optflags}"
|
2011-07-18 11:51:13 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%configure \
|
|
|
|
|
--enable-libxml2-backend \
|
2011-07-18 11:51:13 +00:00
|
|
|
--enable-shared-libs
|
2010-09-08 09:21:57 +00:00
|
|
|
|
2009-09-28 07:19:39 +00:00
|
|
|
# don't pass -j, breaks build
|
2010-09-08 09:21:57 +00:00
|
|
|
%__make CADD="-fPIC -DPIC"
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
|
2007-03-14 15:08:23 +00:00
|
|
|
%install
|
2009-05-09 18:43:02 +00:00
|
|
|
%makeinstall
|
2011-07-18 11:51:13 +00:00
|
|
|
#%__rm "%{buildroot}%{_libdir}"/*.la
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%__make -C examples clean
|
|
|
|
|
%__make -C examples/cpp clean
|
|
|
|
|
|
|
|
|
|
%post -n libxmlrpc%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%post -n libxmlrpc++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%post -n libxmlrpc_client%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%post -n libxmlrpc_client++%{soname_cpp} -p /sbin/ldconfig
|
|
|
|
|
%post -n libxmlrpc_cpp%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%post -n libxmlrpc_abyss%{soname} -p /sbin/ldconfig
|
|
|
|
|
%post -n libxmlrpc_server%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%post -n libxmlrpc_server++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%post -n libxmlrpc_server_abyss%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%post -n libxmlrpc_server_abyss++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%post -n libxmlrpc_server_cgi%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%post -n libxmlrpc_server_cgi++%{soname_cpp} -p /sbin/ldconfig
|
|
|
|
|
%post -n libxmlrpc_server_pstream++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%post -n libxmlrpc_util%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%post -n libxmlrpc_packetsocket%{soname_cpp} -p /sbin/ldconfig
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%postun -n libxmlrpc%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%postun -n libxmlrpc++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%postun -n libxmlrpc_client%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%postun -n libxmlrpc_client++%{soname_cpp} -p /sbin/ldconfig
|
|
|
|
|
%postun -n libxmlrpc_cpp%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%postun -n libxmlrpc_abyss%{soname} -p /sbin/ldconfig
|
|
|
|
|
%postun -n libxmlrpc_server%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%postun -n libxmlrpc_server++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%postun -n libxmlrpc_server_abyss%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%postun -n libxmlrpc_server_abyss++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%postun -n libxmlrpc_server_cgi%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%postun -n libxmlrpc_server_cgi++%{soname_cpp} -p /sbin/ldconfig
|
|
|
|
|
%postun -n libxmlrpc_server_pstream++%{soname_cpp} -p /sbin/ldconfig
|
2010-09-08 09:21:57 +00:00
|
|
|
%postun -n libxmlrpc_util%{soname} -p /sbin/ldconfig
|
2011-07-18 11:51:13 +00:00
|
|
|
%postun -n libxmlrpc_packetsocket%{soname_cpp} -p /sbin/ldconfig
|
2007-03-14 15:08:23 +00:00
|
|
|
|
|
|
|
|
%clean
|
2010-09-08 09:21:57 +00:00
|
|
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
2009-05-09 18:43:02 +00:00
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%doc tools/xmlrpc/xmlrpc.html tools/xmlrpc_transport/xmlrpc_transport.html
|
2011-07-18 11:51:13 +00:00
|
|
|
#%{_bindir}/xmlrpc
|
|
|
|
|
#%{_bindir}/xmlrpc_transport
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2009-05-09 18:43:02 +00:00
|
|
|
%files -n libxmlrpc-c-devel
|
|
|
|
|
%defattr(-, root, root)
|
2010-09-08 09:21:57 +00:00
|
|
|
%doc examples
|
2009-05-09 18:43:02 +00:00
|
|
|
%{_bindir}/xmlrpc-c-config
|
|
|
|
|
%{_libdir}/*.so
|
2009-09-28 20:22:37 +00:00
|
|
|
%{_libdir}/*.a
|
2009-05-09 18:43:02 +00:00
|
|
|
%{_includedir}/XmlRpcCpp.h
|
|
|
|
|
%{_includedir}/xmlrpc*
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%files -n libxmlrpc%{soname}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc.so.%{soname}
|
|
|
|
|
%{_libdir}/libxmlrpc.so.%{soname}.*
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%files -n libxmlrpc++%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
%defattr(-, root, root)
|
2011-07-18 11:51:13 +00:00
|
|
|
%{_libdir}/libxmlrpc++.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc++.so.%{soname_cpp}.*
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%files -n libxmlrpc_client%{soname}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_client.so.%{soname}
|
|
|
|
|
%{_libdir}/libxmlrpc_client.so.%{soname}.*
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%files -n libxmlrpc_client++%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
%defattr(-, root, root)
|
2011-07-18 11:51:13 +00:00
|
|
|
%{_libdir}/libxmlrpc_client++.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc_client++.so.%{soname_cpp}.*
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%files -n libxmlrpc_abyss%{soname}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_abyss.so.%{soname}
|
|
|
|
|
%{_libdir}/libxmlrpc_abyss.so.%{soname}.*
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%files -n libxmlrpc_cpp%{soname_cpp}
|
2009-05-09 18:43:02 +00:00
|
|
|
%defattr(-, root, root)
|
2011-07-18 11:51:13 +00:00
|
|
|
%{_libdir}/libxmlrpc_cpp.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc_cpp.so.%{soname_cpp}.*
|
2009-05-09 18:43:02 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%files -n libxmlrpc_server%{soname}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_server.so.%{soname}
|
|
|
|
|
%{_libdir}/libxmlrpc_server.so.%{soname}.*
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%files -n libxmlrpc_server++%{soname_cpp}
|
2007-06-12 10:13:48 +00:00
|
|
|
%defattr(-, root, root)
|
2011-07-18 11:51:13 +00:00
|
|
|
%{_libdir}/libxmlrpc_server++.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc_server++.so.%{soname_cpp}.*
|
2007-03-14 15:08:23 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%files -n libxmlrpc_server_abyss%{soname}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_server_abyss.so.%{soname}
|
|
|
|
|
%{_libdir}/libxmlrpc_server_abyss.so.%{soname}.*
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%files -n libxmlrpc_server_abyss++%{soname_cpp}
|
2007-06-12 10:13:48 +00:00
|
|
|
%defattr(-, root, root)
|
2011-07-18 11:51:13 +00:00
|
|
|
%{_libdir}/libxmlrpc_server_abyss++.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc_server_abyss++.so.%{soname_cpp}.*
|
2007-06-12 10:13:48 +00:00
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%files -n libxmlrpc_server_cgi%{soname}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_server_cgi.so.%{soname}
|
|
|
|
|
%{_libdir}/libxmlrpc_server_cgi.so.%{soname}.*
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%files -n libxmlrpc_server_cgi++%{soname_cpp}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_server_cgi++.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc_server_cgi++.so.%{soname_cpp}.*
|
|
|
|
|
|
|
|
|
|
%files -n libxmlrpc_server_pstream++%{soname_cpp}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_server_pstream++.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc_server_pstream++.so.%{soname_cpp}.*
|
|
|
|
|
|
2010-09-08 09:21:57 +00:00
|
|
|
%files -n libxmlrpc_util%{soname}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_util.so.%{soname}
|
|
|
|
|
%{_libdir}/libxmlrpc_util.so.%{soname}.*
|
|
|
|
|
|
2011-07-18 11:51:13 +00:00
|
|
|
%files -n libxmlrpc_packetsocket%{soname_cpp}
|
|
|
|
|
%defattr(-, root, root)
|
|
|
|
|
%{_libdir}/libxmlrpc_packetsocket.so.%{soname_cpp}
|
|
|
|
|
%{_libdir}/libxmlrpc_packetsocket.so.%{soname_cpp}.*
|
|
|
|
|
|