summaryrefslogtreecommitdiff
path: root/mcon/U/newslib.U
blob: 5b2554b432df46d52d2b24a87717c3d7ca5f0598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
?RCS: $Id: newslib.U 167 2013-05-08 17:58:00Z rmanfredi $
?RCS:
?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS: 
?RCS: You may redistribute only under the terms of the Artistic License,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic License; a copy of which may be found at the root
?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: $Log: newslib.U,v $
?RCS: Revision 3.0  1993/08/18  12:09:23  ram
?RCS: Baseline for dist 3.0 netwide release.
?RCS:
?MAKE:newslib newslibexp: test inews Oldconfig Getfile
?MAKE:	-pick add $@ %<
?S:newslib:
?S:	This variable contains the eventual value of the NEWSLIB symbol,
?S:	which holds the name of the directory serving as the news library.
?S:	It may have a ~ on the front.  See newslibexp for expanded version.
?S:.
?S:newslibexp:
?S:	This variable contains the ~ expanded name of the news library
?S:	directory.  See newslib.
?S:.
?C:NEWSLIB:
?C:	This symbol contains the name of the directory serving as the news
?C:	library.  The program must be prepared to do ~ expansion on it.
?C:.
?C:NEWSLIB_EXP:
?C:	This symbol is the ~ expanded version of NEWSLIB, for programs that
?C:	do not wish to deal with it at run-time.
?C:.
?H:#define NEWSLIB "$newslib"		/**/
?H:#define NEWSLIB_EXP "$newslibexp"	/**/
?H:.
?LINT:change inews
: figure out news library
case "$newslib" in
'')
	dflt=/usr/lib/news
	;;
*)  dflt=$newslib ;;
esac
echo " "
fn=d~
rp='Where is your news library?'
. ./getfile
newslib="$ans"
newslibexp="$ansexp"
if $test -f $newslibexp/inews; then
	echo "Aha!  Inews is really in $newslibexp!  Maybe this is 2.10.2..." >&4
	case "$inews" in
	inews) 
		: null
		;;
	*) echo "(Make sure $inews isn't an old version.)";;
	esac
	inews=$newslibexp/inews
fi