20 lines
315 B
Plaintext
20 lines
315 B
Plaintext
# $FreeBSD$
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
actions: [file]
|
|
post-install: <<EOD
|
|
case "%@" in
|
|
/*) file="%@" ;;
|
|
*) file="%D/%@" ;;
|
|
esac
|
|
indexinfo ${PKG_ROOTDIR}${file%/*}
|
|
EOD
|
|
post-deinstall: <<EOD
|
|
case "%@" in
|
|
/*) file="%@" ;;
|
|
*) file="%D/%@" ;;
|
|
esac
|
|
indexinfo ${PKG_ROOTDIR}${file%/*}
|
|
EOD
|