[BACK]Return to DEINSTALL CVS log [TXT][DIR] Up to [local] / OpenXM / misc / packages / FreeBSD / openxm-ports / openxm-1.1.2 / pkg

Annotation of OpenXM/misc/packages/FreeBSD/openxm-ports/openxm-1.1.2/pkg/DEINSTALL, Revision 1.1

1.1     ! takayama    1: #!/bin/sh
        !             2: # $OpenXM$
        !             3:
        !             4: prefix=/usr/local
        !             5:
        !             6: cat << END
        !             7:
        !             8: Deinstalling the OpenXM package will remove your
        !             9: $prefix/OpenXM/lib/asir/asir_key file.
        !            10: It will be moved to /var/tmp/asir_key.save before the deletion.
        !            11: If the install script finds /var/tmp/asir_key.save,
        !            12: the original asir_key in the package will be replaced by
        !            13: /var/tmp/asir_key.save
        !            14:
        !            15: END
        !            16:
        !            17: if [ -f ${prefix}/OpenXM/lib/asir/asir_key ]; then
        !            18:        echo "Copying" ;
        !            19:        cp -f ${prefix}/OpenXM/lib/asir/asir_key /var/tmp/asir_key.save ;
        !            20: fi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>