summaryrefslogtreecommitdiff
path: root/community/rawtherapee/rawtherapee.install
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/rawtherapee/rawtherapee.install
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/rawtherapee/rawtherapee.install')
-rw-r--r--community/rawtherapee/rawtherapee.install24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/rawtherapee/rawtherapee.install b/community/rawtherapee/rawtherapee.install
new file mode 100644
index 000000000..ccf3323ae
--- /dev/null
+++ b/community/rawtherapee/rawtherapee.install
@@ -0,0 +1,24 @@
+post_upgrade() {
+
+if [ ${2%%_*} == "3.0a1" ]; then
+ TMP=${2##*_}
+ TMP=${TMP%%-*}
+
+ if [ $TMP -lt 316 ]; then
+ echo "Profile extension has changed from .pp2 to .pp3"
+ echo -e "since rawtherapee-3.0a1_54-1\n"
+ echo "If you used rawtherapee-3.0a1_54-1 or any earlier 3.0 version"
+ echo "you have to change the extension manually.\n"
+ echo "NOTE: pp2 profiles from rawtherapee 2.4 and older"
+ echo "are not compatible."
+ fi
+
+ if [ $TMP -lt 589 ]; then
+ echo "There were lots of changes to the behavior of the majority of tools."
+ echo "This may cause your files to look differently than before."
+ fi
+fi
+
+}
+
+# vim:set ts=2 sw=2 et: