]> git.pld-linux.org Git - packages/amanda.git/blob - amanda.spec
- ac25x patch for autoconf 2.5x
[packages/amanda.git] / amanda.spec
1 Summary:        A network-capable tape backup solution
2 Summary(pl):    Sieciowo zorientowany system tworzenia kopii zapasowych
3 Name:           amanda
4 Version:        2.4.2p2
5 Release:        5
6 License:        BSD
7 Group:          Networking/Utilities
8 Group(de):      Netzwerkwesen/Werkzeuge
9 Group(pl):      Sieciowe/Narzêdzia
10 Source0:        http://prdownloads.sourceforge.net/amanda/%{name}-%{version}.tar.gz
11 Source1:        %{name}-srv.crontab
12 Source2:        %{name}.inetd
13 Source3:        %{name}idx.inetd
14 Source4:        amidxtape.inetd
15 Source5:        %{name}.conf
16 Patch0:         %{name}-no_libnsl.patch
17 Patch1:         %{name}-am_fixes.patch
18 Patch2:         %{name}-bug18322.patch
19 Patch3:         %{name}-build_tapetype.patch
20 Patch4:         %{name}-no_private_libtool.m4.patch
21 Patch5:         %{name}-ac25x.patch
22 URL:            http://www.amanda.org/
23 BuildRequires:  autoconf
24 BuildRequires:  automake
25 BuildRequires:  cpio
26 BuildRequires:  dump
27 BuildRequires:  flex
28 BuildRequires:  gnuplot
29 BuildRequires:  libtool
30 BuildRequires:  readline-devel >= 4.2
31 BuildRequires:  tar
32 Prereq:         /sbin/ldconfig
33 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
34
35 %define         _sysconfdir     /etc
36 %define         _localstatedir  /var
37 %define         _libexecdir     %{_libdir}/amanda
38
39 %description 
40 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a
41 backup system that allows the administrator of a LAN to set up a
42 single master backup server to back up multiple hosts to a single
43 large capacity tape drive. AMANDA uses native dump and/or GNU tar
44 facilities and can back up a large number of workstations running
45 multiple versions of Unix. Newer versions of AMANDA (including this
46 version) can use SAMBA to back up Microsoft(TM) Windows95/NT hosts.
47 The amanda package contains the core AMANDA programs and will need to
48 be installed on both AMANDA clients and AMANDA servers. Note that you
49 will have to install the amanda-client and amanda-server packages as
50 well.
51
52 %description -l pl
53 AMANDA jest sieciowo zorientowanym systemem tworzenia kopii
54 zapasowych. Umo¿liwia administratorowi sieci tworzenie kopii z kilku
55 hostów na jednej maszynie wyposa¿onej w pojemny dysk lub streamer.
56 Nowsze wersje programu umo¿liwiaj± zabezpieczanie zasobów Microsoft
57 Windows 95/98/NT/2000 przy u¿yciu protoko³u Samba. Ten pakiet zawiera
58 podstawowe pliki programu i powinien byæ zainstalowany zarówno na
59 serwerze jak i na kliencie. Pamiêtaj tak¿e o instalacji pakietów
60 amanda-client i amanda-server!
61
62 %package libs
63 Summary:        Amanda shared libraries
64 Summary(pl):    Biblioteki wspó³dzielone pakietu amanda
65 Group:          Networking/Utilities
66 Group(de):      Netzwerkwesen/Werkzeuge
67 Group(pl):      Sieciowe/Narzêdzia
68
69 %description libs
70 Amanda shared libraries.
71
72 %description -l pl libs
73 Biblioteki wspó³dzielone pakietu amanda.
74
75 %package client
76 Summary:        The client side of Amanda
77 Summary(pl):    Klient Amandy
78 Group:          Networking/Utilities
79 Group(de):      Netzwerkwesen/Werkzeuge
80 Group(pl):      Sieciowe/Narzêdzia
81 Prereq:         /sbin/ldconfig
82 Prereq:         %{name}-libs = %{version}
83
84 %description client
85 The Amanda-client package should be installed on any machine that will
86 be backed up by AMANDA (including the server if it also needs to be
87 backed up). You will also need to install the amanda package to each
88 AMANDA client.
89
90 %description -l pl client
91 Ten pakiet powinien byæ zainstalowany ma maszynach, z których
92 zawarto¶ci bêd± tworzone kopie zapasowe.
93
94 %package server
95 Summary:        The server side of Amanda
96 Summary(pl):    Serwer Amandy
97 Group:          Networking/Utilities
98 Group(de):      Netzwerkwesen/Werkzeuge
99 Group(pl):      Sieciowe/Narzêdzia
100 Prereq:         rc-inetd
101 Prereq:         /sbin/ldconfig
102 Requires:       gnuplot
103 Requires:       tar
104 Requires:       cpio
105 Requires:       dump
106 Requires:       crondaemon
107 Requires:       /etc/cron.d
108 Prereq:         %{name}-libs = %{version}
109
110 %description server
111 The amanda-server package should be installed on the AMANDA server,
112 the machine attached to the device (such as a tape drive) where
113 backups will be written. You will also need to install the amanda
114 package to the AMANDA server. And, if the server is also to be backed
115 up, the server also needs to have the amanda-client package installed.
116
117 %description -l pl server
118 Ten pakiet powinien byæ zainstalowanych na maszynach, na których bêd±
119 magazynowane kopie zapasowe (lub do których podpiête s± urz±dzenia
120 typu streamer).
121
122 %prep
123 %setup -q
124 %patch0 -p1
125 %patch1 -p1
126 %patch2 -p1
127 %patch3 -p1
128 %patch4 -p1
129 %patch5 -p1
130
131 %build
132 libtoolize --copy --force
133 aclocal
134 autoconf
135 touch COPYING
136 rm -f missing
137 automake -a -c
138 %configure \
139         --disable-static \
140         --enable-shared \
141         --with-index-server=localhost \
142         --with-user=amanda \
143         --with-group=amanda \
144         --with-tape-device=/dev/null \
145         --with-ftape-rawdevice=/dev/null \
146         --with-changer-device=/dev/null \
147         --with-fqdn \
148         --with-smbclient=%{_bindir}/smbclient \
149         --with-bsd-security \
150         --with-buffered-dump \
151         --with-amandahosts \
152         --with-debugging=%{_localstatedir}/lib/amanda/debug
153
154 %{__make}
155
156 %install
157 rm -rf $RPM_BUILD_ROOT
158 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{amanda,cron.d,sysconfig/rc-inetd} \
159         $RPM_BUILD_ROOT%{_localstatedir}/lib/amanda
160
161 %{__make} install \
162         DESTDIR=$RPM_BUILD_ROOT \
163         SETUID_GROUP=`id -g`
164
165 install %{SOURCE1} $RPM_BUILD_ROOT/etc/cron.d/amanda-srv
166 install %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/rc-inetd/amanda
167 install %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/rc-inetd/amandaidx
168 install %{SOURCE4} $RPM_BUILD_ROOT/etc/sysconfig/rc-inetd/amidxtape
169
170 install %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/amanda
171 install example/*.ps $RPM_BUILD_ROOT%{_localstatedir}/lib/amanda
172
173 gzip -9nf docs/*
174
175 %clean
176 rm -rf $RPM_BUILD_ROOT
177
178 %triggerpostun -- amanda-libs < 2.4.2p2-3
179 /usr/sbin/chsh -s /bin/sh amanda
180
181 %pre libs
182 /usr/sbin/groupadd -g 80 -r -f amanda
183 /usr/sbin/useradd -u 80 -r -d /var/lib/amanda -s /bin/sh -c "Amanda Backup user" -g amanda amanda
184
185 %post libs -p /sbin/ldconfig
186
187 %postun libs
188 /sbin/ldconfig
189 if [ "$1" = "0" ]; then
190         /usr/sbin/groupdel amanda
191         /usr/sbin/userdel amanda
192 fi
193
194 %post client
195 /sbin/ldconfig
196 if [ -f /var/lock/subsys/rc-inetd ]; then
197         /etc/rc.d/init.d/rc-inetd restart 1>&2
198 else
199         echo "Type \"/etc/rc.d/init.d/rc-inetd start\" to start inet server" 1>&2
200 fi
201
202 %postun client
203 /sbin/ldconfig
204 if [ -f /var/lock/subsys/rc-inetd ]; then
205         /etc/rc.d/init.d/rc-inetd restart
206 fi
207
208 %post server
209 /sbin/ldconfig
210 if [ -f /var/lock/subsys/rc-inetd ]; then
211         /etc/rc.d/init.d/rc-inetd restart 1>&2
212 else
213         echo "Type \"/etc/rc.d/init.d/rc-inetd start\" to start inet server" 1>&2
214 fi
215
216 %postun server
217 /sbin/ldconfig
218 if [ -f /var/lock/subsys/rc-inetd ]; then
219         /etc/rc.d/init.d/rc-inetd restart
220 fi
221
222 %files libs
223 %defattr(644,root,root,755)
224 %attr(755,root,root) %{_libdir}/libamanda*.so
225 %attr(755,root,root) %{_libdir}/libamtape*.so
226 %attr(770,root,amanda) %dir %{_libexecdir}
227
228 %files server
229 %defattr(644,root,root,755)
230 %doc docs/*.gz
231 %config(noreplace) /etc/sysconfig/rc-inetd/amidxtape
232 %config(noreplace) /etc/sysconfig/rc-inetd/amandaidx
233
234 %attr(750,root,amanda) %dir %{_sysconfdir}/amanda
235 %attr(640,root,amanda) %{_sysconfdir}/amanda/*
236
237 %attr(660,amanda,amanda) %dir %{_localstatedir}/lib/amanda
238 %attr(664,amanda,amanda) %{_localstatedir}/lib/amanda/*
239
240 %attr(640,root,root) /etc/cron.d/amanda-srv
241
242 %attr(755,root,root) %{_libdir}/libamserver*.so
243 %attr(755,root,root) %{_libexecdir}/amindexd
244 %attr(755,root,root) %{_libexecdir}/amtrmidx
245 %attr(755,root,root) %{_libexecdir}/driver
246 %attr(4754,root,amanda) %{_libexecdir}/dumper
247 %attr(4754,root,amanda) %{_libexecdir}/planner
248 %attr(755,root,root) %{_libexecdir}/amcat.awk
249 %attr(755,root,root) %{_libexecdir}/amcleanupdisk
250 %attr(755,root,root) %{_libexecdir}/amidxtaped
251 %attr(755,root,root) %{_libexecdir}/amlogroll
252 %attr(755,root,root) %{_libexecdir}/amplot.awk
253 %attr(755,root,root) %{_libexecdir}/amplot.g
254 %attr(755,root,root) %{_libexecdir}/amplot.gp
255 %attr(755,root,root) %{_libexecdir}/amtrmlog
256 %attr(755,root,root) %{_libexecdir}/chg-chio
257 %attr(755,root,root) %{_libexecdir}/chg-chs
258 %attr(755,root,root) %{_libexecdir}/chg-manual
259 %attr(755,root,root) %{_libexecdir}/chg-mtx
260 %attr(755,root,root) %{_libexecdir}/chg-multi
261 %attr(755,root,root) %{_libexecdir}/chg-rth
262 %attr(755,root,root) %{_libexecdir}/chg-scsi
263 %attr(755,root,root) %{_libexecdir}/chg-zd-mtx
264 %attr(755,root,root) %{_libexecdir}/selfcheck
265 %attr(755,root,root) %{_libexecdir}/taper
266 %attr(755,root,root) %{_sbindir}/amadmin
267 %attr(4754,root,amanda) %{_sbindir}/amcheck
268 %attr(755,root,root) %{_sbindir}/amcheckdb
269 %attr(755,root,root) %{_sbindir}/amcleanup
270 %attr(755,root,root) %{_sbindir}/amdump
271 %attr(755,root,root) %{_sbindir}/amflush
272 %attr(755,root,root) %{_sbindir}/amgetconf
273 %attr(755,root,root) %{_sbindir}/amlabel
274 %attr(755,root,root) %{_sbindir}/amoverview
275 %attr(755,root,root) %{_sbindir}/amplot
276 %attr(755,root,root) %{_sbindir}/amrmtape
277 %attr(755,root,root) %{_sbindir}/amreport
278 %attr(755,root,root) %{_sbindir}/amstatus
279 %attr(755,root,root) %{_sbindir}/amtape
280 %attr(755,root,root) %{_sbindir}/amtoc
281 %attr(755,root,root) %{_sbindir}/amverify
282 %attr(755,root,root) %{_sbindir}/tapetype
283 %{_mandir}/man8/amadmin.8*
284 %{_mandir}/man8/amrmtape.8*
285 %{_mandir}/man8/amtape.8*
286 %{_mandir}/man8/amtoc.8*
287 %{_mandir}/man8/amanda.8*
288 %{_mandir}/man8/amcheck.8*
289 %{_mandir}/man8/amcleanup.8*
290 %{_mandir}/man8/amdump.8*
291 %{_mandir}/man8/amflush.8*
292 %{_mandir}/man8/amlabel.8*
293 %{_mandir}/man8/amplot.8*
294 %{_mandir}/man8/amreport.8*
295 %{_mandir}/man8/amstatus.8*
296
297 %files client
298 %defattr(644,root,root,755)
299 %config(noreplace) /etc/sysconfig/rc-inetd/amanda
300
301 %attr(755,root,root) %{_libdir}/libamclient*.so
302 %attr(755,root,root) %{_libexecdir}/versionsuffix
303 %attr(755,root,root) %{_libexecdir}/amandad
304 %attr(4754,root,amanda) %{_libexecdir}/calcsize
305 %attr(4754,root,amanda) %{_libexecdir}/rundump
306 %attr(4754,root,amanda) %{_libexecdir}/runtar
307 %attr(4754,root,amanda) %{_libexecdir}/selfcheck
308 %attr(755,root,root) %{_libexecdir}/sendbackup
309 %attr(755,root,root) %{_libexecdir}/sendsize
310 %attr(755,root,root) %{_libexecdir}/patch-system
311 %attr(4754,root,amanda) %{_libexecdir}/killpgrp
312 %attr(755,root,root) %{_sbindir}/amrecover
313 %attr(755,root,root) %{_sbindir}/amrestore
314 %{_mandir}/man8/amrecover.8*
315 %{_mandir}/man8/amrestore.8*
This page took 0.056448 seconds and 4 git commands to generate.