added a chmod on mkinstalldirs just before using it, otherwise it
[privoxy.git] / GNUmakefile.in
index 7d9e7b8..4572e6b 100644 (file)
@@ -1,6 +1,6 @@
 # Note:  Makefile is built automatically from Makefile.in
 #
-# $Id: GNUmakefile.in,v 1.124 2002/10/13 19:58:09 hal9 Exp $
+# $Id: GNUmakefile.in,v 1.130 2002/10/22 05:49:14 hal9 Exp $
 #
 # Written by and Copyright (C) 2001 the SourceForge
 # Privoxy team. http://www.privoxy.org/
@@ -93,10 +93,12 @@ PROGRAM    = privoxy@EXEEXT@
 CC         = @CC@
 ECHO       = echo
 GZIP_PROG  = gzip
+# Install usage should be compatible with install-sh.
 INSTALL    = @INSTALL@
 INSTALL_P  = -m 0755  
-INSTALL_T  = -m 064
+INSTALL_T  = -m 066
 INSTALL_D  = -m 0755 -d
+INSTALL_R  = 0660
 # install options for superuser install
 #INSTALL_S  = -g @GROUP@ -o @USER@ 
 # id -u is not universal. FIXME: need to set from configure. Breaks on
@@ -118,21 +120,13 @@ TOUCH      = touch
 KILL       = kill
 CHMOD      = chmod
 CHOWN      = chown
-WDUMP      = @WDUMP@ -dump
-JADECAT    = @JADECAT@
-JADEBIN    = @JADEBIN@
 DOC_STATUS = @DOC_STATUS@
 # Note: Please make sure that -d ldp.dsl\#html stays the last option to
 #       $(JADEBIN), because for some targets "-notoc" will be appended
 #       to it (--> "ldp.dsl\#html-notoc"). 
-DB         = $(JADEBIN) $(JADECAT) -i$(DOC_STATUS) -ihtml -t sgml  -D.. -d ldp.dsl\#html
-MAN2HTML   = @MAN2HTML@
-G2H_CMD    = groff -mandoc -Thtml
 TARGET_OS  = @host@
 PERL       = perl
 DOC_DIR    = doc/source
-DOC_TMP    = $(DOC_DIR)/tmp
-DKPREFIX   = @DKPREFIX@
 
 #User Group paras
 USER       = @USER@
@@ -157,16 +151,14 @@ RPM_BASE = @RPM_BASE@
 #############################################################################
 # We include these files in our distributions
 #############################################################################
+CONFIGS = config trust default.action standard.action user.action default.filter
 # take care that no CVS .cvsignore or other crappy files
 # are included here
 # and escape every '#' in the find. doh.
-CONFIG_FILES = config trust \
-               default.action \
-               standard.action user.action  \
-               default.filter \
+CONFIG_FILES = $(CONFIGS) \
                `find templates/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"`
 
-DOC_FILES = AUTHORS LICENSE README ChangeLog \
+DOC_FILES = AUTHORS LICENSE README ChangeLog INSTALL \
                `find doc/text/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"` \
                `find doc/webserver/ -name "*.html" | grep -v "\(webserver\|team\)\/index\.html"` \
                `find doc/webserver/ -name "*.css"` \
@@ -285,6 +277,7 @@ $(DIR_PRIVOXY_OBJ)/%.o: $(DIR_PRIVOXY_SRC_PCRE)/%.c $(DIR_PRIVOXY_OBJ)
        $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
 
 $(DIR_PRIVOXY_OBJ):
+       $(CHMOD) 0755 $(MKDIR)
        $(MKDIR) obj
 
 #############################################################################
@@ -849,24 +842,35 @@ GROUP_T:=$(shell if [ x$(GROUP) = x ] && [ x$(USER) != x ];then \
                 $(ECHO) "$(GROUP)";\
         fi)
 
-install-strip:  
-       $(MAKE) INSTALL_P='$(INSTALL_P) -s'  install
+install-strip:
+       $(MAKE) install STRIP=-s
 
+# FIXME: Test USER and GROUP on Slack to make sure this works as 
+# intended.
+#
 # FIXME: id handling needs help, probably via configure, since 'id -u' is not 
-# universally reliable (eg Solaris). Group handling is weak. If group is null,
-# we blindly assume there is a group that matches $(USER). configure only 
-# tests for the first group outputted from groups command. Perhaps the whole 
-# user/group validation should be done here. hal.
+# universally reliable (eg Solaris). Group handling could be better. 
+# Perhaps the whole user/group validation should be done here.
 install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
+       # Quick test for valid USER.
+       if [ -n "$(USER)" ]; then \
+               id $(USER) >/dev/null || exit 1;\
+       fi
+       # Test for valid group.
+       if [ -n "$(GROUP_T)" ] && [ -n "$(USER)" ] && ! groups $(USER) | $(GREP) "\<$(GROUP_T)\>" >/dev/null; then \
+               $(ECHO) Group $(GROUP_T) for User $(USER) is invalid && exit 1 ;\
+       fi
+       
        $(ECHO) "Creating directories, and preparing Privoxy installation"
        $(CHMOD) 0755 $(MKDIR)
        $(MKDIR) $(SBIN_DEST) $(prefix) $(CONF_DEST) $(CONF_DEST)/templates $(SHARE_DEST) \
-          $(MAN_DEST) $(LOG_DEST) $(PID_DEST)
-               
-       # Install the executable binary
+               $(LOG_DEST) $(PID_DEST)
+       # Install the executable binary, strip if invoked as install-strip
+       test -n "$(STRIP)" &&\
+       $(ECHO) Installing $(PROGRAM) stripped executable to $(SBIN_DEST) ||\
        $(ECHO) Installing $(PROGRAM) executable to $(SBIN_DEST)
-       $(INSTALL) $(INSTALL_P) $(PROGRAM) $(SBIN_DEST)
-
+       $(INSTALL) $(INSTALL_P) $(STRIP) $(PROGRAM) $(SBIN_DEST)
+     
        # Install the DOCS and man page 
        -if [ $(check_doc) = 0 ]; then \
                DOC=$(DOC_DEST) ;\
@@ -874,22 +878,31 @@ install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
                DOC=$(prefix)/doc/privoxy ;\
        fi;\
        $(MKDIR) $$DOC $$DOC/user-manual $$DOC/faq $$DOC/developer-manual \
-            $$DOC/man-page $$DOC/images ;\
+            $$DOC/man-page $$DOC/images $(MAN_DEST) ;\
        if [ -d "$(DOK_WEB)" ]; then \
                $(ECHO) Installing FAQ, Manual, and other docs to $$DOC;\
-               $(INSTALL) $(INSTALL_T) $(DOK_WEB)/user-manual/*html $$DOC/user-manual;\
-               $(INSTALL) $(INSTALL_T) $(DOK_WEB)/faq/*html $$DOC/faq;\
+          for i in user-manual developer-manual faq; do \
+               for ii in $(DOK_WEB)/$$i/*html; do \
+                    $(INSTALL) $(INSTALL_T) $$ii $$DOC/$$i;\
+               done ;\
+          done ;\
+          for i in $(DOK_WEB)/images/*jpg; do \
+               $(INSTALL) $(INSTALL_T) $$i $$DOC/images;\
+          done ;\
                $(INSTALL) $(INSTALL_T) $(DOK_WEB)/man-page/*html $$DOC/man-page;\
-               $(INSTALL) $(INSTALL_T) $(DOK_WEB)/developer-manual/*html $$DOC/developer-manual;\
-               $(INSTALL) $(INSTALL_T) $(DOK_WEB)/images/*jpg $$DOC/images;\
                $(INSTALL) $(INSTALL_T) $(DOK_WEB)/privoxy-index.html $$DOC/index.html;\
-               $(INSTALL) $(INSTALL_T) AUTHORS LICENSE README ChangeLog $(DOK_WEB)/p_doc.css $$DOC;\
+               $(INSTALL) $(INSTALL_T) AUTHORS $$DOC;\
+               $(INSTALL) $(INSTALL_T) LICENSE $$DOC;\
+               $(INSTALL) $(INSTALL_T) README $$DOC;\
+               $(INSTALL) $(INSTALL_T) ChangeLog $$DOC;\
+               $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $$DOC;\
        fi
-       $(ECHO) Installing man page to $(MAN_DEST)/privoxy.1.gz
-       -$(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
+       # Not all platforms support gzipped man pages.
+       $(ECHO) Installing man page to $(MAN_DEST)/privoxy.1
+       -$(INSTALL) $(INSTALL_T) privoxy.1  $(MAN_DEST)/privoxy.1
 
        # Change the config file default directories according to the configured ones
-       $(ECHO) Rewriting config
+       $(ECHO) Rewriting config for this installation
        if [ -f config.base ] ; then \
                $(CAT) config >config~ ;\
                $(MV) config.base config ;\
@@ -901,14 +914,19 @@ install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
 
        # Install the config support files. Test for root install, and abort 
        # if there is no privoxy user, and no other user was enabled during 
-       # configure.
+       # configure. Later, install init script if appropriate.
        $(ECHO) Installing templates to $(CONF_DEST)/templates
-       $(INSTALL) $(INSTALL_T) `find templates -type f` $(CONF_DEST)/templates
+       for i in `find templates -type f`; do \
+               $(INSTALL) $(INSTALL_T) $$i $(CONF_DEST)/templates ;\
+       done
+
        if [ "`id |sed 's/(.*//' |sed 's/.*=//'`" = "0" ] ;then\
-               if [ x$(USER) = x ]; then \
+               if [ x$(USER) = x ] || [ $(USER) = root ]; then \
                        if [ "`id privoxy`" ]; then \
-                               $(ECHO) "Setting user and group to privoxy";\
-                               INSTALL_CONF="$(INSTALL_T) -b -g privoxy -o privoxy" ;\
+                               $(ECHO) "Warning: Setting user and group to privoxy";\
+                               INSTALL_CONF="$(INSTALL_T) -g privoxy -o privoxy" ;\
+                               USER=privoxy ;\
+                               GROUP_T=privoxy ;\
                        else \
                                $(ECHO)  "******************************************************************" ;\
                                $(ECHO)  " WARNING! WARNING! installing config files as root!" ;\
@@ -920,66 +938,81 @@ install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
                        fi ;\
                else \
                        $(ECHO) "Superuser install, installing config files as $(USER):$(GROUP_T)" ;\
-                       INSTALL_CONF="$(INSTALL_T) -b -o $(USER) -g $(GROUP_T)" ;\
+                       INSTALL_CONF="$(INSTALL_T) -o $(USER) -g $(GROUP_T)" ;\
                fi ;\
        else \
                if [ ! "`id $(USER)`" = "`id`" ] ;then \
                        $(ECHO) "** WARNING ** current install user different from configured user!!" ;\
                        $(ECHO) "Edit may fail." ;\
                fi ;\
-               INSTALL_CONF="$(INSTALL_T) -b " ;\
-       fi ;\
-       $(ECHO) Installing config files to $(CONF_DEST);\
-       $(INSTALL) $$INSTALL_CONF config default.action default.filter standard.action $(CONF_DEST) ;\
-       if [ ! -s "$(CONF_DEST)/user.action" ] ; then \
-               $(INSTALL) $$INSTALL_CONF user.action  $(CONF_DEST) ;\
+               INSTALL_CONF="$(INSTALL_T)" ;\
        fi ;\
-       if [ ! -s "$(CONF_DEST)/trust" ] ; then \
-               $(INSTALL) $$INSTALL_CONF trust  $(CONF_DEST) ;\
+       $(ECHO) Installing configuration files to $(CONF_DEST);\
+       for i in $(CONFIGS); do \
+               if [ -s "$(CONF_DEST)/$$i" ] ; then \
+                       $(ECHO) Installing $$i as $$i.new ;\
+                       $(INSTALL) -m $(INSTALL_R) $$i $(CONF_DEST)/$$i.new || exit 1;\
+                       NEW=1;\
+               else \
+                       if test "$$i" = "config" || test "$$i" = "default.filter"; then \
+                               $(INSTALL) -m $(INSTALL_R) $$i $(CONF_DEST) || exit 1;\
+                       else \
+                               $(INSTALL) -m $(INSTALL_R) $$INSTALL_CONF $$i $(CONF_DEST) || exit 1;\
+                       fi;\
+               fi ;\
+       done ;\
+       if [ -n "$$NEW" ]; then \
+               $(CHMOD) $(INSTALL_R) $(CONF_DEST)/*.new || exit 1 ;\
+               $(ECHO) "Warning: Older config files are preserved. Check new versions for changes!" ;\
        fi ;\
-
-       # Set up the logfiles, mode 0640 for privacy reasons 
-       $(ECHO) Creating logfiles in $(LOG_DEST)
-       $(TOUCH) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile
-       if [ x$(USER) != x ]; then \
-               $(CHOWN) $(USER):$(GROUP_T) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || \
+       [ ! -f $(LOG_DEST)/logfile ] && $(ECHO) Creating logfiles in $(LOG_DEST) || \
+               $(ECHO) Checking logfiles in $(LOG_DEST) ;\
+       $(TOUCH) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || exit 1 ;\
+       if [ x$$USER != x ]; then \
+               $(CHOWN) $$USER:$$GROUP_T $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || \
                $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
        fi ;\
-       $(CHMOD) 0640 $(LOG_DEST)/logfile $(LOG_DEST)/jarfile
-
-       # Install the init and logrotate scripts. Test for Slackware and Red Hat only.
-       # Install if dest is writable and its a system install.
-       if [ "$(prefix)" = "/usr/local" ]; then \
+       $(CHMOD) $(INSTALL_R) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || exit 1 ;\
+       if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
                if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ] && [ -w /etc/rc.d/ ] ; then \
                $(SED) 's+%PROGRAM%+$(PROGRAM)+' slackware/rc.privoxy.orig | \
                $(SED) 's+%SBIN_DEST%+$(SBIN_DEST)+' | \
                $(SED) 's+%CONF_DEST%+$(CONF_DEST)+' | \
-               $(SED) 's+%USER%+$(USER)+' | \
+               $(SED) 's+%USER%+$$USER+' | \
                $(SED) 's+%GROUP%+$(GROUP_T)+' >slackware/rc.privoxy ;\
-               $(INSTALL) $(INSTALL_P) slackware/rc.privoxy /etc/rc.d/ ;\
+                       $(INSTALL) $(INSTALL_P) slackware/rc.privoxy /etc/rc.d/ ;\
                $(ECHO) "Installing for Slackware." ;\
                $(ECHO) "Dont forget to add the rc.privoxy to rc.local if you want it started at every boot" ;\
-          elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ] && [ -w /etc/rc.d/init.d/ ] ; then \
+               elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ] && [ -w /etc/rc.d/init.d/ ] ; then \
                $(ECHO) "Installing init script to /etc/rc.d/init.d/privoxy" ;\
-               $(INSTALL) $(INSTALL_P) privoxy.init /etc/rc.d/init.d/privoxy ;\
-               $(MKDIR) /etc/logrotate.d/ ;\
-               $(ECHO) "Installing logrotate script to /etc/logrotate.d/" ;\
-               $(INSTALL) $(INSTALL_P) privoxy.logrotate /etc/logrotate.d/privoxy ;\
-          elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
-               $(ECHO) "Installing generic init script to /etc/init.d/privoxy" ;\
-               $(INSTALL) $(INSTALL_P) privoxy-generic.init /etc/init.d/privoxy ;\
-          fi ;\
-     else \
-          $(ECHO) "No init script installed, install it manually if needed" ;\
-     fi
+                       $(SED) 's,^PRIVOXY_BIN=.*,PRIVOXY_BIN="/usr/local/sbin/$(PROGRAM)",' privoxy.init |\
+                       $(SED) 's,^PRIVOXY_CONF=.*,PRIVOXY_CONF="$(CONF_DEST)/config",' |\
+                       $(SED) "s,^PRIVOXY_USER=.*,PRIVOXY_USER=$$USER," > init.tmp ;\
+                       $(INSTALL) $(INSTALL_P) init.tmp /etc/rc.d/init.d/privoxy && $(RM) init.tmp;\
+                       $(MKDIR) /etc/logrotate.d/ ;\
+                       $(ECHO) "Installing logrotate script to /etc/logrotate.d/" ;\
+                       $(INSTALL) $(INSTALL_P) privoxy.logrotate /etc/logrotate.d/privoxy ;\
+               elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
+                       $(ECHO) "Installing generic init script to /etc/init.d/privoxy" ;\
+                       $(ECHO) "Please check that the PATHs are correct, and edit if needed." ;\
+                       $(INSTALL) $(INSTALL_P) privoxy-generic.init /etc/init.d/privoxy ;\
+               fi ;\
+       else \
+               $(ECHO) "No init script installed, install it manually if needed" ;\
+       fi
        # mmmmm, good.
        @$(ECHO) "Privoxy installation succeeded!"
        @$(ECHO) "The Privoxy configuration files have been installed in $(CONF_DEST)"
 
-
+# rmdir is used as a precaution since it will not remove non-empty
+# directories. RH init script creates lock file and pid file.
 uninstall: CONF_DEST LOG_DEST PID_DEST check_doc
        $(ECHO) Starting Privoxy uninstallation
        # KILL privoxy if running
+       -if [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ] && [ -w /etc/rc.d/init.d/ ] ; then \
+               /etc/rc.d/init.d/privoxy stop >/dev/null 2>/dev/null ;\
+               chkconfig --del $(PROGRAM) 2>/dev/null;\
+       fi
        -@ test -f $(PID_DEST)/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
           $(KILL) `$(CAT) $(PID_DEST)/privoxy.pid` 
        -@ test -f /var/run/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
@@ -989,17 +1022,16 @@ uninstall: CONF_DEST LOG_DEST PID_DEST check_doc
        $(ECHO) Removing $(PROGRAM) binary
        $(RM) $(SBIN_DEST)/$(PROGRAM) $(SBIN_DEST)/$(PROGRAM)~
 
-       # config files and dir and maybe old install backups
+       # config files and dir, and maybe old install backups
        $(ECHO) Removing $(PROGRAM) config files
-       $(RM) $(CONF_DEST)/config $(CONF_DEST)/default.action $(CONF_DEST)/default.filter \
-               $(CONF_DEST)/trust $(CONF_DEST)/standard.action $(CONF_DEST)/user.action \
-               $(CONF_DEST)/config~ $(CONF_DEST)/default.action~ $(CONF_DEST)/default.filter~ \
-               $(CONF_DEST)/trust~ $(CONF_DEST)/standard.action~ $(CONF_DEST)/user.action~
+       for i in $(CONFIGS); do \
+               $(RM) $(CONF_DEST)/$$i $(CONF_DEST)/$$i~ $(CONF_DEST)/$$i.new ;\
+       done
        $(RM) -r $(CONF_DEST)/templates
        
        # man page and docs
        $(ECHO) Removing $(PROGRAM) docs
-       -$(RM) $(MAN_DEST)/privoxy.1.gz
+       -$(RM) $(MAN_DEST)/privoxy.1*
        -$(RM) -r $(DOC_DEST) || $(RM) -r $(prefix)/doc/privoxy
 
        # Log and jarfile and pidfile
@@ -1010,42 +1042,43 @@ uninstall: CONF_DEST LOG_DEST PID_DEST check_doc
      # destinations.
        $(ECHO) Removing $(PROGRAM) directories
        for i in $(LOG_DEST) $(CONF_DEST); do \
-          if test -d $$i; then \
-               $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
-          fi;\
-     done
+               if test -d $$i; then \
+                       $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
+               fi;\
+       done
        if [  ! "$(prefix)" = "/usr/local" ] ;then \
-          for i in $(MAN_DEST) $(MAN_DIR) $(SHARE_DEST)/doc $(SHARE_DEST) $(SBIN_DEST); do \
-               if test -d $$i; then \
-                    $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
-               fi;\
-          done;\
-          if test $(LOG_DEST) != /var/log/privoxy && test -d $(prefix)/var/log; then \
-               $(RMDIR) $(prefix)/var/log || $(ECHO) "$(prefix)/var/log is not empty, not removed";\
-          fi ;\
-          if test $(PID_DEST) != /var/run && test -d $(prefix)/var/run; then \
-               $(RMDIR) $(prefix)/var/run || $(ECHO) "$(prefix)/var/run is not empty, not removed";\
-          fi ;\
-          if test -d $(prefix)/var && test -d $(prefix)/var; then \
-               $(RMDIR) $(prefix)/var || $(ECHO) "$(prefix)/var is not empty, not removed" ;\
-          fi ;\
-          if test -d $(prefix); then \
+               for i in $(MAN_DEST) $(MAN_DIR) $(SHARE_DEST)/doc $(SHARE_DEST) $(SBIN_DEST); do \
+                       if test -d $$i; then \
+                               $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
+                       fi;\
+               done;\
+               if test $(LOG_DEST) != /var/log/privoxy && test -d $(prefix)/var/log; then \
+                       $(RMDIR) $(prefix)/var/log || $(ECHO) "$(prefix)/var/log is not empty, not removed";\
+               fi ;\
+               if test $(PID_DEST) != /var/run && test -d $(prefix)/var/run; then \
+                       $(RMDIR) $(prefix)/var/run || $(ECHO) "$(prefix)/var/run is not empty, not removed";\
+               fi ;\
+               if test $(prefix)/var != /var && test -d $(prefix)/var; then \
+                       $(RMDIR) $(prefix)/var || $(ECHO) "$(prefix)/var is not empty, not removed" ;\
+               fi ;\
+               if test $(prefix) != / && test $(prefix) != /usr && test -d $(prefix); then \
+                       $(ECHO) Removing installation directory $(prefix) ;\
                        $(RMDIR) $(prefix) || $(ECHO) "$(prefix) is not empty, not removed" ;\
-          fi;\
+               fi;\
        fi
 
        # init scripts and logrotate
-       if [ "$(prefix)" = "/usr/local" ]; then \
-          $(ECHO) Removing $(PROGRAM) init script ;\
-          if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ]  && [ -w /etc/rc.d/ ] ; then \
-               $(RM) /etc/rc.d/rc.privoxy ;\
-          elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ]  && [ -w /etc/rc.d/init.d/ ] ; then \
-               $(RM) /etc/rc.d/init.d/privoxy /etc/logrotate.d/privoxy;\
-          elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
-               $(RM) /etc/init.d/privoxy ;\
-          else \
-               $(ECHO) "Unable to remove privoxy init script, not installed or permission denied" ;\
-          fi ;\
+       if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
+               $(ECHO) Removing $(PROGRAM) init script ;\
+               if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ]  && [ -w /etc/rc.d/ ] ; then \
+                       $(RM) /etc/rc.d/rc.privoxy ;\
+               elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ]  && [ -w /etc/rc.d/init.d/ ] ; then \
+                       $(RM) /etc/rc.d/init.d/privoxy /etc/logrotate.d/privoxy;\
+               elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
+                       $(RM) /etc/init.d/privoxy ;\
+               else \
+                       $(ECHO) "Unable to remove privoxy init script, not installed or permission denied" ;\
+               fi ;\
        fi
        $(ECHO) Privoxy uninstalled, bye
 
@@ -1063,6 +1096,55 @@ coffee:
 ## end:
 
 # $Log: GNUmakefile.in,v $
+# Revision 1.130  2002/10/22 05:49:14  hal9
+# Make install:
+# - /bin/sh on Solaris does not handle: ! test.
+# - Remove some unused doc variables.
+# - Make configs group writable.
+#
+# Revision 1.129  2002/10/20 07:15:12  hal9
+# Getting near the end (I hope) of install target updates:
+# - Rewrite RH init script to reflect configured values.
+# - Test for USER=root as well as UID=0
+# - Test for invalid group (probably needs more work).
+# - Add /usr to /usr/local test for when to install init scripts, etc.
+# - More testing on previous changes.
+#
+# Revision 1.128  2002/10/18 05:36:32  hal9
+# More install target fixes:
+# - Quick fix of log ownership on root install (lightly tested). If this goes
+#   true to form, then the fix will break something else :(
+# - Fix what looks like was invalid user on Slack if root install and
+#   we use an existing privoxy user. No way to test this.
+# See FIXMEs.
+#
+# Revision 1.127  2002/10/18 00:58:07  hal9
+# More install/uninstall/install-strip updates:
+# - Don't install gzipped man page (Solaris again).
+# - Don't overwrite existing config files, and install new versions as *.new.
+#   Fix permissions/ownership here too.
+# - Better testing before removing directories.
+# - Some better messages during install, ie 'Preserving configs', etc.
+# - Better handling of install-strip to fix previous problem of trying to strip
+#   init scripts.
+# - Crude test for valid USER in case is set on command line.
+# - Force immediate exit on some errors (eg invalid group).
+#
+# Revision 1.126  2002/10/16 05:38:00  hal9
+# More make install/uninstall updates:
+# -Make compatible with install-sh with does not support -b flag, and can only
+#  handle one file at a time (sigh).
+# -Manually save existing config files, if they exist.
+# -Fix install-strip so does not try to strip init scripts.
+#
+# Revision 1.125  2002/10/15 05:53:34  hal9
+# A few more cleanups:
+# -use mkinstalldirs consistently.
+# -Install init script and logrotate only is prefix=/usr/local (installed to
+#  system dir /etc instead of /usr/local...)
+# -Test for directory existence before removing to avoid misleading error
+#  messages.
+#
 # Revision 1.124  2002/10/13 19:58:09  hal9
 # Hopefully, this is final updates for install and uninstall targets.
 # - Fix typo in chown syntax