head	1.3;
access;
symbols
	RELENG_4_11_0_RELEASE:1.2
	RELENG_4_11:1.2.0.26
	RELENG_4_11_BP:1.2
	RELENG_4_10_0_RELEASE:1.2
	RELENG_4_10:1.2.0.24
	RELENG_4_10_BP:1.2
	RELENG_4_9_0_RELEASE:1.2
	RELENG_4_9:1.2.0.22
	RELENG_4_9_BP:1.2
	RELENG_4_8_0_RELEASE:1.2
	RELENG_4_8:1.2.0.20
	RELENG_4_8_BP:1.2
	RELENG_4_7_0_RELEASE:1.2
	RELENG_4_7:1.2.0.18
	RELENG_4_7_BP:1.2
	RELENG_4_6_2_RELEASE:1.2
	RELENG_4_6_1_RELEASE:1.2
	RELENG_4_6_0_RELEASE:1.2
	RELENG_4_6:1.2.0.16
	RELENG_4_6_BP:1.2
	RELENG_4_5_0_RELEASE:1.2
	RELENG_4_5:1.2.0.14
	RELENG_4_5_BP:1.2
	RELENG_4_4_0_RELEASE:1.2
	RELENG_4_4:1.2.0.12
	RELENG_4_4_BP:1.2
	RELENG_4_3_0_RELEASE:1.2
	RELENG_4_3:1.2.0.10
	RELENG_4_3_BP:1.2
	RELENG_4_2_0_RELEASE:1.2
	RELENG_4_1_1_RELEASE:1.2
	PRE_SMPNG:1.2
	RELENG_4_1_0_RELEASE:1.2
	RELENG_3_5_0_RELEASE:1.2
	RELENG_4_0_0_RELEASE:1.2
	RELENG_4:1.2.0.8
	RELENG_4_BP:1.2
	RELENG_3_4_0_RELEASE:1.2
	RELENG_3_3_0_RELEASE:1.2
	RELENG_3_2_PAO:1.2.0.6
	RELENG_3_2_PAO_BP:1.2
	RELENG_3_2_0_RELEASE:1.2
	RELENG_3_1_0_RELEASE:1.2
	RELENG_3:1.2.0.4
	RELENG_3_BP:1.2
	RELENG_2_2_8_RELEASE:1.2
	RELENG_3_0_0_RELEASE:1.2
	RELENG_2_2_7_RELEASE:1.2
	RELENG_2_2_6_RELEASE:1.2
	RELENG_2_2_5_RELEASE:1.2
	RELENG_2_2_2_RELEASE:1.2
	RELENG_2_2_1_RELEASE:1.2
	RELENG_2_2_0_RELEASE:1.2
	RELENG_2_1_7_RELEASE:1.1.8.1
	RELENG_2_1_6_1_RELEASE:1.1.8.1
	RELENG_2_1_6_RELEASE:1.1.8.1
	RELENG_2_2:1.2.0.2
	RELENG_2_2_BP:1.2
	RELENG_2_1_5_RELEASE:1.1.8.1
	RELENG_2_1_0_RELEASE:1.1.8.1
	RELENG_2_1_0:1.1.0.8
	RELENG_2_1_0_BP:1.1
	RELENG_2_0_5_RELEASE:1.1
	RELENG_2_0_5:1.1.0.6
	RELENG_2_0_5_BP:1.1
	RELENG_2_0_5_ALPHA:1.1
	RELEASE_2_0:1.1
	BETA_2_0:1.1
	ALPHA_2_0:1.1.0.4
	MOVED_NEWCVS:1.1
	FINAL_1_1_5:1.1
	ALPHA_1_1_5:1.1
	FINAL_1_1:1.1
	GAMMA_1_1:1.1
	BETA_1_1:1.1.0.2
	BP_BETA_1_1:1.1
	FINAL_1_0:1.1
	EPSILON_1_0:1.1
	GAMMA_1_0:1.1
	BETA_1_0:1.1;
locks; strict;
comment	@# @;


1.3
date	2001.10.01.06.22.40;	author kris;	state dead;
branches;
next	1.2;

1.2
date	95.08.19.21.24.45;	author ache;	state Exp;
branches;
next	1.1;

1.1
date	93.08.05.18.23.21;	author conklin;	state Exp;
branches
	1.1.8.1;
next	;

1.1.8.1
date	95.09.01.06.02.04;	author davidg;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Phase I of UUCP migration to ports.  This leaves behind a minimal build
environment for cu, which is still useful.
@
text
@#!/bin/sh
#
# This script was hacked together by Marc Evans (marc@@Synergytics.Com)
# I claim no copyright to it and don't really care what people do
# with it, hence, it is public domain. I take no responsibility for
# for happens if you use this script, providing no warentee. This
# section of the comments may be removed if you so desire.
#
# Usage:
#       uutry [-x#] systemname
# where '-x#' has the value [0-9], higher values providing more detail

#
# The following variables should be gropped from the configuration
# files rather then being hard coded here.
#
Spool=/usr/spool/uucp
Lib=/usr/local/lib/uucp
Status=$Spool/.Status
Debug=$Spool/Debug
Uucico=$Lib/uucico
#
# Default option values
#
x="-x5"
s=""

for i in $* ; do
    case $i in
        -x*) x="$i" ;;
        *) s="$i" ;;
    esac
done

if [ x$s != x ]; then
    rm -f $Status/$s
    $Uucico -r1 $x -s$s &
    >$Debug
    tail -f $Debug
else
    echo "Usage: uutry systemname"
    exit 1
fi
@


1.2
log
@Commit delta: current -> 1.06 + FreeBSD configuration
@
text
@@


1.1
log
@Taylor UUCP 1.04
@
text
@d18 1
a18 1
Lib=/usr/lib/uucp
d21 1
a21 1
Uucico=$lib/uucico
d35 1
a35 1
if [ $s != "" ]; then
@


1.1.8.1
log
@Brought in changes from main branch: updated to UUCP 1.06.1

Reviewed by:	ache
@
text
@d18 1
a18 1
Lib=/usr/local/lib/uucp
d21 1
a21 1
Uucico=$Lib/uucico
d35 1
a35 1
if [ x$s != x ]; then
@
