diff options
author | seb <seb@pkgsrc.org> | 2003-06-23 11:16:49 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-06-23 11:16:49 +0000 |
commit | 5e9166f9bdbd1006356daa1cc348a61368ad0ad1 (patch) | |
tree | 6e5655047751e078811e36d82c5c1665edb6b51e /devel/isect/DEINSTALL | |
parent | d286d86778fafdcf9e701b040daaea20ba027153 (diff) | |
download | pkgsrc-5e9166f9bdbd1006356daa1cc348a61368ad0ad1.tar.gz |
Convert and adapt to USE_NEW_TEXINFO.
Make it obvious that PKGINSTALL framework is now used.
Diffstat (limited to 'devel/isect/DEINSTALL')
-rw-r--r-- | devel/isect/DEINSTALL | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/devel/isect/DEINSTALL b/devel/isect/DEINSTALL index 8df814bd1ec..83fbc6d1718 100644 --- a/devel/isect/DEINSTALL +++ b/devel/isect/DEINSTALL @@ -1,15 +1,10 @@ -#!/bin/sh # -# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:24:13 zuntum Exp $ +# $NetBSD: DEINSTALL,v 1.2 2003/06/23 11:16:49 seb Exp $ # -PKGNAME=$1 - -case $2 in -DEINSTALL) - ;; +case "${STAGE}" in POST-DEINSTALL) - /bin/cat << EOF + ${CAT} << EOF =========================================================================== If you won't be using ${PKGNAME} any longer, you may want to remove the hostname alias to "isectd" and remove the isect services listed in @@ -17,9 +12,4 @@ hostname alias to "isectd" and remove the isect services listed in =========================================================================== EOF ;; -*) - echo "Unexpected argument: $2" - exit 1 - ;; esac -exit 0 |