#!/bin/bash
#
# lame (real lame) way to clean up the localized stuff
# this needs a makefile really badly...
#
#
# we don't mess with the sendmail+IDA paths so it doesn't appear here...

#
# darn steenkin' version changes :-)
#
TIN="tin-1.2p2"
TRN="trn-3.5"
NN="nn-6.4.18"
SMAIL="smail-3.1.28"
UUCP="uucp-1.05"
MTHREADS="mthreads-3.1"
ELM="elm-2.4.23"
CNEWS="cnews-Feb23-1993"
INN="inn-1.4"

cd ..
for file in \
	$TIN/Makefile \
	$TRN/config.sh-local $TRN/config.sh-nntp \
	$NN/config.h \
	$SMAIL/linux \
	$UUCP/config.h $UUCP/policy.h \
	$MTHREADS/config.sh \
	$ELM/config.sh \
	$CNEWS/build.def $CNEWS/doexplode \
	$INN/config.data
do
	echo $file
	rm $file
done

