#!/usr/bin/ksh
#
# ident	"@(#)getppdfile	1.1	04/04/13 SMI"
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

#
# Get the path/filename for this ppd NickName
#

if [[ $# -lt 3 ]]; then
        exit 1
fi

if [[ -f /usr/lib/lp/model/ppd/ppdcache ]]; then
	typeset make=$1
	shift
	modelppd=$*
	typeset model=$(echo $modelppd | nawk '{FS=":"; print $1}')
	typeset ppd=$(echo $modelppd | nawk '{FS=":"; print $2}' |
			sed -e 's/^[ ]*//')

	/bin/grep ^$1 /usr/lib/lp/model/ppd/ppdcache | 
	/bin/grep "${model}:" |
	/bin/grep "${ppd}:"  |
	nawk '{FS=":"; print $4}' 

	exit 0
else
	exit 1
fi
