summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLadislav Hagara2011-06-30 11:23:10 +0200
committerLadislav Hagara2011-06-30 11:23:10 +0200
commita069ba8658dc86300b62b6b3370854047c811b9c (patch)
tree7d759cd1977deafab81cee0109656fe77fe8802d
parent8ddc596760b37a2022ba0ccc55afff6638fdae08 (diff)
glew updated, INSTALL nad UP_TRIGGERS added
-rwxr-xr-xgraphics-libs/glew/DETAILS1
-rw-r--r--graphics-libs/glew/HISTORY5
-rwxr-xr-xgraphics-libs/glew/INSTALL1
-rwxr-xr-xgraphics-libs/glew/UP_TRIGGERS9
4 files changed, 16 insertions, 0 deletions
diff --git a/graphics-libs/glew/DETAILS b/graphics-libs/glew/DETAILS
index 69f51f1a4d..78055446c6 100755
--- a/graphics-libs/glew/DETAILS
+++ b/graphics-libs/glew/DETAILS
@@ -1,5 +1,6 @@
SPELL=glew
VERSION=1.6.0
+ PATCHLEVEL=1
SOURCE_HASH=sha512:5b8ca9e97d01d49fde591b0c55683620e0a6ddfaf5e93e03536e6217bbb548adfcd4e945a39ed3cfddac3f239b3272be1b3491f4071689d02c4bfb7e0ec44904
SOURCE=$SPELL-$VERSION.tgz
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
diff --git a/graphics-libs/glew/HISTORY b/graphics-libs/glew/HISTORY
index e52704d07d..80fd556189 100644
--- a/graphics-libs/glew/HISTORY
+++ b/graphics-libs/glew/HISTORY
@@ -1,3 +1,8 @@
+2011-06-30 Ladislav Hagara <hgr@vabo.cz>
+ * DETAILS: PATCHLEVEL=1
+ * INSTALL: added to install bin/{glew,visual}info and lib/libGLEWmx.so*
+ * UP_TRIGGERS: added to fix libGLEW.so.1.5 -> libGLEW.so.1.6 problem
+
2011-06-07 Arjan Bouter <abouter@sourcemage.org>
* DETAILS: version 1.6.0
diff --git a/graphics-libs/glew/INSTALL b/graphics-libs/glew/INSTALL
new file mode 100755
index 0000000000..b3694c4091
--- /dev/null
+++ b/graphics-libs/glew/INSTALL
@@ -0,0 +1 @@
+make install.all
diff --git a/graphics-libs/glew/UP_TRIGGERS b/graphics-libs/glew/UP_TRIGGERS
new file mode 100755
index 0000000000..f5ec3f0e92
--- /dev/null
+++ b/graphics-libs/glew/UP_TRIGGERS
@@ -0,0 +1,9 @@
+local OLD_SPELL_VERSION=""
+spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)" || return 0
+if [ "${VERSION:0:3}" != "${OLD_SPELL_VERSION:0:3}" ]; 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
+ up_trigger $each check_self
+ done
+fi