5d33e04596
Where appropriate fiddle with a few other things.
14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
actions: []
|
|
post-install: <<EOD
|
|
fmtutil-sys --missing >/dev/null
|
|
EOD
|
|
post-deinstall: <<EOD
|
|
set -- %@
|
|
for f in $@; do
|
|
rm -f $f
|
|
rmdir -p ${f%/*} 2>/dev/null
|
|
done
|
|
EOD
|