8354 sync regcomp(3C) with upstream (fix make catalog)
[unleashed/tickless.git] / usr / src / cmd / print / scripts / getppdfile
blobbba0590b1b59696a6981932c7225b01488768100
1 #!/usr/bin/ksh
3 # CDDL HEADER START
5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
20 # CDDL HEADER END
22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # ident "%Z%%M% %I% %E% SMI"
29 # Get the path/ppdfilename for this ppd NickName
30 # Input:
31 # make: model: ppdlabel: ppd:
32 # PrintersRus: ABC Model 1234: SUNWfoomatic(S): Foomatic/Postscript (recommended):
36 # Returns the full path to the repository associated with
37 # the repository letter found between parenthesis in the
38 # extended PPD label.
40 # $1 - Extended PPD label
42 rep_path()
44 case "$(expr \"$1\" : ".*(\(.*\)).*")" in
45 "S")
46 echo "/usr/share/ppd"
48 "V")
49 echo "/opt/share/ppd"
51 "A")
52 echo "/usr/local/share/ppd"
54 "U")
55 echo "/var/lp/ppd"
57 esac
60 if [[ $# -lt 4 ]]; then
61 exit 1
64 [[ -f /var/lp/ppd/ppdcache ]] || exit 1
65 make=$(echo $* | /usr/bin/nawk '{FS=":"; print $1}')
66 # strip leading blanks
67 model=$(echo $* | /usr/bin/nawk '{FS=":"; print $2}' |
68 /bin/sed -e 's/^[ ]*//')
69 extppdlabel=$(echo $* | /usr/bin/nawk '{FS=":"; print $3}' |
70 /bin/sed -e 's/^[ ]*//')
71 ppd=$(echo $* | /usr/bin/nawk '{FS=":"; print $4}' |
72 /bin/sed -e 's/^[ ]*//')
75 # Do not use ":" with $make. printmgr collapses manufacturer name
76 # to first word, ie PrintersRus and PrintersRus International become
77 # PrintersRus. The full path to the PPD file will be the 6th
78 # colon separated entry in the ppdcache entry. If the format
79 # of a ppdcache entry changes, then this will need to be modified
80 # also.
82 /bin/grep "${make}" /var/lp/ppd/ppdcache |
83 /bin/grep "${model}:" |
84 /bin/grep "${ppd}:" |
85 /bin/grep "$(rep_path ${extppdlabel})/${extppdlabel%\(*}" |
86 /usr/bin/nawk '{FS=":"; print $6}'
88 exit 0