Commits

Michael Dickens authored 60febb0d791
py*-pyqt4: add patch to enable PPC64 arch

Closes: https://trac.macports.org/ticket/56092
No tags

python/py-pyqt4/files/patch-add_ppc64.diff

Added
1 +--- configure.py.orig
2 ++++ configure.py
3 +@@ -207,7 +207,7 @@
4 + if sys.platform == 'darwin':
5 + g = optparse.OptionGroup(p, title="MacOS X Configuration")
6 + g.add_option("--use-arch", action="append", metavar="ARCH",
7 +- dest="use_arch", choices=["i386", "x86_64", "ppc"],
8 ++ dest="use_arch", choices=["i386", "x86_64", "ppc", "ppc64"],
9 + help="add ARCH to the list of architectures to use when "
10 + "running pyuic4 [default: system default]")
11 + p.add_option_group(g)
12 +@@ -1070,6 +1070,8 @@
13 + qmake_archs.append('x86_64')
14 + elif a == 'ppc':
15 + qmake_archs.append('ppc')
16 ++ elif a == 'ppc64':
17 ++ qmake_archs.append('ppc64')
18 +
19 + return 'CONFIG += %s\n' % ' '.join(qmake_archs)
20 +

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut