5d33e04596
Where appropriate fiddle with a few other things.
18 lines
301 B
Plaintext
18 lines
301 B
Plaintext
# 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
|