diff -ur turboprint-1.92-orig/lib/install-post turboprint-1.92/lib/install-post --- turboprint-1.92-orig/lib/install-post 2005-04-15 16:31:20.000000000 +0200 +++ turboprint-1.92/lib/install-post 2005-04-24 20:21:08.000000000 +0200 @@ -10,7 +10,7 @@ # get TurboPrint configuration -eval $(cat /etc/turboprint/system.cfg) +eval $(cat system.cfg) # override help browser if set by command line @@ -40,7 +40,7 @@ # link documentation if [ ! -e $TPPATH_DOC/html_fr ] ; then - ln -s $TPPATH_DOC/html $TPPATH_DOC/html_fr + ln -s html $TPPATH_DOC/html_fr fi # write system.cfg @@ -78,7 +78,7 @@ # generate PPD files; add to CUPS if present -mkdir -p "$RBR$TPPATH_SHARE/ppd" +mkdir -p "$TPPATH_SHARE/ppd" tpsetup --writeppdfiles "$TPPATH_SHARE/ppd/" if [ $TP_CUPS -eq 1 ] ; then @@ -95,25 +95,13 @@ install --mode=755 $TPPATH_SHARE/ppd/* "$TPPATH_CUPSDRIVER/turboprint" fi -# call setup to update LPD config files / CUPS PPD files - -tpsetup --update - -# restart CUPS scheduler - -if [ $TP_CUPS -eq 1 ] ; then - echo "Restarting CUPS printing system..." - rccups restart &> /dev/null - echo "" -fi - # remove dump files if [ -e "$TPPATH_SHARE/dump/dj970aligncontrol.prn" ] ; then rm -r "$TPPATH_SHARE/dump/dj970aligncontrol.prn" fi -# exit 0 +exit 0 # add entry to KDE menu # KDE1 no longer supported Nur in turboprint-1.92/lib: install-post~. diff -ur turboprint-1.92-orig/setup turboprint-1.92/setup --- turboprint-1.92-orig/setup 2005-04-15 16:31:20.000000000 +0200 +++ turboprint-1.92/setup 2005-04-24 20:20:13.000000000 +0200 @@ -38,8 +38,7 @@ echo "TurboPrint Installation" echo "=======================" -bin/tpsetup --printkey *.key -result=$? +result=99 if [ $TP_BATCH -eq 0 ] ; then echo @@ -205,12 +204,6 @@ lib/install-info --tgz --cups=$TP_CUPS --language=$TP_LANGUAGE -# install keyfile if present - -if [ $result -eq 0 ] ; then - tpsetup --install *.key -fi - echo echo "$TP_DOCU $TPPATH_DOC/html" Nur in turboprint-1.92: setup~.