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