2006-04-22 12:19:27 +00:00
|
|
|
Name: cachefilesd
|
2006-06-09 14:48:27 +00:00
|
|
|
Version: 0.3
|
2006-04-22 12:19:27 +00:00
|
|
|
Release: 1
|
|
|
|
Summary: CacheFiles userspace management daemon
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
License: GPL
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
2006-06-09 14:48:27 +00:00
|
|
|
Source0: cachefilesd-0.3.tar.bz2
|
2006-04-22 12:19:27 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The cachefilesd daemon manages the caching files and directory that are
|
|
|
|
that are used by network filesystems such a AFS and NFS to
|
|
|
|
do persistent caching to the local disk.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ifarch s390 s390x
|
|
|
|
PIE="-fPIE"
|
|
|
|
%else
|
|
|
|
PIE="-fpie"
|
|
|
|
%endif
|
|
|
|
export PIE
|
|
|
|
CFLAGS="`echo $RPM_OPT_FLAGS $ARCH_OPT_FLAGS $PIE`"
|
|
|
|
|
|
|
|
aclocal
|
|
|
|
automake --add-missing
|
|
|
|
autoconf
|
|
|
|
%configure \
|
|
|
|
CFLAGS="$CFLAGS" \
|
|
|
|
CPPFLAGS="$DEFINES" \
|
|
|
|
LDFLAGS="-pie" \
|
|
|
|
--prefix=%{buildroot}
|
|
|
|
|
|
|
|
make all
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
mkdir -p %{buildroot}/sbin
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/rc.d/init.d
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/{man5,man8}
|
|
|
|
make DESTDIR=%{buildroot} install
|
|
|
|
install -m 644 etc/cachefilesd.conf %{buildroot}%{_sysconfdir}
|
|
|
|
install -m 755 etc/cachefilesd.initd %{buildroot}%{_sysconfdir}/rc.d/init.d/cachefilesd
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
|
|
|
%postun
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2006-05-15 15:11:18 +00:00
|
|
|
%doc AUTHORS ChangeLog README
|
2006-04-22 12:19:27 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/cachefilesd.conf
|
|
|
|
%config %{_sysconfdir}/rc.d/init.d/cachefilesd
|
|
|
|
%{_sbindir}/cachefilesd
|
|
|
|
%{_mandir}/*/*
|
|
|
|
|
|
|
|
%changelog
|
2006-06-09 14:48:27 +00:00
|
|
|
* Fri Jun 9 2006 Steve Dickson <steved@redhat.com> 0.3-1
|
|
|
|
- Incorporated David Howells manual page updates
|
|
|
|
|
2006-06-08 17:11:51 +00:00
|
|
|
* Thu Jun 8 2006 Steve Dickson <steved@redhat.com> 0.2-1
|
|
|
|
- Made the daemon 64-bit application.
|
|
|
|
- Changed the syslog logging to log the daemon's PID
|
|
|
|
- Changed OS error logging to log errno number as well the string
|
|
|
|
|
2006-04-22 12:19:27 +00:00
|
|
|
* Sat Apr 22 2006 Steve Dickson <steved@redhat.com> 0.1-1
|
|
|
|
- Initial commit
|
|
|
|
|