freebsd-ports/print/cups-lpr/pkg-install
Volker Stolz bc713acfba Fix printing with JDK14 (cf. http://www.cups.org/str.php?L1004)
PR:		ports/74312
Submitted by:	Gustavo De Nardin
Approved by:	maintainer
2004-12-17 14:27:38 +00:00

17 lines
318 B
Bash

#!/bin/sh
REPLACES_BINARIES="/usr/bin/lpr
/usr/bin/lp
/usr/bin/lpq
/usr/bin/lprm
/usr/bin/lpstat
/usr/sbin/lpc"
case $2 in
POST-INSTALL)
for FILE in ${REPLACES_BINARIES}; do
[ -e "${FILE}" ] && mv "${FILE}" "${FILE}.bak" && ln -s "/usr/local/${FILE#/usr/}" "${FILE}"
done
;;
esac
exit 0