summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDane Smith <c1pher@gentoo.org>2010-11-07 18:28:38 +0000
committerDane Smith <c1pher@gentoo.org>2010-11-07 18:28:38 +0000
commit73c0f6e5ee5eb77cf32a22dfb501f6769358ebf3 (patch)
tree166df3ea628c528d852407d08f9a118d3d787e65 /app-crypt/xca/files
parentdev-lisp/cl-spatial-trees removal, p.masked from 17Sep2010, wrt bug #337963 (diff)
downloadhistorical-73c0f6e5ee5eb77cf32a22dfb501f6769358ebf3.tar.gz
historical-73c0f6e5ee5eb77cf32a22dfb501f6769358ebf3.tar.bz2
historical-73c0f6e5ee5eb77cf32a22dfb501f6769358ebf3.zip
Version bump for xca to 0.9.0 wrt bug 343599.
Package-Manager: portage-2.2.0_alpha3_p8/cvs/Linux x86_64
Diffstat (limited to 'app-crypt/xca/files')
-rw-r--r--app-crypt/xca/files/xca-0.9.0-qt_detection.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/app-crypt/xca/files/xca-0.9.0-qt_detection.patch b/app-crypt/xca/files/xca-0.9.0-qt_detection.patch
new file mode 100644
index 000000000000..e7eaa232a6e4
--- /dev/null
+++ b/app-crypt/xca/files/xca-0.9.0-qt_detection.patch
@@ -0,0 +1,29 @@
+--- configure 2010-08-29 04:28:32.000000000 -0400
++++ configure.mine 2010-11-07 13:08:58.000000000 -0500
+@@ -101,15 +101,17 @@
+ # check for libs
+ search_lib() {
+ for dir in ${DIRS}; do
+- for dbn in $@; do
+- for suffix in so dylib obj a; do
+- for lib in lib lib64 lib32 out; do
+- if test -r "${dir}/${lib}/lib${dbn}.${suffix}"; then
+- add_lib "${dir}/${lib}" "${dbn}" "${suffix}"
+- echo "Found: lib${dbn}.${suffix} at ${dir}/${lib}"
+- return 0
+- fi
+- done
++ for subdir in "" ${subdirs}; do
++ for dbn in $@; do
++ for suffix in so dylib obj a; do
++ for lib in lib out; do
++ if test -r "${dir}/${lib}/${subdir}/lib${dbn}.${suffix}"; then
++ add_lib "${dir}/${lib}/${subdir}" "${dbn}" "${suffix}"
++ echo "Found: lib${dbn}.${suffix} at ${dir}/${lib}/${subdir}"
++ return 0
++ fi
++ done
++ done
+ done
+ done
+ done