summaryrefslogtreecommitdiffstats
path: root/audio-libs/openal-soft/UP_TRIGGERS
diff options
context:
space:
mode:
Diffstat (limited to 'audio-libs/openal-soft/UP_TRIGGERS')
-rwxr-xr-xaudio-libs/openal-soft/UP_TRIGGERS16
1 files changed, 16 insertions, 0 deletions
diff --git a/audio-libs/openal-soft/UP_TRIGGERS b/audio-libs/openal-soft/UP_TRIGGERS
new file mode 100755
index 0000000000..1582fb80c7
--- /dev/null
+++ b/audio-libs/openal-soft/UP_TRIGGERS
@@ -0,0 +1,16 @@
+# up_trigger everything on major version updates
+local OLD_SPELL_VERSION=""
+if spell_ok $SPELL; then
+ OLD_SPELL_VERSION="$(installed_version $SPELL)"
+ if test "${VERSION}" != "${OLD_SPELL_VERSION}"; then
+ message "This is a possibly incompatible update of ${SPELL}..."
+ message "Figuring out what spells need to be recast, this may take a while."
+ for each in $(show_up_depends $SPELL 1); do
+ if gaze install $each | xargs readelf -d 2> /dev/null |
+ grep -q "NEEDED.*libopenal.so.0"; then
+ up_trigger $each cast_self
+ fi
+ done
+ fi
+fi
+