]> git.pld-linux.org Git - packages/libsoup.git/blob - libsoup.spec
- updated to 1.99.14-20030315 snap
[packages/libsoup.git] / libsoup.spec
1
2 %define _snap 20030315
3
4 Summary:        SOAP (Simple Object Access Protocol) implementation in C
5 Summary(pl):    Implementacja w C SOAP (Simple Object Access Protocol)
6 Name:           libsoup
7 Version:        1.99.14
8 Release:        0.%{_snap}.1
9 License:        LGPL
10 Group:          X11/Libraries
11 Source0:        %{name}-%{version}-%{_snap}.tar.bz2
12 Patch0:         %{name}-build_doc.patch
13 URL:            http://www.gnome.org/
14 BuildRequires:  autoconf
15 BuildRequires:  automake
16 BuildRequires:  glib2-devel
17 BuildRequires:  gtk-doc
18 BuildRequires:  libtool
19 BuildRequires:  openssl-devel >= 0.9.7
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 It provides an queued asynchronous callback-based mechanism for
24 sending and servicing SOAP requests, and a WSDL (Web Service
25 Definition Language) to C compiler which generates client stubs and
26 server skeletons for easily calling and implementing SOAP methods.
27
28 %description -l pl
29 Pakiet dostarcza interfejs kolejkowalnego, asynchronicznego mechanizmu
30 do wysy³ania i serwowania ¿±dañ SOAP oraz WSDL (Web Service Definition
31 Language) dla kompilatora C, który generuje klienckie stub i szkielety
32 serwerów dla ³atwego wywo³ywania i implementowania metod SOAP.
33
34 %package devel
35 Summary:        Include files etc to develop SOAP applications
36 Summary(pl):    Pliki nag³ówkowe, dokumentacja dla SOAP
37 Group:          X11/Development/Libraries
38 Requires:       %{name} = %{version}
39
40 %description devel
41 Header files, etc you can use to develop SOAP applications.
42
43 %description devel -l pl
44 Pliki nag³ówkowe itp. Jednym s³owem wszystko czego potrzebujesz aby
45 samemu tworzyæ sobie aplikacje korzystaj±ce z SOAP.
46
47 %package static
48 Summary:        SOAP static libraries
49 Summary(pl):    Biblioteki statyczne SOAP
50 Group:          X11/Development/Libraries
51 Requires:       %{name}-devel = %{version}
52
53 %description static
54 SOAP static libraries.
55
56 %description static -l pl
57 Biblioteki statyczne SOAP.
58
59 %prep
60 %setup  -q
61 %patch0 -p1
62
63 %build
64 rm -f missing
65 %{__libtoolize}
66 %{__aclocal}
67 %{__autoheader}
68 %{__autoconf}
69 %{__automake}
70
71 %configure \
72         --enable-ssl \
73         --enable-gtk-doc \
74         --with-html-dir=%{_gtkdocdir}
75
76 %{__make}
77
78 %install
79 rm -rf $RPM_BUILD_ROOT
80
81 %{__make} install \
82         pkgconfigdir=%{_pkgconfigdir} \
83         m4datadir=%{_aclocaldir} \
84         DESTDIR=$RPM_BUILD_ROOT
85
86 %clean
87 rm -rf $RPM_BUILD_ROOT
88
89 %post   -p /sbin/ldconfig
90 %postun -p /sbin/ldconfig
91
92 %files
93 %defattr(644,root,root,755)
94 %doc AUTHORS ChangeLog README TODO
95 %attr(755,root,root) %{_libdir}/lib*.so.*.*
96 %attr(755,root,root) %{_libdir}/libsoup-ssl-proxy
97
98 %files devel
99 %defattr(644,root,root,755)
100 %attr(755,root,root) %{_libdir}/lib*.so
101 %{_libdir}/lib*.la
102 %{_includedir}/*
103 %{_gtkdocdir}/*
104 %{_pkgconfigdir}/*
105
106 %files static
107 %defattr(644,root,root,755)
108 %{_libdir}/lib*.a
This page took 0.55828 seconds and 4 git commands to generate.