Files
ports/core/sgml-common/install
2019-05-15 17:28:46 +08:00

29 lines
660 B
Plaintext
Executable File

# package install script
action=$1
newversion=$2
oldversion=$3
post_install() {
install-catalog --add /etc/sgml/sgml-ent.cat \
/usr/share/sgml/sgml-iso-entities-8879.1986/catalog &>/dev/null
install-catalog --add /etc/sgml/sgml-docbook.cat \
/etc/sgml/sgml-ent.cat &>/dev/null
}
post_remove() {
install-catalog --remove /etc/sgml/sgml-ent.cat \
/usr/share/sgml/sgml-iso-entities-8879.1986/catalog &>/dev/null
install-catalog --remove /etc/sgml/sgml-docbook.cat \
/etc/sgml/sgml-ent.cat &>/dev/null
}
case $action in
post-install) post_install ;;
pre-upgrade) post_remove ;;
post-upgrade) post_install ;;
post-remove) post_remove ;;
esac