]> git.pld-linux.org Git - packages/cachefilesd.git/blobdiff - cachefilesd.spec
add rc-scripts initscript (not tested)
[packages/cachefilesd.git] / cachefilesd.spec
index 999f1aed4b68e66f8bafdc2728cfd287f5448ebc..1be060e048ee65a887df8ed865dab366d892f0f8 100644 (file)
@@ -1,14 +1,17 @@
 Summary:       CacheFiles user-space management daemon
 Name:          cachefilesd
 Version:       0.10.5
-Release:       1
+Release:       2
 License:       GPL v2
 Group:         Daemons
-URL:           http://people.redhat.com/~dhowells/fscache/
 Source0:       http://people.redhat.com/dhowells/fscache/%{name}-%{version}.tar.bz2
 # Source0-md5: 9e85dd0ace346ff47e188ded8c05ab3b
+Source1:       %{name}.init
+Patch0:                %{name}-cpueating.patch
+URL:           http://people.redhat.com/~dhowells/fscache/
 Requires(post,preun):  /sbin/chkconfig
 Requires(post,preun,postun):   systemd-units >= 38
+Requires:      rc-scripts
 Requires:      systemd-units >= 38
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -19,36 +22,36 @@ persistent caching to the local disk.
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
-%{__make} CFLAGS="%{rpmcppflags} %{rpmcflags}" \
-       all
+%{__make} all \
+       CC="%{__cc}" \
+       CFLAGS="%{rpmcppflags} %{rpmcflags}"
 
 %install
 rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{/sbin,%{_mandir}/man{5,8},%{systemdunitdir},/etc/rc.d/init.d,%{_localstatedir}/cache/fscache}
 
-install -d $RPM_BUILD_ROOT/sbin
-install -d $RPM_BUILD_ROOT%{systemdunitdir}
-install -d $RPM_BUILD_ROOT%{_mandir}/{man5,man8}
-install -d $RPM_BUILD_ROOT%{_localstatedir}/cache/fscache
-
-%{__make} DESTDIR=$RPM_BUILD_ROOT install
+%{__make} install \
+       INSTALL="install -p" \
+       DESTDIR=$RPM_BUILD_ROOT
 
-install cachefilesd.conf $RPM_BUILD_ROOT%{_sysconfdir}
-install cachefilesd.service $RPM_BUILD_ROOT%{systemdunitdir}/cachefilesd.service
+install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/cachefilesd
+cp -p cachefilesd.service $RPM_BUILD_ROOT%{systemdunitdir}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %post
-#/sbin/chkconfig --add cachefilesd
+/sbin/chkconfig --add cachefilesd
 %service cachefilesd restart "cachefilesd daemon"
 %systemd_post cachefilesd.service
 
 %preun
 if [ "$1" = "0" ]; then
+       /sbin/chkconfig --del cachefilesd
        %service cachefilesd stop
-        #/sbin/chkconfig --del cachefilesd
 fi
 %systemd_preun cachefilesd.service
 
@@ -61,7 +64,8 @@ fi
 %doc selinux/*.fc selinux/*.if selinux/*.te
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cachefilesd.conf
 %attr(755,root,root) /sbin/cachefilesd
-%{systemdunitdir}/cachefilesd.service
 %{_mandir}/man5/cachefilesd.conf.5*
 %{_mandir}/man8/cachefilesd.8*
+%attr(754,root,root) /etc/rc.d/init.d/cachefilesd
+%{systemdunitdir}/cachefilesd.service
 %dir %{_localstatedir}/cache/fscache
This page took 0.098706 seconds and 4 git commands to generate.