DRC | 7f73d9b | 2011-05-25 03:51:29 +0000 | [diff] [blame] | 1 | # Copyright (C)2009-2011 D. R. Commander. All Rights Reserved. |
| 2 | # |
| 3 | # Redistribution and use in source and binary forms, with or without |
| 4 | # modification, are permitted provided that the following conditions are met: |
| 5 | # |
| 6 | # - Redistributions of source code must retain the above copyright notice, |
| 7 | # this list of conditions and the following disclaimer. |
| 8 | # - Redistributions in binary form must reproduce the above copyright notice, |
| 9 | # this list of conditions and the following disclaimer in the documentation |
| 10 | # and/or other materials provided with the distribution. |
| 11 | # - Neither the name of the libjpeg-turbo Project nor the names of its |
| 12 | # contributors may be used to endorse or promote products derived from this |
| 13 | # software without specific prior written permission. |
| 14 | # |
| 15 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", |
| 16 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 17 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 18 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE |
| 19 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 20 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 21 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 22 | # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 23 | # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 24 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 25 | # POSSIBILITY OF SUCH DAMAGE. |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 26 | |
| 27 | #!/bin/sh |
| 28 | |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 29 | if [ ! "`id -u`" = "0" ]; then |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 30 | echo "ERROR: This script must be executed as root" |
| 31 | exit -1 |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 32 | fi |
| 33 | |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 34 | PACKAGE=@PACKAGE_NAME@ |
| 35 | MACPACKAGE=com.$PACKAGE.$PACKAGE |
| 36 | RECEIPT=/Library/Receipts/$PACKAGE.pkg |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 37 | |
| 38 | LSBOM= |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 39 | if [ -d $RECEIPT ]; then |
| 40 | LSBOM='lsbom -s -f -l '$RECEIPT'/Contents/Archive.bom' |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 41 | else |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 42 | LSBOM='pkgutil --files '$MACPACKAGE |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 43 | fi |
| 44 | |
DRC | 7f73d9b | 2011-05-25 03:51:29 +0000 | [diff] [blame] | 45 | mylsbom() |
| 46 | { |
| 47 | $LSBOM || (echo "ERROR: Could not list package contents"; exit -1) |
| 48 | } |
| 49 | |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 50 | echo Removing package files ... |
| 51 | EXITSTATUS=0 |
| 52 | pushd / |
DRC | 7f73d9b | 2011-05-25 03:51:29 +0000 | [diff] [blame] | 53 | mylsbom | while read file; do |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 54 | if [ ! -d "$file" ]; then rm "$file" 2>&1 || EXITSTATUS=-1; fi |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 55 | done |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 56 | popd |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 57 | |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 58 | echo Removing package directories ... |
| 59 | if [ -d /opt/$PACKAGE/bin ]; then |
| 60 | rmdir /opt/$PACKAGE/bin 2>&1 || EXITSTATUS=-1 |
DRC | 995c831 | 2010-06-05 01:20:35 +0000 | [diff] [blame] | 61 | fi |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 62 | if [ -d /opt/$PACKAGE/lib ]; then |
| 63 | rmdir /opt/$PACKAGE/lib 2>&1 || EXITSTATUS=-1 |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 64 | fi |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 65 | if [ -d /opt/$PACKAGE/include ]; then |
| 66 | rmdir /opt/$PACKAGE/include 2>&1 || EXITSTATUS=-1 |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 67 | fi |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 68 | rm /opt/$PACKAGE/lib32 2>&1 || EXITSTATUS=-1 |
| 69 | rm /opt/$PACKAGE/lib64 2>&1 || EXITSTATUS=-1 |
| 70 | if [ -d /opt/$PACKAGE/man/man1 ]; then |
| 71 | rmdir /opt/$PACKAGE/man/man1 2>&1 || EXITSTATUS=-1 |
DRC | 995c831 | 2010-06-05 01:20:35 +0000 | [diff] [blame] | 72 | fi |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 73 | if [ -d /opt/$PACKAGE/man ]; then |
| 74 | rmdir /opt/$PACKAGE/man 2>&1 || EXITSTATUS=-1 |
DRC | 995c831 | 2010-06-05 01:20:35 +0000 | [diff] [blame] | 75 | fi |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 76 | if [ -d /opt/$PACKAGE/classes ]; then |
| 77 | rmdir /opt/$PACKAGE/classes 2>&1 || EXITSTATUS=-1 |
DRC | f2602ce | 2011-04-01 00:20:33 +0000 | [diff] [blame] | 78 | fi |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 79 | rmdir /opt/$PACKAGE 2>&1 || EXITSTATUS=-1 |
| 80 | rmdir /Library/Documentation/$PACKAGE 2>&1 || EXITSTATUS=-1 |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 81 | |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 82 | if [ -d $RECEIPT ]; then |
| 83 | echo Removing package receipt ... |
| 84 | rm -r $RECEIPT 2>&1 || EXITSTATUS=-1 |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 85 | else |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 86 | echo Forgetting package $MACPACKAGE ... |
| 87 | pkgutil --forget $MACPACKAGE |
DRC | 6533b6e | 2010-02-15 14:57:18 +0000 | [diff] [blame] | 88 | fi |
| 89 | |
DRC | 81f5f7c | 2011-05-24 13:59:14 +0000 | [diff] [blame] | 90 | exit $EXITSTATUS |