summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2014-07-31 06:39:45 +0000
committerMichael Weber <xmw@gentoo.org>2014-07-31 06:39:45 +0000
commit73c0f7bcf36fc0a42c7b6df57e10ba691c7b750b (patch)
tree736cd7d121a66f15e72c16b41ab4cc9b924b6b46 /media-gfx/icc_examin/files
parentUpdate x32 patch #513686 by Bertrand Jacquin. (diff)
downloadgentoo-2-73c0f7bcf36fc0a42c7b6df57e10ba691c7b750b.tar.gz
gentoo-2-73c0f7bcf36fc0a42c7b6df57e10ba691c7b750b.tar.bz2
gentoo-2-73c0f7bcf36fc0a42c7b6df57e10ba691c7b750b.zip
Fix xcm test (bug 492374, thanks Nikoli), version bump, update HOMEPAGE, fix DEPENDS.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'media-gfx/icc_examin/files')
-rw-r--r--media-gfx/icc_examin/files/icc_examin-0.54-fix-xcm-test.patch11
-rw-r--r--media-gfx/icc_examin/files/icc_examin-0.55-fix-xrandr-test.patch21
2 files changed, 32 insertions, 0 deletions
diff --git a/media-gfx/icc_examin/files/icc_examin-0.54-fix-xcm-test.patch b/media-gfx/icc_examin/files/icc_examin-0.54-fix-xcm-test.patch
new file mode 100644
index 000000000000..099a485b0a07
--- /dev/null
+++ b/media-gfx/icc_examin/files/icc_examin-0.54-fix-xcm-test.patch
@@ -0,0 +1,11 @@
+--- icc_examin-0.54/configure_tests.sh
++++ icc_examin-0.54/configure_tests.sh
+@@ -543,7 +543,7 @@
+ if [ -z "$found" ]; then
+ pkg-config --atleast-version=0.2 $pc_package
+ if [ $? = 0 ]; then
+- found=`pkg-config --cflags $pc_package`
++ found=" "`pkg-config --cflags $pc_package`
+ version=`pkg-config --modversion $pc_package`
+ fi
+ fi
diff --git a/media-gfx/icc_examin/files/icc_examin-0.55-fix-xrandr-test.patch b/media-gfx/icc_examin/files/icc_examin-0.55-fix-xrandr-test.patch
new file mode 100644
index 000000000000..51046058422d
--- /dev/null
+++ b/media-gfx/icc_examin/files/icc_examin-0.55-fix-xrandr-test.patch
@@ -0,0 +1,21 @@
+--- icc_examin-0.55/configure_tests.sh
++++ icc_examin-0.55/configure_tests.sh
+@@ -689,7 +689,8 @@
+ if [ -z "$found" ]; then
+ pkg-config --atleast-version=1.2 $pc_package
+ if [ $? = 0 ]; then
+- found=`pkg-config --cflags $pc_package`
++ found="yes"
++ cflags=`pkg-config --cflags $pc_package`
+ version=`pkg-config --modversion $pc_package`
+ fi
+ fi
+@@ -703,7 +704,7 @@
+ if [ -n "$MAKEFILE_DIR" ]; then
+ for i in $MAKEFILE_DIR; do
+ test -f "$ROOT_DIR/$i/makefile".in && echo "XRANDR = 1" >> "$i/makefile"
+- test -f "$ROOT_DIR/$i/makefile".in && echo "XRANDR_INC = $found" >> "$i/makefile"
++ test -f "$ROOT_DIR/$i/makefile".in && echo "XRANDR_INC = $cflags" >> "$i/makefile"
+ done
+ fi
+ elif [ $OSUNAME = "Linux" ]; then