From b6ace64dac9652444f8beae610f7c57c12582583 Mon Sep 17 00:00:00 2001 From: Olivier Fourdan <fourdan.olivier@wanadoo.fr> Date: Fri, 23 Apr 2004 22:11:19 +0000 Subject: [PATCH] Try to speed up install by using tar to copy the files (Old svn revision: 11724) --- themes/default-4.0/Makefile.am | 11 +++++++++++ themes/default-4.0/Makefile.in | 20 +++++++++++--------- themes/default/Makefile.am | 11 +++++++++++ themes/default/Makefile.in | 20 +++++++++++--------- themes/opta/Makefile.am | 11 +++++++++++ themes/opta/Makefile.in | 20 +++++++++++--------- themes/synthetic/Makefile.am | 11 +++++++++++ themes/synthetic/Makefile.in | 20 +++++++++++--------- 8 files changed, 88 insertions(+), 36 deletions(-) diff --git a/themes/default-4.0/Makefile.am b/themes/default-4.0/Makefile.am index 94dbc2736..7ab48c539 100644 --- a/themes/default-4.0/Makefile.am +++ b/themes/default-4.0/Makefile.am @@ -54,3 +54,14 @@ theme_DATA = \ top-right-active.xpm \ top-right-inactive.xpm EXTRA_DIST = $(theme_DATA) + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* diff --git a/themes/default-4.0/Makefile.in b/themes/default-4.0/Makefile.in index 2dda5a6eb..838f6b603 100644 --- a/themes/default-4.0/Makefile.in +++ b/themes/default-4.0/Makefile.in @@ -296,15 +296,6 @@ clean-libtool: distclean-libtool: -rm -f libtool uninstall-info-am: -install-themeDATA: $(theme_DATA) - @$(NORMAL_INSTALL) - $(mkdir_p) $(DESTDIR)$(themedir) - @list='$(theme_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f"; \ - $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f; \ - done uninstall-themeDATA: @$(NORMAL_UNINSTALL) @@ -432,6 +423,17 @@ uninstall-am: uninstall-info-am uninstall-themeDATA mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am uninstall-themeDATA + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/themes/default/Makefile.am b/themes/default/Makefile.am index b150feebf..006c5fe06 100644 --- a/themes/default/Makefile.am +++ b/themes/default/Makefile.am @@ -56,3 +56,14 @@ theme_DATA = \ top-right-active.xpm \ top-right-inactive.xpm EXTRA_DIST = $(theme_DATA) + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* diff --git a/themes/default/Makefile.in b/themes/default/Makefile.in index cef9a7720..0f666c97e 100644 --- a/themes/default/Makefile.in +++ b/themes/default/Makefile.in @@ -298,15 +298,6 @@ clean-libtool: distclean-libtool: -rm -f libtool uninstall-info-am: -install-themeDATA: $(theme_DATA) - @$(NORMAL_INSTALL) - $(mkdir_p) $(DESTDIR)$(themedir) - @list='$(theme_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f"; \ - $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f; \ - done uninstall-themeDATA: @$(NORMAL_UNINSTALL) @@ -434,6 +425,17 @@ uninstall-am: uninstall-info-am uninstall-themeDATA mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am uninstall-themeDATA + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/themes/opta/Makefile.am b/themes/opta/Makefile.am index 99c24f229..d6d53a0df 100644 --- a/themes/opta/Makefile.am +++ b/themes/opta/Makefile.am @@ -60,3 +60,14 @@ theme_DATA = \ top-right-active.xpm \ top-right-inactive.xpm EXTRA_DIST = $(theme_DATA) + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* diff --git a/themes/opta/Makefile.in b/themes/opta/Makefile.in index 244c3ec73..68e42d7a5 100644 --- a/themes/opta/Makefile.in +++ b/themes/opta/Makefile.in @@ -302,15 +302,6 @@ clean-libtool: distclean-libtool: -rm -f libtool uninstall-info-am: -install-themeDATA: $(theme_DATA) - @$(NORMAL_INSTALL) - $(mkdir_p) $(DESTDIR)$(themedir) - @list='$(theme_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f"; \ - $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f; \ - done uninstall-themeDATA: @$(NORMAL_UNINSTALL) @@ -438,6 +429,17 @@ uninstall-am: uninstall-info-am uninstall-themeDATA mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am uninstall-themeDATA + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/themes/synthetic/Makefile.am b/themes/synthetic/Makefile.am index 9919067f6..8858a05f4 100644 --- a/themes/synthetic/Makefile.am +++ b/themes/synthetic/Makefile.am @@ -54,3 +54,14 @@ theme_DATA = \ top-right-active.xpm \ top-right-inactive.xpm EXTRA_DIST = $(theme_DATA) + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* diff --git a/themes/synthetic/Makefile.in b/themes/synthetic/Makefile.in index e84396454..a78862351 100644 --- a/themes/synthetic/Makefile.in +++ b/themes/synthetic/Makefile.in @@ -296,15 +296,6 @@ clean-libtool: distclean-libtool: -rm -f libtool uninstall-info-am: -install-themeDATA: $(theme_DATA) - @$(NORMAL_INSTALL) - $(mkdir_p) $(DESTDIR)$(themedir) - @list='$(theme_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f"; \ - $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f; \ - done uninstall-themeDATA: @$(NORMAL_UNINSTALL) @@ -432,6 +423,17 @@ uninstall-am: uninstall-info-am uninstall-themeDATA mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-info-am uninstall-themeDATA + +install-themeDATA: + rm -Rf $(DESTDIR)$(themedir); \ + $(mkinstalldirs) $(DESTDIR)$(themedir); \ + tar cf - $(theme_DATA) | (cd $(DESTDIR)$(themedir) ; tar xf - );\ + if test `id -u` = "0"; then \ + chown root:root $(DESTDIR)$(themedir); \ + chown root:root $(DESTDIR)$(themedir)/*; \ + fi; \ + chmod 755 $(DESTDIR)$(themedir); \ + chmod 644 $(DESTDIR)$(themedir)/* # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: -- GitLab