diff -u -r checkinstall-1.5.3.orig/Makefile checkinstall-1.5.3/Makefile --- checkinstall-1.5.3.orig/Makefile 2002-09-10 23:58:10.000000000 -0700 +++ checkinstall-1.5.3/Makefile 2003-03-13 10:18:36.000000000 -0800 @@ -2,10 +2,10 @@ make -C installwatch-0.6.3 install: all - cp checkinstall makepak /usr/local/sbin + cp checkinstall /usr/sbin make -C installwatch-0.6.3 install - mkdir -p /usr/local/lib/checkinstall - cp checkinstallrc /usr/local/lib/checkinstall + mkdir -p /etc/checkinstall + cp checkinstallrc /etc/checkinstall clean: make -C installwatch-0.6.3 clean diff -u -r checkinstall-1.5.3.orig/README checkinstall-1.5.3/README --- checkinstall-1.5.3.orig/README 2002-09-10 23:58:10.000000000 -0700 +++ checkinstall-1.5.3/README 2003-03-13 10:20:17.000000000 -0800 @@ -325,7 +325,7 @@ The variable declaration section in the checkinstall script has been removed, you should now edit the checkinstallrc file, normally installed under - /usr/local/lib/checkinstall. + /etc/checkinstall. In the checkinstallrc file you will find some variables wich modify diff -u -r checkinstall-1.5.3.orig/checkinstall checkinstall-1.5.3/checkinstall --- checkinstall-1.5.3.orig/checkinstall 2002-09-10 23:58:10.000000000 -0700 +++ checkinstall-1.5.3/checkinstall 2003-03-13 10:33:53.000000000 -0800 @@ -245,14 +245,14 @@ ckversion echo -if ! [ -f /usr/local/lib/checkinstall/checkinstallrc ]; then +if ! [ -f /etc/checkinstall/checkinstallrc ]; then echo "The checkinstallrc file was not found at:" - echo "/usr/local/lib/checkinstall/checkinstallrc" + echo "/etc/checkinstall/checkinstallrc" echo echo "Assuming default values." else # Get our default settings from the rc file -source /usr/local/lib/checkinstall/checkinstallrc +source /etc/checkinstall/checkinstallrc fi @@ -535,7 +535,7 @@ ################################################################ # User-configurable variables were moved to the checkinstallrc # -# file which is probably found at /usr/local/lib/checkinstall # +# file which is probably found at /etc/checkinstall # # # # DO NOT modify them here!! # ################################################################ @@ -544,7 +544,7 @@ # Debug level ! [ "$DEBUG" ] && DEBUG=0 -INSTALLWATCH_PREFIX="/usr/local" +INSTALLWATCH_PREFIX="/usr" INSTALLWATCH=${INSTALLWATCH_PREFIX}/bin/installwatch # Default architecture type @@ -617,7 +617,7 @@ PKG_BASENAME="`basename $DIRECTORIO_FUENTE`" -MAKEPKG=/usr/local/sbin/makepak +MAKEPKG=/sbin/makepkg INSTALLCMD="$@" : ${INSTALLCMD:='make install'} @@ -1416,7 +1416,7 @@ chmod 755 $BUILD_DIR -$MAKEPKG "${SLACK_PKG_BASENAME}.tgz" &> /dev/null +$MAKEPKG -l y -c n "${SLACK_PKG_BASENAME}.tgz" &> /dev/null okfail mv "${SLACK_PKG_BASENAME}.tgz" "$DIRECTORIO_FUENTE" diff -u -r checkinstall-1.5.3.orig/checkinstallrc checkinstall-1.5.3/checkinstallrc --- checkinstall-1.5.3.orig/checkinstallrc 2002-09-10 23:58:10.000000000 -0700 +++ checkinstall-1.5.3/checkinstallrc 2003-03-13 10:33:03.000000000 -0800 @@ -16,7 +16,7 @@ DEBUG=0 # Location of the "installwatch" program -INSTALLWATCH_PREFIX="/usr/local" +INSTALLWATCH_PREFIX="/usr" INSTALLWATCH=${INSTALLWATCH_PREFIX}/bin/installwatch # Where will we keep our temp files? @@ -33,7 +33,7 @@ # R : RPM # D : Debian -INSTYPE="" +INSTYPE="S" # Storage directory for newly created packages # By default they will be stored at the default @@ -87,7 +87,7 @@ AUTODOINST=1 # Use the new (8.1+) Slackware description file format? -NEW_SLACK=0 +NEW_SLACK=1 # Comma delimited list of files/directories to be ignored EXCLUDE="" diff -u -r checkinstall-1.5.3.orig/installwatch-0.6.3/Makefile checkinstall-1.5.3/installwatch-0.6.3/Makefile --- checkinstall-1.5.3.orig/installwatch-0.6.3/Makefile 2001-12-22 15:55:11.000000000 -0800 +++ checkinstall-1.5.3/installwatch-0.6.3/Makefile 2003-03-13 10:19:21.000000000 -0800 @@ -4,7 +4,7 @@ # Well, the only configurable part is the following variable. # Make sure the directory you specify exists. -PREFIX=/usr/local +PREFIX=/usr # End of configurable part diff -u -r checkinstall-1.5.3.orig/installwatch-0.6.3/test-installwatch.c checkinstall-1.5.3/installwatch-0.6.3/test-installwatch.c --- checkinstall-1.5.3.orig/installwatch-0.6.3/test-installwatch.c 2001-12-22 15:55:11.000000000 -0800 +++ checkinstall-1.5.3/installwatch-0.6.3/test-installwatch.c 2003-03-13 10:19:42.000000000 -0800 @@ -28,7 +28,7 @@ #include "localdecls.h" #ifndef LIBDIR - #define LIBDIR "/usr/local/lib" + #define LIBDIR "/usr/lib" #endif #define TESTFILE "/tmp/installwatch-test"