summaryrefslogtreecommitdiff
path: root/community/argyllcms/argyllcms.install
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/argyllcms/argyllcms.install
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/argyllcms/argyllcms.install')
-rw-r--r--community/argyllcms/argyllcms.install39
1 files changed, 0 insertions, 39 deletions
diff --git a/community/argyllcms/argyllcms.install b/community/argyllcms/argyllcms.install
deleted file mode 100644
index 2f001309b..000000000
--- a/community/argyllcms/argyllcms.install
+++ /dev/null
@@ -1,39 +0,0 @@
-post_install() {
- cat << EOF
-
-NOTE for argyllcms:
-----
- ==> The documentaion is only available as html!
- ==> You will find it in /usr/share/argyllcms/doc
- ==> Color charts located in /usr/share/argyllcms/ref
- ==> Since release 1.5.0 ColorHug support is enabled by default. The environment variable "ENABLE_COLORHUG" is not longer needed!
-EOF
-
-/usr/sbin/groupadd plugdev &> /dev/null
-RETVAL=$?
-if [ $RETVAL -eq 0 ] ; then
- /bin/echo "==> Added group plugdev. Please add your argyllcms user to this group! <=="
-elif [ $RETVAL -eq 9 ] ; then
- /bin/echo "==> Please add your argyllcms user to plugdev group! <=="
-else
- /bin/echo "==> Please create group plugdev and add your argyllcms user to this group! <=="
-fi
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- /bin/true
-}
-
-post_remove() {
- /bin/echo "==> Please check if group plugdev and your assigned argyllcms user is still required! <=="
- /bin/true
-}
-
-op=$1
-shift
-
-$op $*