1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
Name: diod
Version: 1.0.13
Release: 1
Summary: I/O forwarding server for 9P.
License: GPL
Group: Applications/System
# URL: http://sourceforge.net/projects/npfs
Source0: %{name}-%{version}.tar.gz
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: tcp_wrappers-devel
BuildRequires: lua-devel
BuildRequires: munge-devel
BuildRequires: ncurses-devel
BuildRequires: libcap-devel
BuildRequires: libibverbs-devel librdmacm-devel
BuildRequires: gperftools-devel
%description
diod is a 9P server used in combination with the kernel v9fs file
system for I/O forwarding on Linux clusters.
%prep
%setup -q
%build
%configure --with-tcmalloc
make CFLAGS="-Werror -O2 -g"
%check
make check CFLAGS=-Werror
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
# Kludge to install diodmount as a mount helper.
mkdir -p $RPM_BUILD_ROOT/sbin
mv $RPM_BUILD_ROOT%{_sbindir}/diodmount \
$RPM_BUILD_ROOT/sbin/mount.diod
mv $RPM_BUILD_ROOT%{_mandir}/man8/diodmount.8 \
$RPM_BUILD_ROOT%{_mandir}/man8/mount.diod.8
%clean
rm -rf ${RPM_BUILD_ROOT}
%post
if [ -x /sbin/chkconfig ]; then /sbin/chkconfig --add diod; fi
%preun
if [ "$1" = 0 ]; then
%{_sysconfdir}/init.d/diod stop >/dev/null 2>&1 || :
if [ -x /sbin/chkconfig ]; then /sbin/chkconfig --del diod; fi
fi
%files
%defattr(-,root,root)
%doc AUTHORS COPYING README INSTALL ChangeLog
%{_sbindir}/*
/sbin/*
%{_mandir}/man8/*
%{_mandir}/man5/*
%attr(0755,root,root) %{_sysconfdir}/init.d/diod
%config(noreplace) %attr(0755,root,root) %{_sysconfdir}/auto.diod
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/diod.conf
|