Xautoconfig works out of the box one ppc64 as long as the ebuild allows it. Trivial patch below. --- Xautoconfig-0.22-r2.ebuild.orig 2005-01-01 18:09:57.987988752 -0800 +++ Xautoconfig-0.22-r2.ebuild 2005-01-01 18:13:40.463986776 -0800 @@ -9,13 +9,13 @@ HOMEPAGE="http://ftp.penguinppc.org/projects/xautocfg/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="ppc -x86 -sparc" +KEYWORDS="ppc ppc64 -x86 -sparc " IUSE="" DEPEND="sys-apps/pciutils" src_unpack() { - if [ ${ARCH} != ppc ] + if [ ${ARCH} != ppc || ${ARCH} != ppc64 ] then die "This is a PPC-only package" fi Reproducible: Always Steps to Reproduce: 1. emerge x11-misc/Xautoconfig 2. 3. Actual Results: "This is a PPC-only package" Expected Results: Compiles on both ppc (32) and ppc64.
Thx! Fixed in CVS. Markus
closing