pkgsrc/print/foomatic-ppds-cups/INSTALL
jlam 827643d4bb Split out deinstall portions of INSTALL scripts into DEINSTALL scripts.
This avoids the need for a confusing line of the form:

	DEINSTALL_TEMPLATE+=	path/to/INSTALL

in the package Makefile, and actually removes the need to specify it
altogether since by convention, the existence of the DEINSTALL script
is enough to add it to DEINSTALL_TEMPLATE.
2006-06-15 20:40:15 +00:00

13 lines
348 B
Text

# $NetBSD: INSTALL,v 1.2 2006/06/15 20:40:16 jlam Exp $
CUPS_DATADIR="@CUPS_DATADIR@"
case ${STAGE} in
POST-INSTALL)
${TEST} ! -d ${CUPS_DATADIR} ||
${TEST} -d ${CUPS_DATADIR}/foomatic-ppds ||
{ ${ECHO} "Adding Foomatic PPDs to CUPS PPD database.";
${LN} -fs ${PKG_PREFIX}/share/foomatic/ppd \
${CUPS_DATADIR}/foomatic-ppds; }
;;
esac