diff options
author | 2014-07-31 06:39:53 +0000 | |
---|---|---|
committer | 2014-07-31 06:39:53 +0000 | |
commit | 50346f7f6eb826afbf2940035234bfd5c83f7a78 (patch) | |
tree | 5087ec4075329ffa564452fb3153672ef794eee6 /media-gfx/icc_examin/files | |
parent | Update x32 patch #513686 by Bertrand Jacquin. (diff) | |
download | historical-50346f7f6eb826afbf2940035234bfd5c83f7a78.tar.gz historical-50346f7f6eb826afbf2940035234bfd5c83f7a78.tar.bz2 historical-50346f7f6eb826afbf2940035234bfd5c83f7a78.zip |
Fix xcm test (bug 492374, thanks Nikoli), version bump, update HOMEPAGE, fix DEPENDS.
Package-Manager: portage-2.2.10/cvs/Linux x86_64
Manifest-Sign-Key: 0x62EEF090
Diffstat (limited to 'media-gfx/icc_examin/files')
-rw-r--r-- | media-gfx/icc_examin/files/icc_examin-0.54-fix-xcm-test.patch | 11 | ||||
-rw-r--r-- | media-gfx/icc_examin/files/icc_examin-0.55-fix-xrandr-test.patch | 21 |
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 |