From: George Koehler Date: Sat, 28 Oct 2017 14:55:51 +0000 (-0400) Subject: Remove old files: TakeAction config.pm X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=f0241d6bc73e558ec5ccf09456d0d0a94226fc81;p=ack.git Remove old files: TakeAction config.pm These files come from old build systems, and are useless since the old build systems got deleted. TakeAction is from proto.make system and config.pm is from pmfile system. --- diff --git a/TakeAction b/TakeAction deleted file mode 100755 index dab72f5dd..000000000 --- a/TakeAction +++ /dev/null @@ -1,146 +0,0 @@ -#!/bin/sh - -case $# in -0) PAR='make install && make clean' ; CMD=Action ;; -1) PAR="$1" ; CMD=Action ;; -2) PAR="$1" ; CMD="$2" ;; -*) echo Syntax: "$0" [command [file]] ; exit 1 ;; -esac -if test -r "$CMD" -then : -else - case "$CMD" in - Action) echo No Action file present ;; - *) echo No Action file "($CMD)" present ;; - esac -fi -case $0 in -/*) THISFILE=$0 - ;; -*) if [ -f $0 ] - then - THISFILE=`pwd`/$0 - else - THISFILE=$0 - fi - ;; -esac -SYS= -RETC=0 -{ while read LINE -do - eval set $LINE - case x"$1" in - x!*) ;; - xname) SYS="$2" - ACTION='$PAR' - DIR=. - FM=no - FAIL='Failed for $SYS, see $DIR/Out' - SUCC='$SYS -- done' - ATYPE= - FATAL=no - DOIT=yes - ;; - xfatal) FATAL=yes ;; - xaction|xindir) case x$ATYPE in - x) ACTION=$2 ; ATYPE=$1 - case $ATYPE$FM in - indirno) FAIL='Failed for $SYS' ;; - esac - ;; - *) echo Already specified an $ATYPE for this name - RETC=65 ;; - esac ;; - xfailure) FM=yes - FAIL="$2" ;; - xsuccess) SUCC="$2" ;; - xdir) DIR="$2" ;; - xsystem) PAT="$2" - oIFS=$IFS - IFS="|" - eval set $2 - case x`ack_sys` in - x$1|x$2|x$3|x$4|x$5|x$6|x$7) ;; - *) echo "Sorry, $SYS can only be made on $PAT systems" - DOIT=no - ;; - esac - IFS=$oIFS - ;; - xend) case $DOIT in - no) continue ;; - esac - case x$SYS in - x) echo Missing name line; RETC=65 ;; - *) if test -d $DIR - then ( - cd $DIR - X= - case $ATYPE in - indir) - if $THISFILE "$PAR" $ACTION - then eval echo $SUCC - else RETC=2 ; eval echo $FAIL - fi ;; - *) - case "$ACTION" in - '$PAR') - ACTION="$PAR" - ;; - *) ;; - esac - if [ -f No$CMD ] - then - x=`cat No$CMD` - if [ "$ACTION" = "$x" ] - then - ACTION='echo "No actions performed, No$CMD file present"' - SUCC='$SYS -- skipped' - fi - fi - if eval "{ $ACTION ; } >Out 2>&1 No$CMD 2>/dev/null - fi - else RETC=1 ; X=: ; eval echo $FAIL - fi - ;; - esac - (echo ------- `pwd` - cat Out - $X rm -f Out - ) 2>/dev/null 1>&- 1>&3 - exit $RETC - ) - case $? in - 0) ;; - *) case $RETC in - 0) RETC=$? ;; - esac ;; - esac - else - echo Directory $DIR for $SYS is inaccessible - RETC=66 - fi ;; - esac - case $FATAL$RETC in - yes0) ;; - yes*) echo Fatal error, installation stopped. - exit $RETC ;; - esac - SYS= - ;; - *) echo Unknown keyword "$1" - RETC=67 ;; - esac -done -exit $RETC -} <$CMD -RETX=$? -case $RETX in -0) exit $RETC ;; -*) exit $RETX ;; -esac diff --git a/config.pm b/config.pm deleted file mode 100644 index 79dc7c55a..000000000 --- a/config.pm +++ /dev/null @@ -1,71 +0,0 @@ --- ======================================================================= -- --- ACK CONFIGURATION -- --- (Edit this before building) -- --- ======================================================================= -- - --- What platform to build for by default? - -DEFAULT_PLATFORM = "pc86" - --- Where should the ACK put its temporary files? - -ACK_TEMP_DIR = "/tmp" - --- Where is the ACK going to be installed, eventually? - -PREFIX = "/tmp/ack-temp/staging" - --- ======================================================================= -- --- BROKEN ACK CONFIGURATION -- --- (Currently not editable) -- --- ======================================================================= -- - --- FIXME: the following two variables must be set to their Minix variants --- due to hard-coded references in the descr files. - --- Name of the platform-independent library directory; 'share' on modern --- systems, 'lib' on Minix-like systems. - -PLATIND = "lib" - --- Name of the platform-dependent library directory; 'lib' on modern --- systems, 'lib.bin' on Minix-like systems. - -PLATDEP = "lib.bin" - --- ======================================================================= -- --- BUILD SYSTEM CONFIGURATION -- --- (Not user servicable) -- --- ======================================================================= -- - --- Absolute path to the ACK source directory. - -ROOTDIR = posix.getcwd().."/" - --- Temporary directory used during the build process. - -TEMPDIR = "/tmp/ack-temp/" - --- Directory in which dynamically generated header files will go during --- the build process. - -HEADERDIR = TEMPDIR.."headers/" - --- Directory in which tools used by the build process but which not actually --- deployed with the ACK will go. - -TOOLDIR = TEMPDIR.."tools/" - --- Directory in which the libraries used to build the ACK tools but which are --- not actually deployed with the ACK will go. - -LIBDIR = TEMPDIR.."lib/" - --- Staging area where the installation will be built before actually copying --- it. - -BINDIR = TEMPDIR.."staging/" - --- Directory that the pm cache goes in. - -pm.intermediate_cache_dir = TEMPDIR.."pmcache/"