]> git.pld-linux.org Git - packages/apr-util.git/blob - apr-util.spec
- rel. 2
[packages/apr-util.git] / apr-util.spec
1
2 %bcond_without  ldap    # without LDAP support
3
4 Summary:        A companion library to Apache Portable Runtime
5 Summary(pl):    Biblioteka towarzysz±ca Apache Portable Runtime
6 Name:           apr-util
7 Version:        0.9.5
8 Release:        2
9 Epoch:          1
10 License:        Apache
11 Group:          Libraries
12 Source0:        http://www.apache.org/dist/apr/%{name}-0.9.4.tar.gz
13 # Source0-md5:  909ff60d9efb3f158d33e4569af57874
14 Patch0:         %{name}-link.patch
15 Patch1:         %{name}-0.9.4_0.9.5.patch
16 URL:            http://apr.apache.org/
17 BuildRequires:  apr-devel >= 1:0.9.4
18 BuildRequires:  autoconf
19 BuildRequires:  db-devel
20 BuildRequires:  expat-devel
21 BuildRequires:  gdbm-devel
22 BuildRequires:  libtool
23 %{?with_ldap:BuildRequires:     openldap-devel}
24 Requires:       apr >= 1:0.9.4
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %define         _includedir     /usr/include/apr-util
28
29 %description
30 A companion library to Apache Portable Runtime.
31
32 %description -l pl
33 Biblioteka towarzysz±ca dla biblioteki Apache Portable Runtime
34 (przeno¶nej biblioteki uruchomieniowej).
35
36 %package devel
37 Summary:        Header files and development documentation for apr-util
38 Summary(pl):    Pliki nag³ówkowe i dokumentacja programisty do apr-util
39 Group:          Development/Libraries
40 Requires:       %{name} = %{epoch}:%{version}-%{release}
41 Requires:       apr-devel >= 1:0.9.4
42 Requires:       db-devel
43 Requires:       expat-devel
44 Requires:       gdbm-devel
45 %{?with_ldap:Requires:  openldap-devel}
46
47 %description devel
48 Header files and development documentation for apr-util.
49
50 %description devel -l pl
51 Pliki nag³ówkowe i dokumentacja programisty do apr-util.
52
53 %package static
54 Summary:        Static apr-util library
55 Summary(pl):    Statyczna biblioteka apr-util
56 Group:          Development/Libraries
57 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
58 Conflicts:      apr-static < 1:0.9
59
60 %description static
61 Static apr-util library.
62
63 %description static -l pl
64 Statyczna biblioteka apr-util.
65
66 %prep
67 %setup -q -n %{name}-0.9.4
68 %patch0 -p1
69 %patch1 -p1
70
71 %build
72 ./buildconf \
73         --with-apr=%{_datadir}/apr
74 %configure \
75         --with-apr=%{_bindir}/apr-config \
76 %{?with_ldap:   --with-ldap} \
77 %{?with_ldap:   --with-ldap-include=%{_prefix}/include} \
78 %{?with_ldap:   --with-ldap-lib=%{_libdir}} \
79         --with-iconv=%{_prefix}
80 %{__make}
81
82 %install
83 rm -rf $RPM_BUILD_ROOT
84
85 %{__make} install \
86         DESTDIR=$RPM_BUILD_ROOT
87
88 %clean
89 rm -rf $RPM_BUILD_ROOT
90
91 %post   -p /sbin/ldconfig
92 %postun -p /sbin/ldconfig
93
94 %files
95 %defattr(644,root,root,755)
96 %doc CHANGES STATUS
97 %attr(755,root,root) %{_libdir}/lib*.so.*.*
98
99 %files devel
100 %defattr(644,root,root,755)
101 %attr(755,root,root) %{_bindir}/*
102 %attr(755,root,root) %{_libdir}/lib*.so
103 %{_libdir}/lib*.la
104 %{_libdir}/aprutil.exp
105 %{_includedir}
106
107 %files static
108 %defattr(644,root,root,755)
109 %{_libdir}/lib*.a
This page took 0.071585 seconds and 3 git commands to generate.