summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Alexander <wired@gentoo.org>2009-11-05 07:59:35 +0000
committerAlex Alexander <wired@gentoo.org>2009-11-05 07:59:35 +0000
commit44d0a26790b2589feaa2807706995e723c00908d (patch)
tree9dcde6d019bbe56a3e2dc123c25d88ce9da0f0c9 /dev-python/PyQt4/files
parentversion bump (diff)
downloadhistorical-44d0a26790b2589feaa2807706995e723c00908d.tar.gz
historical-44d0a26790b2589feaa2807706995e723c00908d.tar.bz2
historical-44d0a26790b2589feaa2807706995e723c00908d.zip
added multilib patch wrt bug #283936
Package-Manager: portage-2.2_rc48/cvs/Linux x86_64
Diffstat (limited to 'dev-python/PyQt4/files')
-rw-r--r--dev-python/PyQt4/files/PyQt4-4.6.1-configure-multilib.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-python/PyQt4/files/PyQt4-4.6.1-configure-multilib.patch b/dev-python/PyQt4/files/PyQt4-4.6.1-configure-multilib.patch
new file mode 100644
index 000000000000..c187dcd4d1d9
--- /dev/null
+++ b/dev-python/PyQt4/files/PyQt4-4.6.1-configure-multilib.patch
@@ -0,0 +1,13 @@
+--- PyQt-x11-gpl-4.6.1~orig/configure.py 2009-11-04 22:28:05.000000000 +0100
++++ PyQt-x11-gpl-4.6.1/configure.py 2009-11-04 23:10:01.000000000 +0100
+@@ -854,8 +854,8 @@
+ # version.
+ link = "-framework Python"
+ elif ("--enable-shared" in ducfg.get("CONFIG_ARGS", "") and
+- glob.glob("%s/lib/libpython%d.%d*" % (ducfg["exec_prefix"], py_major, py_minor))):
+- lib_dir_flag = quote("-L%s/lib" % ducfg["exec_prefix"])
++ glob.glob("%s/libpython%d.%d*" % (ducfg["LIBDIR"], py_major, py_minor))):
++ lib_dir_flag = quote("-L%s" % ducfg["LIBDIR"])
+ link = "%s -lpython%d.%d" % (lib_dir_flag, py_major, py_minor)
+ else:
+ sipconfig.inform("Qt Designer plugin disabled because Python library is static")