]> git.pld-linux.org Git - packages/apr-util.git/blob - apr-util.spec
- move requirements to the right place
[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:        0.4
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:       gdbm-devel
43 %{?with_ldap:Requires:  openldap-devel}
44
45 %description devel
46 Header files and development documentation for apr-util.
47
48 %description devel -l pl
49 Pliki nag³ówkowe i dokumentacja programisty do apr-util.
50
51 %package static
52 Summary:        Static apr-util library
53 Summary(pl):    Statyczna biblioteka apr-util
54 Group:          Development/Libraries
55 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
56 Conflicts:      apr-static < 1:0.9
57
58 %description static
59 Static apr-util library.
60
61 %description static -l pl
62 Statyczna biblioteka apr-util.
63
64 %prep
65 %setup -q -n %{name}-0.9.4
66 %patch0 -p1
67 %patch1 -p1
68
69 %build
70 ./buildconf \
71         --with-apr=%{_datadir}/apr
72 %configure \
73         --with-apr=%{_bindir}/apr-config \
74 %{?with_ldap:   --with-ldap} \
75 %{?with_ldap:   --with-ldap-include=%{_prefix}/include} \
76 %{?with_ldap:   --with-ldap-lib=%{_libdir}} \
77         --with-iconv=%{_prefix}
78 %{__make}
79
80 %install
81 rm -rf $RPM_BUILD_ROOT
82
83 %{__make} install \
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 CHANGES STATUS
95 %attr(755,root,root) %{_libdir}/lib*.so.*.*
96
97 %files devel
98 %defattr(644,root,root,755)
99 %attr(755,root,root) %{_bindir}/*
100 %attr(755,root,root) %{_libdir}/lib*.so
101 %{_libdir}/lib*.la
102 %{_libdir}/aprutil.exp
103 %{_includedir}
104
105 %files static
106 %defattr(644,root,root,755)
107 %{_libdir}/lib*.a
This page took 0.062297 seconds and 3 git commands to generate.