This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
20b54b441ed6fea1ef286dff636c334598e5d11e
[metaconfig.git] / U / installdirs / vendorhtml1.U
1 ?RCS: $Id: vendorhtml1.U,v 1.1 1999/07/08 18:32:57 doughera Exp doughera $
2 ?RCS:
3 ?RCS: Copyright (c) 1999, Andy Dougherty
4 ?RCS:
5 ?RCS: You may redistribute only under the terms of the Artistic Licence,
6 ?RCS: as specified in the README file that comes with the distribution.
7 ?RCS: You may reuse parts of this distribution only within the terms of
8 ?RCS: that same Artistic Licence; a copy of which may be found at the root
9 ?RCS: of the source tree for dist 3.0.
10 ?RCS:
11 ?RCS: $Log: vendorhtml1.U,v $
12 ?RCS: Revision 1.1  1999/07/08 18:32:57  doughera
13 ?RCS: Initial revision
14 ?RCS:
15 ?MAKE:vendorhtml1 vendorhtml1exp installvendorhtml1: html1dir Getfile \
16         Oldconfig Setprefixvar Prefixit test vendorprefix prefix sed
17 ?MAKE:  -pick add $@ %<
18 ?Y:TOP
19 ?S:vendorhtml1:
20 ?S:     This variable contains the name of the directory for html
21 ?S:     pages.  It may have a ~ on the front.
22 ?S:     The standard distribution will put nothing in this directory.
23 ?S:     Vendors who distribute perl may wish to place their own
24 ?S:     html pages in this directory with
25 ?S:             MakeMaker Makefile.PL INSTALLDIRS=vendor
26 ?S:     or equivalent.  See INSTALL for details.
27 ?S:.
28 ?S:vendorhtml1exp:
29 ?S:     This variable is the ~name expanded version of vendorhtml1, so that you
30 ?S:     may use it directly in Makefiles or shell scripts.
31 ?S:.
32 ?D:installvendorhtml1=''
33 ?S:installvendorhtml1:
34 ?S:     This variable is really the same as vendorhtml1exp but may differ on
35 ?S:     those systems using AFS. For extra portability, only this variable
36 ?S:     should be used in makefiles.
37 ?S:.
38 ?LINT:change prefixvar
39 ?LINT:set installvendorhtml1
40 : Set the vendorhtml1 variables
41 case "$vendorprefix" in
42 '')     vendorhtml1=''
43         vendorhtml1exp=''
44         ;;
45 *)      : determine where vendor-supplied html pages go.
46         : There is no standard location, so try to copy the previously-selected
47         : directory structure for the core html pages.
48         : XXX Better default suggestions would be welcome.
49         case "$vendorhtml1" in
50         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
51         *)      dflt=$vendorhtml1 ;;
52         esac
53         case "$dflt" in
54         ''|' ') dflt=none ;;
55         esac
56         fn=dn+~
57         rp='Pathname for the vendor-supplied html pages?'
58         . ./getfile
59         vendorhtml1="$ans"
60         vendorhtml1exp="$ansexp"
61         ;;
62 esac
63 : Use ' ' for none so value is preserved next time through Configure
64 $test X"$vendorhtml1" = "X" && vendorhtml1=' '
65 prefixvar=vendorhtml1
66 . ./installprefix
67