mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
5d33e04596
Where appropriate fiddle with a few other things.
17 lines
317 B
Plaintext
17 lines
317 B
Plaintext
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
post-install: <<EOD
|
|
if ! /usr/sbin/service ldconfig restart >/dev/null; then
|
|
if [ -z "${INSTALL_AS_USER}" ]; then
|
|
exit 1
|
|
fi
|
|
fi
|
|
EOD
|
|
post-deinstall: <<EOD
|
|
if ! /usr/sbin/service ldconfig restart >/dev/null; then
|
|
if [ -z "${INSTALL_AS_USER}" ]; then
|
|
exit 1
|
|
fi
|
|
fi
|
|
EOD
|