mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
bc713acfba
PR: ports/74312 Submitted by: Gustavo De Nardin Approved by: maintainer
18 lines
318 B
Bash
18 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
|