freebsd-ports/security/monkeysphere/pkg-deinstall
Vinícius Zavam b1d97de0ca security/monkeysphere: update 0.41 to 0.42
- Makefile

    adopt the port;
    pet portlint;
    remove comment about 'applying patches' on the post-patch stage;
    unmute post-patch.

  - files/*

    patch src/share/mh/revoke_keys, to use gpg2;
    move patch-gpg2 (410 lines), and split it to have separated patches;
    regen all patches using makepatch.

Approved by:	rene (mentor)
Differential Revision:	https://reviews.freebsd.org/D18871
2019-02-25 14:43:23 +00:00

19 lines
456 B
Bash

#!/bin/sh
#
# A package removal script for monkeysphere (borrowed from
# monkeysphere's debian/monkeysphere.postrm)
#
# Original Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
# Copyright 2008,2009
# monkeysphere's home dir (via UIDs)
MSHD="/var/monkeysphere"
case $2 in
POST-DEINSTALL)
USER=monkeysphere
if [ -d "$MSHD" ] ; then
echo "Warning: You may want to remove ${USER}'s cached authentication data and keyrings in $MSHD"
fi
;;
esac