]> git.pld-linux.org Git - packages/rpcbind.git/blame - rpcbind.spec
- added systemd services
[packages/rpcbind.git] / rpcbind.spec
CommitLineData
ab1fd8f8 1Summary: Universal addresses to RPC program number mapper
b040aaa7 2Summary(pl.UTF-8): Demon odwzorowujący adresy uniwersalne na numery programów RPC
ab1fd8f8 3Name: rpcbind
3bcf7d5c 4Version: 0.2.0
91d7b714 5Release: 3
ab1fd8f8
JR
6License: GPL
7Group: Daemons
6ce3323f 8Source0: http://dl.sourceforge.net/rpcbind/%{name}-%{version}.tar.bz2
3bcf7d5c 9# Source0-md5: 1a77ddb1aaea8099ab19c351eeb26316
ab1fd8f8
JR
10Source1: %{name}.init
11Source2: %{name}.sysconfig
04bc328c
JR
12Patch0: %{name}-libwrap.patch
13Patch1: %{name}-syslog.patch
57474918 14Patch2: %{name}-sunrpc.patch
d8947740
JR
15Patch3: %{name}-usage.patch
16Patch4: %{name}-SO_REUSEADDR.patch
17Patch5: %{name}-nofork.patch
91d7b714 18Patch6: %{name}-tcp-addrs.patch
4f276cf9
AM
19# http://nfsv4.bullopensource.org/doc/tirpc_rpcbind.php
20URL: http://sourceforge.net/projects/rpcbind/
ab1fd8f8
JR
21BuildRequires: autoconf
22BuildRequires: automake
04bc328c 23BuildRequires: libtirpc-devel >= 1:0.1.10
5cabda1b 24BuildRequires: libtool
ab1fd8f8
JR
25BuildRequires: libwrap-devel
26BuildRequires: rpmbuild(macros) >= 1.228
27Requires(post,preun): /sbin/chkconfig
28Requires: /sbin/chkconfig
2db5233f 29Requires: rc-scripts >= 0.4.1.6
bad88060 30Provides: portmap = 8.0
ab1fd8f8 31Provides: user(rpc)
b040aaa7
JB
32Obsoletes: portmap
33Conflicts: clusternfs < 3.0-0.rc2.3
34Conflicts: flixengine < 8.0.8.2-1
123d354b
JR
35Conflicts: nfs-utils < 1.1.0-0.rc2.1
36Conflicts: quota-rquotad < 1:3.14-4
ab1fd8f8
JR
37BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
38
39%description
40The rpcbind utility is a server that converts RPC program numbers into
b040aaa7 41universal addresses. It must be running on the host to be able to make
ab1fd8f8
JR
42RPC calls on a server on that machine.
43
b040aaa7
JB
44%description -l pl.UTF-8
45Narzędzie rpcbind to serwer konwertujący numery programów RPC na
46adresy uniwersalne. Musi działać na maszynie, aby można było wykonywać
47wywołania RPC na serwerze na tej maszynie.
48
ab1fd8f8
JR
49%prep
50%setup -q
04bc328c
JR
51%patch0 -p1
52%patch1 -p1
57474918 53%patch2 -p1
d8947740
JR
54%patch3 -p1
55%patch4 -p1
56%patch5 -p1
91d7b714 57%patch6 -p1
ab1fd8f8
JR
58
59%build
5cabda1b 60%{__libtoolize}
ab1fd8f8 61%{__aclocal}
ab1fd8f8 62%{__autoheader}
b49db8b2 63%{__autoconf}
ab1fd8f8 64%{__automake}
b49db8b2
JR
65%configure \
66 --enable-libwrap \
67 --enable-warmstarts \
68 --with-statedir=/var/lib/rpcbind \
69 --with-rpcuser=rpc
ab1fd8f8
JR
70%{__make}
71
72%install
73rm -rf $RPM_BUILD_ROOT
74install -d $RPM_BUILD_ROOT{/sbin,%{_sbindir},/etc/{sysconfig,rc.d/init.d}} \
75 $RPM_BUILD_ROOT{%{_mandir}/man8,%{_var}/lib/%{name}}
76
77install src/rpcbind $RPM_BUILD_ROOT/sbin
78install src/rpcinfo $RPM_BUILD_ROOT%{_sbindir}
79
80install man/{rpcbind,rpcinfo}.8 $RPM_BUILD_ROOT%{_mandir}/man8
81
82install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/rpcbind
83install %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/rpcbind
84
85%clean
86rm -rf $RPM_BUILD_ROOT
87
88%pre
89%useradd -u 22 -d /usr/share/empty -s /bin/false -c "Portmapper RPC User" -g nobody rpc
90
91%post
92/sbin/chkconfig --add rpcbind
93%service rpcbind restart
94
95%postun
96if [ "$1" = "0" ]; then
97 %userremove rpc
98fi
99
100%preun
101if [ "$1" = "0" ]; then
102 %service -q rpcbind stop
103 /sbin/chkconfig --del rpcbind
104fi
105
106%files
107%defattr(644,root,root,755)
108%doc AUTHORS ChangeLog NEWS README
109%attr(754,root,root) /etc/rc.d/init.d/rpcbind
110%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/rpcbind
111%attr(755,root,root) /sbin/*
112%attr(755,root,root) %{_sbindir}/*
113%{_mandir}/man8/*.8*
114%dir %attr(700,rpc,root) %{_var}/lib/%{name}
This page took 0.098721 seconds and 4 git commands to generate.