]> git.pld-linux.org Git - packages/bootparamd.git/blame_incremental - bootparamd.spec
- converted to UTF-8
[packages/bootparamd.git] / bootparamd.spec
... / ...
CommitLineData
1Summary: A server process which provides boot information to diskless clients
2Summary(pl.UTF-8): Demon zapewniający informacje potrzebne do uruchomienia bezdyskowych klientów
3Name: bootparamd
4Version: 0.17
5Release: 13
6License: BSD
7Group: Networking/Daemons
8Source0: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-%{name}-%{version}.tar.gz
9# Source0-md5: 00d211115b11aec2e214b701fe72f397
10Source1: %{name}.init
11Patch0: %{name}-install_man_fix.patch
12BuildRequires: cpp
13BuildRequires: rpmbuild(macros) >= 1.268
14Requires(post,preun): /sbin/chkconfig
15Requires: portmap
16Requires: rc-scripts
17BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19%description
20The bootparamd process provides bootparamd, a server process which
21provides the information needed by diskless clients in order for them
22to successfully boot. Bootparamd looks first in /etc/bootparams for an
23entry for that particular client; if a local bootparams file doesn't
24exist, it looks at the appropriate Network Information Service (NIS)
25map. Some network boot loaders (notably Sun's) rely on special boot
26server code on the server, in addition to the rarp and tftp servers.
27This bootparamd server process is compatible with SunOS bootparam
28clients and servers which need that boot server code.
29
30%description -l pl.UTF-8
31Pakiet zawiera program bootparamd - demon, który zapewnia informacje
32potrzebne dla uruchomienia bezdyskowych klientów. bootparamd szuka w
33/etc/bootparams wpisu dla konkretnego klienta; jeżeli plik ten nie
34istnieje, szuka odpowiedniej mapy NIS. Niektóre sieciowe bootloadery
35(np. Suna) polegają na specjalnym kodzie bootującym na serwerze. Ten
36bootparamd jest kompatybilny z klientami bootparam na SunOS-ie i
37serwerami potrzebującymi tego kodu.
38
39%prep
40%setup -q -n netkit-%{name}-%{version}
41%patch0 -p1
42
43%build
44./configure \
45 --with-c-compiler="%{__cc}"
46%{__make} CFLAGS="%{rpmcflags}"
47
48%install
49rm -rf $RPM_BUILD_ROOT
50install -d $RPM_BUILD_ROOT{%{_bindir},%{_sbindir},%{_mandir}/man8} \
51 $RPM_BUILD_ROOT/etc/rc.d/init.d
52
53%{__make} install \
54 INSTALLROOT=$RPM_BUILD_ROOT \
55 MANDIR=%{_mandir}
56
57install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/rpc.bootparamd
58
59%clean
60rm -rf $RPM_BUILD_ROOT
61
62%post
63/sbin/chkconfig --add rpc.bootparamd
64%service rpc.bootparamd restart "rpc.bootparamd server"
65
66%preun
67if [ "$1" = "0" ]; then
68 %service rpc.bootparamd stop
69 /sbin/chkconfig --del rpc.bootparamd
70fi
71
72%files
73%defattr(644,root,root,755)
74%doc ChangeLog README
75%attr(754,root,root) /etc/rc.d/init.d/rpc.bootparamd
76%attr(755,root,root) %{_sbindir}/rpc.bootparamd
77%attr(755,root,root) %{_bindir}/callbootd
78%{_mandir}/man[58]/*
This page took 0.026635 seconds and 4 git commands to generate.