Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / nsprpub / pkg / solaris / bld_awk_pkginfo.ksh
blob11063c8eb24e02f9d86b60ce5da79c3000f52be1
1 #!/usr/bin/ksh -p
2 #
3 # Copyright 2005 Sun Microsystems, Inc. All rights reserved.
4 # Use is subject to license terms.
5 #
6 # ***** BEGIN LICENSE BLOCK *****
7 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
9 # The contents of this file are subject to the Mozilla Public License Version
10 # 1.1 (the "License"); you may not use this file except in compliance with
11 # the License. You may obtain a copy of the License at
12 # http://www.mozilla.org/MPL/
14 # Software distributed under the License is distributed on an "AS IS" basis,
15 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
16 # for the specific language governing rights and limitations under the
17 # License.
19 # The Original Code is the Netscape Portable Runtime (NSPR).
21 # The Initial Developer of the Original Code is
22 # Netscape Communications Corporation.
23 # Portions created by the Initial Developer are Copyright (C) 1998-2000
24 # the Initial Developer. All Rights Reserved.
26 # Contributor(s):
28 # Alternatively, the contents of this file may be used under the terms of
29 # either the GNU General Public License Version 2 or later (the "GPL"), or
30 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31 # in which case the provisions of the GPL or the LGPL are applicable instead
32 # of those above. If you wish to allow use of your version of this file only
33 # under the terms of either the GPL or the LGPL, and not to allow others to
34 # use your version of this file under the terms of the MPL, indicate your
35 # decision by deleting the provisions above and replace them with the notice
36 # and other provisions required by the GPL or the LGPL. If you do not delete
37 # the provisions above, a recipient may use your version of this file under
38 # the terms of any one of the MPL, the GPL or the LGPL.
40 # ***** END LICENSE BLOCK *****
42 #ident "$Id: bld_awk_pkginfo.ksh,v 1.3 2005/02/25 20:20:52 christophe.ravel.bugs%sun.com Exp $"
44 # Simple script which builds the awk_pkginfo awk script. This awk script
45 # is used to convert the pkginfo.tmpl files into pkginfo files
46 # for the build.
49 usage()
51 cat <<-EOF
52 usage: bld_awk_pkginfo -p <prodver> -m <mach> -o <awk_script> [-v <version>]
53 EOF
57 # Awk strings
59 # two VERSION patterns: one for Dewey decimal, one for Dewey plus ,REV=n
60 # the first has one '=' the second has two or more '='
62 VERSION1="VERSION=[^=]*$"
63 VERSION2="VERSION=[^=]*=.*$"
64 PRODVERS="^SUNW_PRODVERS="
65 ARCH='ARCH=\"ISA\"'
68 # parse command line
70 mach=""
71 prodver=""
72 awk_script=""
73 version="NSPRVERS"
75 while getopts o:p:m:v: c
77 case $c in
79 awk_script=$OPTARG
82 mach=$OPTARG
85 prodver=$OPTARG
88 version=$OPTARG
90 \?)
91 usage
92 exit 1
94 esac
95 done
97 if [[ ( -z $prodver ) || ( -z $mach ) || ( -z $awk_script ) ]]
98 then
99 usage
100 exit 1
103 if [[ -f $awk_script ]]
104 then
105 rm -f $awk_script
109 # Build REV= field based on date
111 rev=$(date "+%Y.%m.%d.%H.%M")
114 # Build awk script which will process all the
115 # pkginfo.tmpl files.
117 # the first VERSION pattern is replaced with a leading quotation mark
119 rm -f $awk_script
120 cat << EOF > $awk_script
121 /$VERSION1/ {
122 sub(/\=[^=]*$/,"=\"$rev\"")
123 print
124 next
126 /$VERSION2/ {
127 sub(/\=[^=]*$/,"=$rev\"")
128 sub(/NSPRVERS/,"$version")
129 print
130 next
132 /$PRODVERS/ {
133 printf "SUNW_PRODVERS=\"%s\"\n", "$prodver"
134 next
136 /$ARCH/ {
137 printf "ARCH=\"%s\"\n", "$mach"
138 next
140 { print }