summaryrefslogtreecommitdiff
path: root/games/linux_nwndata/pkg-deinstall
blob: 3fd0a49ecf934337bf6d640cd9cd8994aed3015e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

if [ "$2" != "POST-DEINSTALL" ]; then
    exit 0
fi

echo ""
echo "This port has been deinstalled.  However, it is possible that 
some files have been left on the system.  There are several reasons why 
this could happen:"
echo ""
echo "* Because of the conversion from the Windows to the Linux based 
versions of the data files, some may have been renamed during the 
upgrade process."
echo "* If you have played Neverwinter nights, your save files and user 
settings will still be there."
echo ""
echo "To fully remove this port, you will also need to remove the 
/compat/linux/usr/games/nwn directory."

exit 0