|
Revision 4662, 0.8 KB
(checked in by pmoura, 6 days ago)
|
|
Updated copyright notice.
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | ## ================================================================ |
|---|
| 4 | ## Logtalk - Open source object-oriented logic programming language |
|---|
| 5 | ## Release 2.35.0 |
|---|
| 6 | ## |
|---|
| 7 | ## Copyright (c) 1998-2009 Paulo Moura. All Rights Reserved. |
|---|
| 8 | ## Logtalk is free software. You can redistribute it and/or modify |
|---|
| 9 | ## it under the terms of the "Artistic License 2.0" as published by |
|---|
| 10 | ## The Perl Foundation. Consult the "LICENSE.txt" file for details. |
|---|
| 11 | ## ================================================================ |
|---|
| 12 | |
|---|
| 13 | echo "" |
|---|
| 14 | echo "Uninstalling and de-registering Logtalk online documentation..." |
|---|
| 15 | |
|---|
| 16 | if [ "$1" = "remove" ] || [ "$1" = "upgrade" ] ; then |
|---|
| 17 | if which install-docs > /dev/null 2>&1 ; then |
|---|
| 18 | install-docs -r logtalk-docs |
|---|
| 19 | fi |
|---|
| 20 | fi |
|---|
| 21 | |
|---|
| 22 | echo "" |
|---|
| 23 | echo "Removing Logtalk integration and documentation scripts..." |
|---|
| 24 | |
|---|
| 25 | rm -rf /usr/share/logtalk/bin |
|---|