summaryrefslogtreecommitdiff
path: root/mcon/U/package.U
blob: 3d7f4ae026d11b7c3d4e9a383bfa0061cf09d3c3 (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
?RCS: $Id: package.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: package.U,v $
?RCS: Revision 3.0.1.3  1994/10/29  16:27:21  ram
?RCS: patch36: beware of non-ascii character sets when translating case
?RCS:
?RCS: Revision 3.0.1.2  1993/11/10  17:37:02  ram
?RCS: patch14: skip definition of spackage if not otherwise used
?RCS:
?RCS: Revision 3.0.1.1  1993/09/13  16:11:10  ram
?RCS: patch10: added spackage, suitable for starting sentences
?RCS:
?RCS: Revision 3.0  1993/08/18  12:09:28  ram
?RCS: Baseline for dist 3.0 netwide release.
?RCS:
?MAKE:package spackage: Nothing
?MAKE:	-pick wipe $@ %<
?S:package:
?S:	This variable contains the name of the package being constructed.
?S:	It is primarily intended for the use of later Configure units.
?S:.
?S:spackage:
?S:	This variable contains the name of the package being constructed,
?S:	with the first letter uppercased, i.e. suitable for starting
?S:	sentences.
?S:.
?C:PACKAGE:
?C:	This variable contains the name of the package being built.
?C:.
?H:#define PACKAGE "$package"
?H:.
?T:first last
: set package name
package='<PACKAGENAME>'
@if spackage
first=`echo $package | sed -e 's/^\(.\).*/\1/'`
last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
?X:
?X: So early in the Configure script, we don't have ./tr set up and can't
?X: include Tr in our dependency or that would create a cycle. Therefore,
?X: we have to somehow duplicate the work done in Tr. That's life.
?X:
case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
*) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
esac
@end