]> git.pld-linux.org Git - packages/subversion.git/blame - subversion.spec
up to 1.10.0
[packages/subversion.git] / subversion.spec
CommitLineData
8d40da51 1#
bab73684 2# Conditional build:
65c1d4bd 3%bcond_with net_client_only # build only net client
298f7114 4%bcond_without swig # disable bindings generation with Swig
5b21aa20
ER
5%bcond_without python # build without Python bindings (broken)
6%bcond_without csvn # build Python csvn bindings
7%bcond_without perl # build without Perl bindings
96b4c0b0 8%bcond_without ruby # build without Ruby bindings
298f7114 9%bcond_without apache # build without Apache support (webdav, etc)
15e0d824 10%bcond_without java # build without javahl support (Java high-level bindings)
3b981cf4 11%bcond_with tests # don't perform "make check"
65f2befa 12%bcond_without kwallet # build without kde4 wallet support
86250f0b 13%bcond_without kde # build without kde4 support (alias for kwallet)
bfb248d0 14%bcond_without gnome # build without gnome keyring support
86250f0b 15%bcond_without db # disable Subversion Berkeley DB based filesystem library
28b85877 16%bcond_with db6 # allow BDB6 (not tested by upstream, released on AGPL)
12c96b58 17
15e0d824 18# for AC: --without csvn,gnome,java,kde,ruby
355bd683 19
298f7114
ER
20%if %{with net_client_only}
21%undefine with_apache
22%undefine with_db
23%undefine with_swig
15e0d824 24%undefine with_java
eeba69cd
ER
25%undefine with_csvn
26%undefine with_gnome
27%undefine with_kde
298f7114
ER
28%endif
29
30%if %{without swig}
31%undefine with_perl
32%undefine with_python
33%undefine with_ruby
34%endif
12c96b58 35
d9d66e02 36%if %{without kde}
3c200272
JB
37%undefine with_kwallet
38%endif
298f7114
ER
39
40%if %{without python} && %{without perl} && %{without ruby}
e2c40ca2 41%undefine with_swig
298f7114
ER
42%endif
43
44%define apxs /usr/sbin/apxs
45%define pdir SVN
46%define pnam _Core
47
0421a1ed 48%{?with_perl:%include /usr/lib/rpm/macros.perl}
67cb9518 49Summary: A Concurrent Versioning system similar to but better than CVS
abe3c421
ER
50Summary(pl.UTF-8): System kontroli wersji podobny, ale lepszy, niż CVS
51Summary(pt_BR.UTF-8): Sistema de versionamento concorrente
93b78127 52Name: subversion
535649a6
JP
53Version: 1.10.0
54Release: 1
8df86594 55License: Apache v2.0
93b78127 56Group: Development/Version Control
8942083b 57Source0: http://www.apache.org/dist/subversion/%{name}-%{version}.tar.bz2
535649a6 58# Source0-md5: 0126847f9e8cb8ed0b90a6a18b203309
93b78127 59Source1: %{name}-dav_svn.conf
65318afa 60Source2: %{name}-authz_svn.conf
b56474ff
AM
61Source3: %{name}-svnserve.init
62Source4: %{name}-svnserve.sysconfig
a510fada
AM
63# current subversion tarball has correct *.swg files
64# but after regeneration these are broken again, so
65# we still need this script
f313e9a9 66Source5: %{name}-convert-typemaps-to-ifdef.py
ed6210a2 67Patch0: %{name}-home_etc.patch
d46e45ba 68Patch1: %{name}-DESTDIR.patch
00664663 69Patch2: %{name}-ruby-datadir-path.patch
1cfe7af2 70Patch3: %{name}-tests.patch
7923efca 71Patch4: x32-libdir.patch
535649a6 72Patch5: %{name}-rdoc.patch
dc8fcc41 73URL: http://subversion.apache.org/
f9c8674f 74%{?with_apache:BuildRequires: apache-devel >= 2.4.14}
8d40da51
JB
75BuildRequires: apr-devel >= 1:1.3
76BuildRequires: apr-util-devel >= 1:1.3
b0a7a5b2 77BuildRequires: autoconf >= 2.59
86250f0b 78BuildRequires: automake
79d8c53c 79BuildRequires: bison
dfeb8a3c 80BuildRequires: cyrus-sasl-devel
86250f0b
JB
81%if %{with kwallet} || %{with gnome}
82BuildRequires: dbus-devel
83%endif
7937f96a 84%{!?with_db6:BuildRequires: db-devel < 6}
b98707c2 85BuildRequires: db-devel >= 4.1.25
93b78127 86BuildRequires: expat-devel
b4f033d9 87BuildRequires: gettext-tools
8d40da51 88%{?with_gnome:BuildRequires: glib2-devel >= 2.0}
65f2befa 89%{?with_kwallet:BuildRequires: kde4-kdelibs-devel}
5f328a6e 90%{?with_gnome:BuildRequires: libgnome-keyring-devel}
86250f0b 91BuildRequires: libmagic-devel
f4e6a380 92BuildRequires: libtool >= 1.4-9
54271075 93BuildRequires: pkgconfig
86250f0b 94%{?with_csvn:BuildRequires: python-ctypesgen}
c01720ea 95BuildRequires: rpm-pythonprov
dd30c674 96BuildRequires: rpmbuild(macros) >= 1.656
a562165a 97BuildRequires: sed >= 4.0
8d40da51
JB
98BuildRequires: serf-devel >= 1.3.4
99BuildRequires: sqlite3-devel >= 3.7.12
a562165a
JB
100BuildRequires: texinfo
101BuildRequires: which
15e0d824 102%if %{with java}
86250f0b
JB
103BuildRequires: jdk >= 1.5
104BuildRequires: libstdc++-devel
105%endif
106%if %{with perl}
107BuildRequires: perl-devel >= 1:5.8.0
108BuildRequires: rpm-perlprov >= 4.1-13
109BuildRequires: swig-perl >= 1.3.24
110%endif
111%if %{with python}
112BuildRequires: python-devel >= 1:2.4
113BuildRequires: swig-python >= 1.3.24
114%endif
115%if %{with ruby}
1d7939c9 116BuildRequires: rpm-rubyprov
38c0314f 117BuildRequires: ruby-devel >= 1:1.8.2
8942083b 118BuildRequires: ruby-irb
86250f0b
JB
119BuildRequires: ruby-rubygems
120BuildRequires: swig-ruby >= 1.3.24
e3ad24ea 121%endif
027f8ebe 122Requires: %{name}-libs = %{version}-%{release}
8b023a9d 123%requires_ge sqlite3
93b78127
AM
124BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
125
f4070f5f 126%define _libexecdir %{_libdir}/svn
1af5e34d
ER
127%define apacheconfdir %(%{apxs} -q SYSCONFDIR 2>/dev/null)/conf.d
128%define apachelibdir %(%{apxs} -q LIBEXECDIR 2>/dev/null)
93b78127 129
f9c8674f 130%define skip_post_check_so libsvn_swig_py-1.so.* libsvn_swig_perl-1.so.* libsvn_fs_x-1.so.*
58f4b627 131
93b78127
AM
132%description
133The goal of the Subversion project is to build a version control
134system that is a compelling replacement for CVS in the open source
135community.
136
137Our goals are:
138- All current CVS features.
139- Directories, renames, and file meta-data are versioned.
140- Symbolic links, etc, are supported
141- Commits are truly atomic.
142- Branching and tagging are cheap (constant time) operations
143- Repeated merges are handled gracefully
144- Support for plug-in client side diff programs
145- Natively client/server
146- Client/server protocol sends diffs in both directions
147- Costs are proportional to change size, not project size
148- Internationalization
149- Progressive multi-lingual support
150
aa59005f 151%description -l pl.UTF-8
93b78127
AM
152Celem projektu Subversion jest stworzenie systemu kontroli wersji jako
153zamiennika dla CVS.
154
155Cele projektu to:
aa59005f 156- Wszystkie aktualne możliwości CVS.
24406120
JB
157- Katalogi, zmiany nazw oraz metadane plików są wersjonowane.
158- Obsługa dowiązań symbolicznych itp.
aa59005f
JR
159- Commity są w pełni atomowe.
160- Branchowanie oraz tagowanie są tanimi (stałymi w czasie) operacjami.
24406120
JB
161- Dobra obsługa powtarzanego łączenia (merge).
162- Obsługa wtyczek diff po stronie klienta.
93b78127 163- Natywny klient/serwer.
aa59005f 164- Klient/Serwer przesyłają diffy w obu kierunkach.
93b78127
AM
165- Koszty proporcjonalne do rozmiaru zmiany, a nie rozmiaru projektu.
166- Internacjonalizacja.
aa59005f 167- Postępujące wsparcie dla wielu języków.
93b78127 168
aa59005f
JR
169%description -l pt_BR.UTF-8
170O objetivo do projeto Subversion é construir um sistema de controle de
171versões que seja um substituto para o CVS (Concurrent Versioning
92066deb 172System) na comunidade opensource, fornecendo grandes melhorias.
173
f4e6a380
AM
174%package libs
175Summary: Subversion libraries and modules
abe3c421 176Summary(pl.UTF-8): Biblioteka subversion oraz ładowalne moduły
f4e6a380 177Group: Libraries
8d40da51
JB
178Requires: apr >= 1:1.3
179Requires: apr-util >= 1:1.3
180Requires: serf >= 1.3.4
53855fbf 181Obsoletes: libsubversion0
f4e6a380
AM
182
183%description libs
184Subversion libraries and modules.
185
aa59005f
JR
186%description libs -l pl.UTF-8
187Biblioteka subversion oraz ładowalne moduły.
f4e6a380 188
93b78127
AM
189%package devel
190Summary: Header files and develpment documentation for subversion
abe3c421
ER
191Summary(pl.UTF-8): Pliki nagłówkowe i dokumetacja do subversion
192Summary(pt_BR.UTF-8): Arquivos de desenvolvimento para o Subversion
93b78127 193Group: Development/Libraries
9cb7e099 194Requires: %{name}-libs = %{version}-%{release}
8d40da51
JB
195Requires: apr-util-devel >= 1:1.3
196Requires: serf-devel >= 1.3.4
12cf252c 197Obsoletes: libsubversion0-devel
93b78127
AM
198
199%description devel
200Header files and develpment documentation for subversion.
201
aa59005f
JR
202%description devel -l pl.UTF-8
203Pliki nagłówkowe i dokumetacja do subversion.
93b78127 204
aa59005f
JR
205%description devel -l pt_BR.UTF-8
206Este pacote provê os arquivos necessários para desenvolvedores
92066deb 207interagirem com o Subversion.
208
93b78127
AM
209%package static
210Summary: Static subversion library
abe3c421
ER
211Summary(pl.UTF-8): Biblioteka statyczna subversion
212Summary(pt_BR.UTF-8): Sistema de versionamento concorrente
93b78127
AM
213Group: Development/Libraries
214Requires: %{name}-devel = %{version}
12cf252c 215Obsoletes: libsubversion0-static-devel
93b78127
AM
216
217%description static
218Static subversion library.
219
aa59005f 220%description static -l pl.UTF-8
93b78127
AM
221Biblioteka statyczna subversion.
222
aa59005f
JR
223%description static -l pt_BR.UTF-8
224Este pacote provê um cliente estático do subversion.
92066deb 225
b56474ff
AM
226%package svnserve
227Summary: Subversion svnserve
abe3c421 228Summary(pl.UTF-8): Subversion svnserve
b56474ff 229Group: Networking/Daemons
3817faf5 230Requires(post,preun): /sbin/chkconfig
93f1d402 231Requires(postun): /usr/sbin/groupdel
232Requires(postun): /usr/sbin/userdel
233Requires(pre): /bin/id
234Requires(pre): /usr/bin/getgid
235Requires(pre): /usr/lib/rpm/user_group.sh
236Requires(pre): /usr/sbin/groupadd
237Requires(pre): /usr/sbin/useradd
238Requires(pre): /usr/sbin/usermod
9cb7e099 239Requires: %{name} = %{version}-%{release}
7b27380f 240Requires: rc-scripts
a1bac09d
241Provides: group(svn)
242Provides: user(svn)
b56474ff
AM
243
244%description svnserve
245Subversion svnserve server.
246
aa59005f 247%description svnserve -l pl.UTF-8
b56474ff
AM
248Serwer subversion svnserve.
249
4bbdbbf8
AM
250%package tools
251Summary: Subversion tools and scripts
abe3c421
ER
252Summary(pl.UTF-8): Narzędzia oraz skrypty dla subversion
253Summary(pt_BR.UTF-8): Módulos python para acessar os recursos do Subversion
4bbdbbf8 254Group: Applications
7b27380f 255Requires: %{name} = %{version}-%{release}
4975bf39 256Requires: python
4bbdbbf8
AM
257Requires: python-subversion = %{version}
258
259%description tools
260Subversion tools and scripts.
261
aa59005f
JR
262%description tools -l pl.UTF-8
263Narzędzia oraz skrypty dla subversion.
4bbdbbf8 264
fe5bb6bb 265%package -n bash-completion-subversion
266Summary: bash completion for subversion
abe3c421 267Summary(pl.UTF-8): Dopełnienia basha dla subversion
fe5bb6bb 268Group: Applications/Shells
e30588c4 269Requires: %{name} = %{version}-%{release}
53855fbf 270Requires: bash-completion
e30588c4 271Conflicts: %{name}-tools <= 1.1.0-0.rc6.1
90e66b00
ER
272%if "%{_rpmversion}" >= "5"
273BuildArch: noarch
274%endif
fe5bb6bb 275
276%description -n bash-completion-subversion
277Bash completion for subversion.
278
aa59005f
JR
279%description -n bash-completion-subversion -l pl.UTF-8
280Dopełnienia basha dla subversion.
fe5bb6bb 281
1cc7453a 282%package -n java-subversion
65c1d4bd
JB
283Summary: Subversion Java bindings
284Summary(pl.UTF-8): Dowiązania do Subversion dla Javy
1cc7453a 285Group: Development/Languages/Java
286Requires: %{name}-libs = %{version}-%{release}
287
288%description -n java-subversion
289This is a set of Java classes which provide the functionality of
290subversion-libs, the Subversion libraries. It is useful if you want
291to, for example, write a Java class that manipulates a Subversion
292repository or working copy. See the 'subversion' package for more
293information.
294
65c1d4bd
JB
295%description -n java-subversion -l pl.UTF-8
296Ten pakiet zawiera zestaw klas Javy udostępniających funkcjonalność
297subversion-libs, czyli bibliotek Subversion. Jest przydatny przy
d46e45ba
AM
298pisaniu klas Javy np. modyfikujących repozytorium Subversion lub kopię
299roboczą. Więcej informacji w pakiecie subversion.
65c1d4bd 300
fa3ff1b2 301%package -n python-subversion
65c1d4bd
JB
302Summary: Subversion Python bindings
303Summary(pl.UTF-8): Dowiązania do Subversion dla Pythona
304Summary(pt_BR.UTF-8): Módulos Python para acessar os recursos do Subversion
f4e6a380 305Group: Development/Languages/Python
9cb7e099 306Requires: %{name}-libs = %{version}-%{release}
4975bf39 307Requires: python
53855fbf 308Obsoletes: subversion-python
f4e6a380 309
fa3ff1b2 310%description -n python-subversion
65c1d4bd 311Subversion Python bindings.
f4e6a380 312
aa59005f 313%description -n python-subversion -l pl.UTF-8
65c1d4bd 314Dowiązania do Subversion dla Pythona.
f4e6a380 315
aa59005f 316%description -n python-subversion -l pt_BR.UTF-8
65c1d4bd 317Módulos Python para acessar os recursos do Subversion.
92066deb 318
137fcafd
AM
319%package -n python-csvn
320Summary: CTypes Subversion Python bindings
321Summary(pl.UTF-8): Dowiązania do Subversion dla Pythona
322Summary(pt_BR.UTF-8): Módulos Python para acessar os recursos do Subversion
323Group: Development/Languages/Python
137fcafd 324Requires: %{name}-libs = %{version}-%{release}
4975bf39 325Requires: python
137fcafd
AM
326
327%description -n python-csvn
328Subversion CTypes Python bindings.
329
330%description -n python-csvn -l pl.UTF-8
331Dowiązania do Subversion dla Pythona używające CTypes.
332
333%description -n python-csvn -l pt_BR.UTF-8
334Módulos Python para acessar os recursos do Subversion.
335
b56474ff 336%package -n perl-subversion
65c1d4bd
JB
337Summary: Subversion Perl bindings
338Summary(pl.UTF-8): Dowiązania do Subversion dla Perla
339Summary(pt_BR.UTF-8): Módulos Perl para acessar os recursos do Subversion
b56474ff 340Group: Development/Languages/Perl
9cb7e099 341Requires: %{name}-libs = %{version}-%{release}
53855fbf 342Obsoletes: subversion-perl
b56474ff
AM
343
344%description -n perl-subversion
65c1d4bd 345Subversion Perl bindings.
b56474ff 346
aa59005f 347%description -n perl-subversion -l pl.UTF-8
65c1d4bd 348Dowiązania do Subversion dla Perla.
b56474ff 349
aa59005f 350%description -n perl-subversion -l pt_BR.UTF-8
65c1d4bd 351Módulos Perl para acessar os recursos do Subversion.
b56474ff 352
d46e45ba
AM
353%package -n ruby-subversion
354Summary: Subversion Ruby bindings
d2bf70bf 355Summary(pl.UTF-8): Dowiązania do Subversion dla języka Ruby
d46e45ba
AM
356Summary(pt_BR.UTF-8): Módulos Ruby para acessar os recursos do Subversion
357Group: Development/Languages
358Requires: %{name}-libs = %{version}-%{release}
359Obsoletes: subversion-ruby
360
361%description -n ruby-subversion
362Subversion Ruby bindings.
363
364%description -n ruby-subversion -l pl.UTF-8
d2bf70bf 365Dowiązania do Subversion dla języka Ruby.
d46e45ba
AM
366
367%description -n ruby-subversion -l pt_BR.UTF-8
368Módulos Ruby para acessar os recursos do Subversion.
369
93b78127
AM
370%package -n apache-mod_dav_svn
371Summary: Apache module: Subversion Server
ba084299 372Summary(pl.UTF-8): Moduł Apache'a: serwer Subversion
93b78127 373Group: Networking/Daemons
7b27380f 374Requires: %{name} = %{version}-%{release}
53855fbf 375Requires: apache(modules-api) = %apache_modules_api
7887b1ac 376Requires: apache-mod_dav
93b78127
AM
377
378%description -n apache-mod_dav_svn
379Apache module: Subversion Server.
380
aa59005f 381%description -n apache-mod_dav_svn -l pl.UTF-8
ba084299 382Moduł Apache'a: serwer Subversion.
93b78127 383
65318afa
AF
384%package -n apache-mod_authz_svn
385Summary: Apache module: Subversion Server - path-based authorization
ba084299 386Summary(pl.UTF-8): Moduł Apache'a: autoryzacja na podstawie ścieżki dla serwera Subversion
65318afa 387Group: Networking/Daemons
38c0314f 388Requires: %{name}-libs = %{version}-%{release}
53855fbf 389Requires: apache(modules-api) = %apache_modules_api
9cb7e099 390Requires: apache-mod_dav_svn = %{version}-%{release}
65318afa
AF
391
392%description -n apache-mod_authz_svn
393Apache module: Subversion Server - path-based authorization.
394
aa59005f 395%description -n apache-mod_authz_svn -l pl.UTF-8
ba084299
JB
396Moduł Apache'a: autoryzacja na podstawie ścieżki dla serwera
397Subversion.
e23909be 398
53bea8b1
AM
399%package -n apache-mod_dontdothat_svn
400Summary: Apache module: Allows you to block specific svn requests
ba084299 401Summary(pl.UTF-8): Moduł Apache'a pozwalający na blokowanie pewnych zapytań svn
53bea8b1
AM
402Group: Networking/Daemons
403Requires: %{name}-libs = %{version}-%{release}
404Requires: apache(modules-api) = %apache_modules_api
405Requires: apache-mod_dav_svn = %{version}-%{release}
406
407%description -n apache-mod_dontdothat_svn
408Apache module: Allows you to block specific svn requests.
409
410%description -n apache-mod_dontdothat_svn -l pl.UTF-8
ba084299 411Moduł Apache'a pozwalający na blokowanie pewnych zapytań svn.
53bea8b1 412
1429fa1c 413%package -n gnome-keyring-subversion
fe242fac
JB
414Summary: GNOME Keyring authentication provider for Subversion
415Summary(pl.UTF-8): Moduł uwierzytelniający GNOME Keyring dla Subversion
1429fa1c 416Group: X11/Applications
38c0314f 417Requires: %{name}-libs = %{version}-%{release}
1429fa1c
AM
418
419%description -n gnome-keyring-subversion
fe242fac
JB
420Authentication provider module for Subversion which allows SVN client
421to authenticate using GNOME Keyring.
1429fa1c
AM
422
423%description -n gnome-keyring-subversion -l pl.UTF-8
fe242fac
JB
424Moduł uwierzytelniający dla Subversion pozwalający klientom SVN
425uwierzytelniać się przy użyciu mechanizmu GNOME Keyring.
1429fa1c
AM
426
427%package -n kde4-kwallet-subversion
fe242fac
JB
428Summary: KDE Wallet authentication provider for Subversion
429Summary(pl.UTF-8): Moduł uwierzytelniający dla Subversion wykorzystujący Portfel KDE
1429fa1c 430Group: X11/Applications
38c0314f 431Requires: %{name}-libs = %{version}-%{release}
1429fa1c
AM
432
433%description -n kde4-kwallet-subversion
fe242fac
JB
434Authentication provider module for Subversion which allows SVN client
435to authenticate using KDE Wallet.
1429fa1c
AM
436
437%description -n kde4-kwallet-subversion -l pl.UTF-8
fe242fac
JB
438Moduł uwierzytelniający dla Subversion pozwalający klientom SVN
439uwierzytelniać się przy użyciu Portfela KDE.
1429fa1c 440
93b78127 441%prep
0c6e93f6 442%setup -q
ed6210a2 443%patch0 -p0
d4bccc60 444%patch1 -p1
00664663 445%patch2 -p0
1cfe7af2 446%patch3 -p1
7923efca 447%patch4 -p1
535649a6 448%patch5 -p1
a510fada
AM
449
450sed -i -e 's#serf_prefix/lib#serf_prefix/%{_lib}#g' build/ac-macros/serf.m4
451
93b78127 452%build
1cfe7af2
JB
453# disabled regeneration - subversion 1.6.13 is not ready for swig 2.0.x
454#%{__rm} subversion/bindings/swig/proxy/*.swg
455#cd subversion/bindings/swig && python "%{SOURCE5}" && cd ../../..
67cb9518 456chmod +x ./autogen.sh && ./autogen.sh
1cfe7af2 457%{__libtoolize}
93b78127 458%configure \
5dfeafd7 459 --with-editor=vi \
535649a6 460 --with-utf8proc=internal \
12ae68c1 461 --with-zlib=%{_libdir} \
fa6fa2cf 462 --disable-runtime-module-search \
86ee97d3 463 --disable-mod-activation \
298f7114 464%if %{with db}
ad5c551e 465 --with-berkeley-db="db.h:%{_includedir}:%{_libdir}:db" \
28b85877 466 %{?with_db6:--enable-bdb6} \
298f7114
ER
467%else
468 --without-berkeley-db \
469%endif
0905b458 470%if %{with apache}
1e0ba091 471 --with-apache-libexecdir="$(%{_sbindir}/apxs -q LIBEXECDIR)" \
536b3fd3 472 --with-apxs=%{_sbindir}/apxs \
0905b458 473%else
0905b458 474 --without-apxs \
0905b458 475%endif
298f7114 476%if %{without swig}
0905b458 477 --without-swig \
5c072a77 478%endif
dd30c674
ER
479%if %{with ruby}
480 svn_cv_ruby_sitedir_libsuffix="" \
481 svn_cv_ruby_sitedir_archsuffix="" \
482 --with-ruby-sitedir=%{ruby_vendorarchdir} \
483%else
5c072a77 484 ac_cv_path_RUBY=none \
0905b458 485%endif
a26edfbd
ER
486%if %{with csvn}
487 --with-ctypesgen=%{_bindir}/ctypesgen.py \
488%endif
c3746b64 489%if %{with java}
a26edfbd 490 --enable-javahl \
1cc7453a 491 --with-jdk="%{java_home}" \
cf2589d0 492 --without-jikes \
a26edfbd
ER
493%else
494 --disable-javahl \
495%endif
04129f48 496 --with-serf=%{_prefix} \
16429189 497 --with-apr=%{_bindir}/apr-1-config \
1429fa1c 498 --with-apr-util=%{_bindir}/apu-1-config \
65f2befa 499%if %{with kwallet}
1429fa1c 500 --with-kwallet \
65f2befa 501%endif
bfb248d0 502%if %{with gnome}
1429fa1c 503 --with-gnome-keyring
bfb248d0 504%endif
536b3fd3 505
1f630180 506%{__make} -j1
536b3fd3 507
92bfa7e1
ER
508%{__make} tools
509
5b21aa20 510%if %{with csvn}
a26edfbd 511# Python ctypes bindings
137fcafd 512%{__make} ctypes-python
5b21aa20 513%endif
a26edfbd
ER
514%if %{with python}
515# Python swig bindings
86a4919e 516%{__make} swig-py \
65318afa
AF
517 swig_pydir=%{py_sitedir}/libsvn \
518 swig_pydir_extra=%{py_sitedir}/svn
0905b458 519%endif
0905b458 520%if %{with perl}
a26edfbd 521# Perl swig bindings
390bb8f4 522%{__make} -j1 swig-pl-lib
bf539998
AM
523cd subversion/bindings/swig/perl/native
524%{__perl} Makefile.PL INSTALLDIRS=vendor
b445847c 525%{__make} -j1
a26edfbd 526cd -
536b3fd3 527%endif
c3746b64 528%if %{with java}
b445847c 529%{__make} -j1 javahl \
1cc7453a 530 javahl_javadir="%{_javadir}"
531%endif
d46e45ba
AM
532# ruby
533%if %{with ruby}
534%{__make} swig-rb
535%endif
12ae68c1
AM
536
537%if %{with tests}
5abe2f77 538%{__make} -j1 check
5b21aa20 539%if %{with csvn}
5abe2f77 540%{__make} -j1 check-ctypes-python
5b21aa20 541%endif
a26edfbd 542%if %{with python}
5abe2f77 543%{__make} -j1 check-swig-py
d46e45ba
AM
544%endif
545%if %{with perl}
5abe2f77 546%{__make} -j1 check-swig-pl
d46e45ba
AM
547%endif
548%if %{with ruby}
6e3aae2d
ER
549# disabled, see https://bugs.launchpad.net/pld-linux/+bug/734340
550#%{__make} check-swig-rb
d46e45ba 551%endif
0905b458 552%endif
93b78127
AM
553
554%install
555rm -rf $RPM_BUILD_ROOT
1326bb99 556install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,bash_completion.d} \
1af5e34d 557 $RPM_BUILD_ROOT{%{apacheconfdir},%{apachelibdir},%{_infodir}} \
afb35189 558 $RPM_BUILD_ROOT%{_examplesdir}/{%{name}-%{version},python-%{name}-%{version}} \
d9d66e02 559 $RPM_BUILD_ROOT%{_sysconfdir}/%{name} \
a54611db 560 $RPM_BUILD_ROOT/home/services/subversion{,/repos}
93b78127 561
9eb45f32
JB
562%{__make} -j1 install \
563 pkgconfig_dir=%{_pkgconfigdir} \
92bfa7e1 564 toolsdir=%{_bindir} \
a26edfbd
ER
565 DESTDIR=$RPM_BUILD_ROOT \
566 APACHE_LIBEXECDIR="$(%{_sbindir}/apxs -q LIBEXECDIR)" \
c3746b64 567%if %{with java}
1cc7453a 568 install-javahl \
569 javahl_javadir="%{_javadir}" \
570%endif
d46e45ba 571%if %{with python}
0905b458 572 install-swig-py \
a26edfbd 573 swig_pydir=%{py_sitedir}/libsvn \
2ecedb13 574 swig_pydir_extra=%{py_sitedir}/svn \
a26edfbd 575%endif
74465f3c
JP
576 install-tools
577
5b21aa20 578%if %{with csvn}
74465f3c
JP
579# manually execute install-ctypes-python target
580cd subversion/bindings/ctypes-python
581%py_install
582cd ../../..
d46e45ba 583%endif
49f25a64 584
d46e45ba 585%if %{with ruby}
9eb45f32 586%{__make} -j1 install-swig-rb install-swig-rb-doc \
59894d8a 587 SWIG_RB_RI_DATADIR=$RPM_BUILD_ROOT%{ruby_ridir} \
9eb45f32 588 DESTDIR=$RPM_BUILD_ROOT
49f25a64
ER
589
590# not our package
49f25a64
ER
591%{__rm} -r $RPM_BUILD_ROOT%{ruby_ridir}/OptionParser
592%{__rm} -r $RPM_BUILD_ROOT%{ruby_ridir}/Time
b98707c2 593%if "%{ruby_abi}" >= "2.0"
59894d8a 594%{__rm} -r $RPM_BUILD_ROOT%{ruby_ridir}/File
c6918405 595%endif
49f25a64
ER
596%{__rm} $RPM_BUILD_ROOT%{ruby_ridir}/cache.ri
597%{__rm} $RPM_BUILD_ROOT%{ruby_ridir}/created.rid
0905b458 598%endif
93b78127 599
298f7114 600%if %{with perl}
bf539998
AM
601%{__make} install-swig-pl-lib \
602 DESTDIR=$RPM_BUILD_ROOT
b445847c 603%{__make} -C subversion/bindings/swig/perl/native install \
bf539998
AM
604 DESTDIR=$RPM_BUILD_ROOT \
605 PREFIX=$RPM_BUILD_ROOT%{_prefix} \
606 LIBDIR=$RPM_BUILD_ROOT%{_libdir}
bf539998
AM
607%endif
608
0905b458 609%if %{with apache}
d9d66e02
ER
610cp -p %{SOURCE1} $RPM_BUILD_ROOT%{apacheconfdir}/65_mod_dav_svn.conf
611cp -p %{SOURCE2} $RPM_BUILD_ROOT%{apacheconfdir}/66_mod_authz_svn.conf
612cp -p %{SOURCE4} $RPM_BUILD_ROOT/etc/sysconfig/svnserve
613install -p %{SOURCE3} $RPM_BUILD_ROOT/etc/rc.d/init.d/svnserve
0905b458 614%endif
93b78127 615
d9d66e02
ER
616%if %{without net_client_only}
617install -p tools/backup/hot-backup.py $RPM_BUILD_ROOT%{_bindir}/svn-hot-backup
298f7114 618%endif
92bfa7e1
ER
619
620# rename not to conflict with standard packages. (are these needed at all?)
9eb45f32
JB
621%{__mv} $RPM_BUILD_ROOT%{_bindir}/{,svn}diff
622%{__mv} $RPM_BUILD_ROOT%{_bindir}/{,svn}diff3
623%{__mv} $RPM_BUILD_ROOT%{_bindir}/{,svn}diff4
92bfa7e1 624
e834894b 625%if %{with python} || %{with csvn}
f4e6a380
AM
626%py_ocomp $RPM_BUILD_ROOT%{py_sitedir}
627%py_comp $RPM_BUILD_ROOT%{py_sitedir}
3c200272 628%py_postclean
e834894b
ER
629%endif
630%if %{with python}
3c200272 631%{__rm} $RPM_BUILD_ROOT%{py_sitedir}/libsvn/*.la
f37da0a1
ER
632# .a created on ac only
633%{__rm} -f $RPM_BUILD_ROOT%{py_sitedir}/libsvn/*.a
634cp -p tools/examples/*.py $RPM_BUILD_ROOT%{_examplesdir}/python-%{name}-%{version}
536b3fd3 635%endif
f4e6a380 636
d9d66e02
ER
637cp -p tools/client-side/bash_completion $RPM_BUILD_ROOT/etc/bash_completion.d/%{name}
638cp -p tools/examples/*.c $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
1326bb99 639
c3746b64 640%if %{with java}
a26edfbd
ER
641%{__rm} $RPM_BUILD_ROOT%{_libdir}/libsvnjavahl*.{la,a}
642%endif
298f7114 643%if %{with swig}
fe242fac 644%{__rm} $RPM_BUILD_ROOT%{_libdir}/libsvn_swig*.{la,a}
5c072a77 645%if %{with ruby}
dd30c674 646%{__rm} $RPM_BUILD_ROOT%{ruby_vendorarchdir}/svn/ext/*.la
5f328a6e 647%endif
5c072a77 648%endif
fe242fac
JB
649%if %{with gnome} || %{with kwallet}
650# dlopened by soname (libsvn_auth_*-1.so.0)
535649a6 651%{__rm} $RPM_BUILD_ROOT%{_libdir}/libsvn_auth_*-1.{so,la}
fe242fac 652%endif
205a3ddc 653
fe242fac 654%find_lang %{name}
a6ecf312 655
e23909be
JB
656%clean
657rm -rf $RPM_BUILD_ROOT
658
a1bac09d
659%pre svnserve
660%groupadd -g 86 svn
661%useradd -u 180 -d /home/services/subversion -c "Subversion svnserve" -g svn svn
662
d2bf70bf
JB
663%post libs -p /sbin/ldconfig
664%postun libs -p /sbin/ldconfig
665
666%post devel -p /sbin/postshell
6f99c3bd 667-/usr/sbin/fix-info-dir -c %{_infodir}
93b78127 668
d2bf70bf 669%postun devel -p /sbin/postshell
6f99c3bd 670-/usr/sbin/fix-info-dir -c %{_infodir}
93b78127 671
12c96b58
ER
672%post -n java-subversion -p /sbin/ldconfig
673%postun -n java-subversion -p /sbin/ldconfig
674
d2bf70bf
JB
675%post -n perl-subversion -p /sbin/ldconfig
676%postun -n perl-subversion -p /sbin/ldconfig
677
678%post -n python-subversion -p /sbin/ldconfig
679%postun -n python-subversion -p /sbin/ldconfig
f4e6a380 680
12c96b58
ER
681%post -n ruby-subversion -p /sbin/ldconfig
682%postun -n ruby-subversion -p /sbin/ldconfig
683
684%post -n gnome-keyring-subversion -p /sbin/ldconfig
685%postun -n gnome-keyring-subversion -p /sbin/ldconfig
686
687%post -n kde4-kwallet-subversion -p /sbin/ldconfig
688%postun -n kde4-kwallet-subversion -p /sbin/ldconfig
689
b56474ff 690%post svnserve
e8d9186f
ER
691/sbin/chkconfig --add svnserve
692%service svnserve restart "svnserve daemon"
693
b56474ff
AM
694%preun svnserve
695if [ "$1" = "0" ]; then
e8d9186f
ER
696 %service svnserve stop
697 /sbin/chkconfig --del svnserve
b56474ff
AM
698fi
699
a1bac09d
700%postun svnserve
701if [ "$1" = "0" ]; then
12c96b58
ER
702 %userremove svn
703 %groupremove svn
a1bac09d
704fi
705
93b78127 706%post -n apache-mod_dav_svn
e8d9186f 707%service -q httpd restart
93b78127 708
ba425c92 709%postun -n apache-mod_dav_svn
93b78127 710if [ "$1" = "0" ]; then
e8d9186f 711 %service -q httpd restart
93b78127
AM
712fi
713
9688ba4c
JR
714%post -n apache-mod_authz_svn
715%service -q httpd restart
716
ba425c92 717%postun -n apache-mod_authz_svn
9688ba4c
JR
718if [ "$1" = "0" ]; then
719 %service -q httpd restart
720fi
721
53bea8b1
AM
722%post -n apache-mod_dontdothat_svn
723%service -q httpd restart
724
725%postun -n apache-mod_dontdothat_svn
726if [ "$1" = "0" ]; then
727 %service -q httpd restart
728fi
729
93b78127
AM
730%files
731%defattr(644,root,root,755)
c5c1593f 732%doc BUGS CHANGES INSTALL README
d37298dc 733%doc doc/*/*.html
4bbdbbf8
AM
734%doc tools/hook-scripts/*.{pl,py,example}
735%doc tools/hook-scripts/mailer/*.{py,example}
1326bb99 736%doc tools/xslt/*
535649a6 737%attr(755,root,root) %{_bindir}/fsfs-stats
b445847c 738%attr(755,root,root) %{_bindir}/svn
535649a6 739%attr(755,root,root) %{_bindir}/svn-mergeinfo-normalizer
b445847c 740%attr(755,root,root) %{_bindir}/svnadmin
535649a6 741%attr(755,root,root) %{_bindir}/svnconflict
b445847c
JB
742%attr(755,root,root) %{_bindir}/svndumpfilter
743%attr(755,root,root) %{_bindir}/svnlook
535649a6 744%attr(755,root,root) %{_bindir}/svnmover
3d85fab0 745%attr(755,root,root) %{_bindir}/svnmucc
1e0ba091 746%attr(755,root,root) %{_bindir}/svnrdump
b445847c
JB
747%attr(755,root,root) %{_bindir}/svnsync
748%attr(755,root,root) %{_bindir}/svnversion
749%{_mandir}/man1/svn.1*
750%{_mandir}/man1/svnadmin.1*
751%{_mandir}/man1/svndumpfilter.1*
c5c1593f 752%{_mandir}/man1/svnrdump.1*
b445847c 753%{_mandir}/man1/svnlook.1*
3d85fab0 754%{_mandir}/man1/svnmucc.1*
b445847c
JB
755%{_mandir}/man1/svnsync.1*
756%{_mandir}/man1/svnversion.1*
f4e6a380 757
205a3ddc 758%files libs -f %{name}.lang
f4e6a380 759%defattr(644,root,root,755)
d9d66e02 760%dir %{_sysconfdir}/%{name}
b445847c
JB
761%attr(755,root,root) %{_libdir}/libsvn_client-1.so.*.*.*
762%attr(755,root,root) %ghost %{_libdir}/libsvn_client-1.so.0
763%attr(755,root,root) %{_libdir}/libsvn_delta-1.so.*.*.*
764%attr(755,root,root) %ghost %{_libdir}/libsvn_delta-1.so.0
765%attr(755,root,root) %{_libdir}/libsvn_diff-1.so.*.*.*
766%attr(755,root,root) %ghost %{_libdir}/libsvn_diff-1.so.0
767%attr(755,root,root) %{_libdir}/libsvn_fs-1.so.*.*.*
768%attr(755,root,root) %ghost %{_libdir}/libsvn_fs-1.so.0
5f328a6e 769%if %{without net_client_only}
b445847c
JB
770%attr(755,root,root) %{_libdir}/libsvn_fs_base-1.so.*.*.*
771%attr(755,root,root) %ghost %{_libdir}/libsvn_fs_base-1.so.0
5f328a6e 772%endif
b445847c
JB
773%attr(755,root,root) %{_libdir}/libsvn_fs_fs-1.so.*.*.*
774%attr(755,root,root) %ghost %{_libdir}/libsvn_fs_fs-1.so.0
775%attr(755,root,root) %{_libdir}/libsvn_fs_util-1.so.*.*.*
776%attr(755,root,root) %ghost %{_libdir}/libsvn_fs_util-1.so.0
f9c8674f
AM
777%attr(755,root,root) %{_libdir}/libsvn_fs_x-1.so.*.*.*
778%attr(755,root,root) %ghost %{_libdir}/libsvn_fs_x-1.so.0
b445847c
JB
779%attr(755,root,root) %{_libdir}/libsvn_ra-1.so.*.*.*
780%attr(755,root,root) %ghost %{_libdir}/libsvn_ra-1.so.0
781%attr(755,root,root) %{_libdir}/libsvn_ra_local-1.so.*.*.*
782%attr(755,root,root) %ghost %{_libdir}/libsvn_ra_local-1.so.0
1e0ba091
AM
783%attr(755,root,root) %{_libdir}/libsvn_ra_serf-1.so.*.*.*
784%attr(755,root,root) %ghost %{_libdir}/libsvn_ra_serf-1.so.0
b445847c
JB
785%attr(755,root,root) %{_libdir}/libsvn_ra_svn-1.so.*.*.*
786%attr(755,root,root) %ghost %{_libdir}/libsvn_ra_svn-1.so.0
787%attr(755,root,root) %{_libdir}/libsvn_repos-1.so.*.*.*
788%attr(755,root,root) %ghost %{_libdir}/libsvn_repos-1.so.0
789%attr(755,root,root) %{_libdir}/libsvn_subr-1.so.*.*.*
790%attr(755,root,root) %ghost %{_libdir}/libsvn_subr-1.so.0
791%attr(755,root,root) %{_libdir}/libsvn_wc-1.so.*.*.*
792%attr(755,root,root) %ghost %{_libdir}/libsvn_wc-1.so.0
93b78127
AM
793
794%files devel
795%defattr(644,root,root,755)
b445847c
JB
796%attr(755,root,root) %{_libdir}/libsvn_client-1.so
797%attr(755,root,root) %{_libdir}/libsvn_delta-1.so
798%attr(755,root,root) %{_libdir}/libsvn_diff-1.so
799%attr(755,root,root) %{_libdir}/libsvn_fs-1.so
5f328a6e 800%if %{without net_client_only}
b445847c 801%attr(755,root,root) %{_libdir}/libsvn_fs_base-1.so
5f328a6e 802%endif
b445847c
JB
803%attr(755,root,root) %{_libdir}/libsvn_fs_fs-1.so
804%attr(755,root,root) %{_libdir}/libsvn_fs_util-1.so
f9c8674f 805%attr(755,root,root) %{_libdir}/libsvn_fs_x-1.so
b445847c
JB
806%attr(755,root,root) %{_libdir}/libsvn_ra-1.so
807%attr(755,root,root) %{_libdir}/libsvn_ra_local-1.so
1e0ba091 808%attr(755,root,root) %{_libdir}/libsvn_ra_serf-1.so
b445847c
JB
809%attr(755,root,root) %{_libdir}/libsvn_ra_svn-1.so
810%attr(755,root,root) %{_libdir}/libsvn_repos-1.so
811%attr(755,root,root) %{_libdir}/libsvn_subr-1.so
812%attr(755,root,root) %{_libdir}/libsvn_wc-1.so
813%{_libdir}/libsvn_client-1.la
814%{_libdir}/libsvn_delta-1.la
815%{_libdir}/libsvn_diff-1.la
816%{_libdir}/libsvn_fs-1.la
5f328a6e 817%if %{without net_client_only}
b445847c 818%{_libdir}/libsvn_fs_base-1.la
5f328a6e 819%endif
b445847c
JB
820%{_libdir}/libsvn_fs_fs-1.la
821%{_libdir}/libsvn_fs_util-1.la
f9c8674f 822%{_libdir}/libsvn_fs_x-1.la
b445847c
JB
823%{_libdir}/libsvn_ra-1.la
824%{_libdir}/libsvn_ra_local-1.la
1e0ba091 825%{_libdir}/libsvn_ra_serf-1.la
b445847c
JB
826%{_libdir}/libsvn_ra_svn-1.la
827%{_libdir}/libsvn_repos-1.la
828%{_libdir}/libsvn_subr-1.la
829%{_libdir}/libsvn_wc-1.la
ff76629a 830%if %{with gnome}
9eb45f32
JB
831# only for feature check, linking will fail (no libsvn_auth_gnome_keyring.so)
832%{_pkgconfigdir}/libsvn_auth_gnome_keyring.pc
ff76629a
JP
833%endif
834%if %{with kwallet}
9eb45f32
JB
835# only for feature check, linking will fail (no libsvn_auth_kwallet.so)
836%{_pkgconfigdir}/libsvn_auth_kwallet.pc
ff76629a 837%endif
9eb45f32
JB
838%{_pkgconfigdir}/libsvn_client.pc
839%{_pkgconfigdir}/libsvn_delta.pc
840%{_pkgconfigdir}/libsvn_diff.pc
841%{_pkgconfigdir}/libsvn_fs.pc
f9c8674f 842%if %{without net_client_only}
9eb45f32
JB
843%{_pkgconfigdir}/libsvn_fs_base.pc
844%endif
845%{_pkgconfigdir}/libsvn_fs_fs.pc
846%{_pkgconfigdir}/libsvn_fs_util.pc
847%{_pkgconfigdir}/libsvn_fs_x.pc
848%{_pkgconfigdir}/libsvn_ra.pc
849%{_pkgconfigdir}/libsvn_ra_local.pc
850%{_pkgconfigdir}/libsvn_ra_serf.pc
851%{_pkgconfigdir}/libsvn_ra_svn.pc
852%{_pkgconfigdir}/libsvn_repos.pc
853%{_pkgconfigdir}/libsvn_subr.pc
854%{_pkgconfigdir}/libsvn_wc.pc
b445847c 855%{_includedir}/%{name}-1
1326bb99 856%{_examplesdir}/%{name}-%{version}
93b78127
AM
857
858%files static
859%defattr(644,root,root,755)
b445847c
JB
860%{_libdir}/libsvn_client-1.a
861%{_libdir}/libsvn_delta-1.a
862%{_libdir}/libsvn_diff-1.a
863%{_libdir}/libsvn_fs-1.a
5f328a6e 864%if %{without net_client_only}
b445847c 865%{_libdir}/libsvn_fs_base-1.a
5f328a6e 866%endif
b445847c
JB
867%{_libdir}/libsvn_fs_fs-1.a
868%{_libdir}/libsvn_fs_util-1.a
f9c8674f 869%{_libdir}/libsvn_fs_x-1.a
b445847c
JB
870%{_libdir}/libsvn_ra-1.a
871%{_libdir}/libsvn_ra_local-1.a
1e0ba091 872%{_libdir}/libsvn_ra_serf-1.a
b445847c
JB
873%{_libdir}/libsvn_ra_svn-1.a
874%{_libdir}/libsvn_repos-1.a
875%{_libdir}/libsvn_subr-1.a
876%{_libdir}/libsvn_wc-1.a
93b78127 877
bfb248d0 878%if %{with gnome}
1429fa1c
AM
879%files -n gnome-keyring-subversion
880%defattr(644,root,root,755)
881%attr(755,root,root) %{_libdir}/libsvn_auth_gnome_keyring-1.so.*.*.*
882%attr(755,root,root) %ghost %{_libdir}/libsvn_auth_gnome_keyring-1.so.0
8d40da51
JB
883# does anything use it? requires libsvn_auth_gnome_keyring.so
884#%{_pkgconfigdir}/libsvn_auth_gnome_keyring.pc
bfb248d0 885%endif
1429fa1c 886
65f2befa 887%if %{with kwallet}
1429fa1c
AM
888%files -n kde4-kwallet-subversion
889%defattr(644,root,root,755)
890%attr(755,root,root) %{_libdir}/libsvn_auth_kwallet-1.so.*.*.*
891%attr(755,root,root) %ghost %{_libdir}/libsvn_auth_kwallet-1.so.0
8d40da51
JB
892# does anything use it? requires libsvn_auth_kwallet.so
893#%{_pkgconfigdir}/libsvn_auth_kwallet.pc
65f2befa 894%endif
1429fa1c 895
12c96b58 896%if %{without net_client_only}
b56474ff
AM
897%files svnserve
898%defattr(644,root,root,755)
899%attr(755,root,root) %{_bindir}/svnserve
b445847c
JB
900%{_mandir}/man5/svnserve.conf.5*
901%{_mandir}/man8/svnserve.8*
a1bac09d
902%dir %attr(750,svn,svn) /home/services/subversion
903%dir %attr(750,svn,svn) /home/services/subversion/repos
0905b458 904%if %{with apache}
b56474ff 905%attr(754,root,root) /etc/rc.d/init.d/svnserve
86ea8fde 906%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/svnserve
0905b458 907%endif
b56474ff 908
4bbdbbf8
AM
909%files tools
910%defattr(644,root,root,755)
92bfa7e1 911# tools/backup/hot-backup.py
1326bb99 912%attr(755,root,root) %{_bindir}/svn-hot-backup
fe5bb6bb 913
92bfa7e1
ER
914# tools/diff
915%attr(755,root,root) %{_bindir}/svndiff
916%attr(755,root,root) %{_bindir}/svndiff3
917%attr(755,root,root) %{_bindir}/svndiff4
918
919# tools/server-side
f9c8674f 920%attr(755,root,root) %{_bindir}/svnfsfs
92bfa7e1 921%attr(755,root,root) %{_bindir}/svn-populate-node-origins-index
3d85fab0 922%attr(755,root,root) %{_bindir}/svnauthz
92bfa7e1
ER
923%attr(755,root,root) %{_bindir}/svnauthz-validate
924
3d85fab0 925# tools/client-side
f9c8674f 926%attr(755,root,root) %{_bindir}/svnbench
1e0ba091 927
92bfa7e1
ER
928# tools/dev/svnraisetreeconflict
929%attr(755,root,root) %{_bindir}/svnraisetreeconflict
930
1e0ba091
AM
931# tools/dev/
932%attr(755,root,root) %{_bindir}/fsfs-access-map
f9c8674f 933%attr(755,root,root) %{_bindir}/x509-parser
1e0ba091 934
fe5bb6bb 935%files -n bash-completion-subversion
101e74de 936%defattr(644,root,root,755)
1326bb99 937/etc/bash_completion.d/%{name}
536b3fd3 938
f37da0a1
ER
939%endif # net_client_only
940
c3746b64 941%if %{with java}
1cc7453a 942%files -n java-subversion
943%defattr(644,root,root,755)
b445847c
JB
944%attr(755,root,root) %{_libdir}/libsvnjavahl-1.so.*.*.*
945%attr(755,root,root) %ghost %{_libdir}/libsvnjavahl-1.so.0
946%attr(755,root,root) %{_libdir}/libsvnjavahl-1.so
1cc7453a 947%{_javadir}/svn-javahl.jar
948%endif
949
0905b458 950%if %{with python}
fa3ff1b2 951%files -n python-subversion
f4e6a380 952%defattr(644,root,root,755)
693a6ddf 953%doc tools/backup/*.py
b445847c
JB
954%attr(755,root,root) %{_libdir}/libsvn_swig_py-1.so.*.*.*
955%attr(755,root,root) %ghost %{_libdir}/libsvn_swig_py-1.so.0
956%attr(755,root,root) %{_libdir}/libsvn_swig_py-1.so
65318afa 957%dir %{py_sitedir}/libsvn
3c200272 958%attr(755,root,root) %{py_sitedir}/libsvn/_*.so
65318afa 959%{py_sitedir}/libsvn/*.py[co]
b445847c
JB
960%dir %{py_sitedir}/svn
961%{py_sitedir}/svn/*.py[co]
1326bb99 962%{_examplesdir}/python-%{name}-%{version}
a26edfbd 963%endif
137fcafd 964
5b21aa20 965%if %{with csvn}
137fcafd
AM
966%files -n python-csvn
967%defattr(644,root,root,755)
968%doc subversion/bindings/ctypes-python/{README,TODO}
969%doc subversion/bindings/ctypes-python/examples/*.py
970%dir %{py_sitescriptdir}/csvn
971%{py_sitescriptdir}/csvn/*.py[co]
972%dir %{py_sitescriptdir}/csvn/core
973%{py_sitescriptdir}/csvn/core/*.py[co]
974%dir %{py_sitescriptdir}/csvn/ext
975%{py_sitescriptdir}/csvn/ext/*.py[co]
3c200272 976%{py_sitescriptdir}/svn_ctypes_python_bindings-0.1-py*.egg-info
0905b458 977%endif
f4e6a380 978
0905b458 979%if %{with perl}
b56474ff
AM
980%files -n perl-subversion
981%defattr(644,root,root,755)
b445847c
JB
982%attr(755,root,root) %{_libdir}/libsvn_swig_perl-1.so.*.*.*
983%attr(755,root,root) %ghost %{_libdir}/libsvn_swig_perl-1.so.0
984%attr(755,root,root) %{_libdir}/libsvn_swig_perl-1.so
b56474ff
AM
985%{perl_vendorarch}/SVN
986%dir %{perl_vendorarch}/auto/SVN
987%dir %{perl_vendorarch}/auto/SVN/*
988%attr(755,root,root) %{perl_vendorarch}/auto/SVN/*/*.so
b56474ff 989%{_mandir}/man3/*.3pm*
0905b458 990%endif
b56474ff 991
d46e45ba
AM
992%if %{with ruby}
993%files -n ruby-subversion
994%defattr(644,root,root,755)
b445847c
JB
995%attr(755,root,root) %{_libdir}/libsvn_swig_ruby-1.so.*.*.*
996%attr(755,root,root) %ghost %{_libdir}/libsvn_swig_ruby-1.so.0
997%attr(755,root,root) %{_libdir}/libsvn_swig_ruby-1.so
dd30c674
ER
998%dir %{ruby_vendorarchdir}/svn
999%{ruby_vendorarchdir}/svn/*.rb
1000%dir %{ruby_vendorarchdir}/svn/ext
1001%attr(755,root,root) %{ruby_vendorarchdir}/svn/ext/*.so
916011ef 1002%{ruby_ridir}/Svn
d46e45ba
AM
1003%endif
1004
0905b458 1005%if %{with apache}
93b78127
AM
1006%files -n apache-mod_dav_svn
1007%defattr(644,root,root,755)
1af5e34d
ER
1008%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{apacheconfdir}/*_mod_dav_svn.conf
1009%attr(755,root,root) %{apachelibdir}/mod_dav_svn.so
65318afa
AF
1010
1011%files -n apache-mod_authz_svn
1012%defattr(644,root,root,755)
1013%doc subversion/mod_authz_svn/INSTALL
1af5e34d
ER
1014%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{apacheconfdir}/*_mod_authz_svn.conf
1015%attr(755,root,root) %{apachelibdir}/mod_authz_svn.so
53bea8b1
AM
1016
1017%files -n apache-mod_dontdothat_svn
1018%defattr(644,root,root,755)
1019%doc tools/server-side/mod_dontdothat/README
1020%attr(755,root,root) %{apachelibdir}/mod_dontdothat.so
536b3fd3 1021%endif
This page took 0.435037 seconds and 4 git commands to generate.