Added RPM patches submitted by Robert Napier

This commit is contained in:
Micah Anderson 2006-08-11 13:46:57 +00:00
parent 6764e88373
commit 28338e91c3
7 changed files with 55 additions and 21 deletions

View File

@ -9,6 +9,7 @@ intrigeri@boum.org -- dup handler, pgsql handler, vserver support, bug fixes
Charles Lepple -- trac handler
Petr Klíma <petr.klima@madeta-group.cz> -- autotools, RPM support and sys checks
paulv@bikkel.org -- rsnap handler
Robert Napier -- improved RPM build
Patches:
@ -19,4 +20,3 @@ garcondumonde@riseup.net
Martin Krafft madduck@debian.org -- admingroup patch
Anarcat
rhatto
Robert Napier -- improved RPM build

View File

@ -69,7 +69,9 @@ version 0.9.4 -- unreleased
changed cron permissions to 644
minor documentation fixes
improved RPM build process allowing 'make rpm-package' and 'make
srpm-package' targets (thanks Robert Napier)
srpm-package' targets, also fixes permissions on man directories,
cleans up RPM-related files during distclean, and adds default
EDITOR for "autogen.sh -f" if none is set. (thanks Robert Napier)
version 0.9.3 -- February 1st, 2006
autotools fixes

View File

@ -6,34 +6,40 @@ EXTRA_DIST = README COPYING AUTHORS INSTALL NEWS ChangeLog \
SUBDIRS = etc examples handlers lib man src
rpm_topdir=`cd $(top_srcdir) && pwd`/rpm
local_rpm_topdir=`cd $(top_srcdir) && pwd`/rpm
rpm-package: dist
if test x$(HAVE_RPM) = xyes ; then \
mkdir -p $(rpm_topdir) ; \
cd $(rpm_topdir) ; \
mkdir -p $(local_rpm_topdir) ; \
cd $(local_rpm_topdir) ; \
mkdir -p BUILD RPMS SOURCES SPECS ; \
cd SOURCES ; \
ln -sf ../../$(distdir).tar.gz ; \
$(LN_S) ../../$(distdir).tar.gz ; \
cd .. ; \
cd SPECS ; \
ln -sf ../../backupninja.spec . ; \
cd .. ; \
$(LN_S) ../../backupninja.spec . ; \
cd .. ; \
rpmbuild --define "_topdir `cd . && pwd`" -bb SPECS/backupninja.spec && \
echo "Package successfully built in `pwd`/RPMS." ; \
else \
echo "Error: RPM executable and/or source directory not found." ; \
fi
srpm-package: dist
if test x$(HAVE_RPM) = xyes ; then \
cd $(rpm_topdir) ; \
if test x$(HAVE_RPM) = xyes ; then \
mkdir -p $(local_rpm_topdir) ; \
cd $(local_rpm_topdir) ; \
mkdir -p BUILD SRPMS SOURCES SPECS ; \
cd SOURCES ; \
ln -s ../../$(distdir).tar.gz ; \
$(LN_S) ../../$(distdir).tar.gz ; \
cd .. ; \
cd SPECS ; \
ln -sf ../../backupninja.spec .
$(LN_S) ../../backupninja.spec . \
cd .. ; \
rpmbuild --define "_topdir `cd . && pwd`" -bs SPECS/backupninja.spec && \
echo "Package successfully built in `pwd`/SRPMS." ; \
else \
echo "Error: RPM executable and/or source directory not found." ; \
fi
echo "Error: RPM executable and/or source directory not found." ; \
fi
clean-local:
-rm -rf $(local_rpm_topdir)

View File

@ -1,5 +1,10 @@
#!/bin/bash
if [ "x$EDITOR" = "x" ];
then
EDITOR=vi
fi
if [ "x$1" = "x-f" ]
then
autoscan

View File

@ -38,22 +38,26 @@ touch "%{buildroot}%{_localstatedir}/log/backupninja.log"
#rm -fr %{buildroot}
%files
%defattr(0750,root,root)
%defattr(-,root,root,-)
%{_sbindir}/*
%{_datadir}/backupninja/*
%{_libdir}/backupninja/*
%{_sysconfdir}/cron.d/backupninja
%{_sysconfdir}/logrotate.d/backupninja
%defattr(0600,root,root)
%config %{_sysconfdir}/cron.d/backupninja
%config %{_sysconfdir}/logrotate.d/backupninja
%config(noreplace) %{_sysconfdir}/backupninja.conf
%dir %{_sysconfdir}/backup.d
%dir %{_localstatedir}/backups
%ghost %{_localstatedir}/log/backupninja.log
%defattr(0644,root,root)
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
%{_mandir}/*
%{_mandir}/man1/*
%{_mandir}/man5/*
%defattr(0640,root,root,0750)
%dir %{_sysconfdir}/backup.d
%changelog
* Mon Apr 29 2002 Petr Klima <Petr.Klima@madeta-group.cz> 0.7.0

View File

@ -40,6 +40,22 @@ if test "x$ac_cv_have_rpm" = "xyes"; then
fi
AC_SUBST(HAVE_RPM)
AC_CHECK_PROG(ac_cv_have_rpm, rpm, "yes", "no")
if test "x$ac_cv_have_rpm" = "xyes"; then
rpm --define '_topdir /tmp' > /dev/null 2>&1
AC_MSG_CHECKING(to see if we can redefine _topdir)
if test $? -eq 0 ; then
AC_MSG_RESULT(yes)
HAVE_RPM=yes
else
AC_MSG_RESULT(no. You'll have to build packages manually.)
HAVE_RPM=no
fi
fi
AC_SUBST(HAVE_RPM)
AC_PROG_LN_S
AC_SUBST([CFGDIR], "${sysconfdir}")
AC_CONFIG_FILES([Makefile

View File

@ -276,6 +276,7 @@ fi
fi
fi
done
fi
# clean up tmp config file
if [ "$dbusername" != "" -a "$dbpassword" != "" ]