mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
8d8d775b8b
and work nicer with automatic directly support from pkg Differential Revision: https://reviews.freebsd.org/D1377 Reviewed by: rene, antoine Approved by: rene
25 lines
415 B
Plaintext
25 lines
415 B
Plaintext
# $FreeBSD$
|
|
#
|
|
# MAINTAINER: rene@FreeBSD.org
|
|
|
|
actions: []
|
|
post-install: <<EOD
|
|
case "%@" in
|
|
/*) kmoddir="%@" ;;
|
|
*) kmoddir="%D/%@" ;;
|
|
esac
|
|
/usr/sbin/kldxref ${kmoddir}
|
|
EOD
|
|
post-deinstall: <<EOD
|
|
case "%@" in
|
|
/*) kmoddir="%@" ;;
|
|
*) kmoddir="%D/%@" ;;
|
|
esac
|
|
/usr/sbin/kldxref ${kmoddir}
|
|
case "${kmoddir}" in
|
|
%D/*) ;;
|
|
/boot/modules) ;;
|
|
*) rmdir -p ${kmoddir} 2>/dev/null || true ;;
|
|
esac
|
|
EOD
|