]> git.pld-linux.org Git - packages/apr.git/blob - apr.spec
- updated to 1.1.1
[packages/apr.git] / apr.spec
1 Summary:        Apache Portable Runtime
2 Summary(pl):    Apache Portable Runtime - przeno¶na biblioteka uruchomieniowa
3 Name:           apr
4 Version:        1.1.1
5 Release:        1
6 Epoch:          1
7 License:        Apache v2.0
8 Group:          Libraries
9 Source0:        http://www.apache.org/dist/apr/%{name}-%{version}.tar.gz
10 # Source0-md5:  e153fda2df2338250548448c7a6e3d59
11 Patch0:         %{name}-link.patch
12 Patch1:         %{name}-metuxmpm.patch
13 # EPOLL PATCH: TO BE DROPPED AFTER AC
14 Patch2:         %{name}-no-epoll.patch
15 URL:            http://apr.apache.org/
16 BuildRequires:  autoconf >= 2.13
17 BuildRequires:  automake
18 BuildRequires:  libtool >= 1.3.3
19 BuildRequires:  perl-base
20 BuildRequires:  python
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %define         _includedir     /usr/include/apr
24 %define         _datadir        /usr/share/apr
25
26 %description
27 The mission of the Apache Portable Runtime (APR) project is to create
28 and maintain software libraries that provide a predictable and
29 consistent interface to underlying platform-specific implementations.
30 The primary goal is to provide an API to which software developers may
31 code and be assured of predictable if not identical behaviour
32 regardless of the platform on which their software is built, relieving
33 them of the need to code special-case conditions to work around or
34 take advantage of platform-specific deficiencies or features.
35
36 %description -l pl
37 Celem projektu APR (Apache Portable Runtime) jest stworzenie i
38 utrzymywanie bibliotek dostarczaj±cych przewidywalnego i spójnego
39 interfejsu do le¿±cych u podstaw implementacji zale¿nych od platformy.
40 G³ównym celem jest dostarczenie API, którego mog± u¿ywaæ programi¶ci
41 maj±c pewno¶æ, ¿e zachowuje siê w sposób przewidywalny, je¶li nie
42 identyczny, niezale¿nie od platformy na jakiej oprogramowanie jest
43 budowane oraz bez potrzeby kodowania specjalnych warunków do
44 obchodzenia lub wykorzystywania specyficznych dla platform ró¿nic lub
45 mo¿liwo¶ci.
46
47 %package devel
48 Summary:        Header files and development documentation for apr
49 Summary(pl):    Pliki nag³ówkowe i dokumentacja programisty do apr
50 Group:          Development/Libraries
51 Requires:       %{name} = %{epoch}:%{version}-%{release}
52
53 %description devel
54 Header files and development documentation for apr.
55
56 %description devel -l pl
57 Pliki nag³ówkowe i dokumentacja programisty do apr.
58
59 %package static
60 Summary:        Static apr library
61 Summary(pl):    Statyczna biblioteka apr
62 Group:          Development/Libraries
63 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
64
65 %description static
66 Static apr library.
67
68 %description static -l pl
69 Statyczna biblioteka apr.
70
71 %prep
72 %setup -q
73 %patch0 -p1
74 %patch1 -p1
75 %patch2 -p1
76
77 %build
78 install /usr/share/automake/config.* build
79 ./buildconf
80 %configure \
81         --with-devrandom=/dev/urandom \
82 %ifarch %{ix86}
83 %ifnarch i386
84         --enable-nonportable-atomics \
85 %endif
86 %endif
87         --enable-threads
88 %{__make}
89
90 %install
91 rm -rf $RPM_BUILD_ROOT
92
93 %{__make} install \
94         DESTDIR=$RPM_BUILD_ROOT
95
96 ln -sf %{_bindir}/libtool $RPM_BUILD_ROOT%{_datadir}/libtool
97
98 mv -f $RPM_BUILD_ROOT%{_datadir}/build-1 $RPM_BUILD_ROOT%{_datadir}/build
99 install build/{*apr*.m4,*.awk,*.sh,config.*} $RPM_BUILD_ROOT%{_datadir}/build
100 ln -sf build $RPM_BUILD_ROOT%{_datadir}/build-1
101
102 %{__perl} -pi -e 's@^(APR_SOURCE_DIR=).*@$1"%{_datadir}"@' $RPM_BUILD_ROOT%{_bindir}/apr-config
103 %{__perl} -pi -e 's@^(apr_builddir|apr_builders)=.*@$1=%{_datadir}/build-1@' \
104         $RPM_BUILD_ROOT%{_datadir}/build/apr_rules.mk
105
106 %clean
107 rm -rf $RPM_BUILD_ROOT
108
109 %post   -p /sbin/ldconfig
110 %postun -p /sbin/ldconfig
111
112 %files
113 %defattr(644,root,root,755)
114 %doc CHANGES docs/*.html
115 %attr(755,root,root) %{_libdir}/lib*.so.*.*
116
117 %files devel
118 %defattr(644,root,root,755)
119 %attr(755,root,root) %{_bindir}/*
120 %attr(755,root,root) %{_libdir}/lib*.so
121 %{_libdir}/lib*.la
122 %{_libdir}/apr.exp
123 %{_includedir}
124 %dir %{_datadir}
125 %dir %{_datadir}/build
126 %{_datadir}/build/*.mk
127 %{_datadir}/build/*.m4
128 %{_datadir}/build/*.awk
129 %attr(755,root,root) %{_datadir}/build/config.*
130 %attr(755,root,root) %{_datadir}/build/*.sh
131 %attr(755,root,root) %{_datadir}/build/libtool
132 %{_datadir}/build-1
133 %{_pkgconfigdir}/apr-1.pc
134
135 %files static
136 %defattr(644,root,root,755)
137 %{_libdir}/lib*.a
This page took 0.075301 seconds and 3 git commands to generate.