--- /usr/portage/net-libs/gnutls/gnutls-1.2.4.ebuild 2005-06-21 14:06:01.000000000 +0200 +++ gnutls-1.2.4.ebuild 2005-07-09 09:45:47.000000000 +0200 @@ -14,7 +14,7 @@ # GPL-2 for the gnutls-extras library and LGPL for the gnutls library. SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~ppc-macos ~s390 ~sparc ~x86" # Removed keywords awaiting >=dev-libs/libtasn1-0.2.10 keywords (bug #61944) # ~ia64 ~hppa @@ -61,7 +61,15 @@ } src_install() { - emake DESTDIR=${D} install || die + # OSX make doesn't handle -jx with x > 1 correctly here. + # Forcing it to be just one process, solves installation + # problems that arise here. Fabian Groffen (2005-07-09) + if use ppc-macos; + then + emake -j1 DESTDIR=${D} install || die + else + emake DESTDIR=${D} install || die + fi dodoc AUTHORS COPYING COPYING.LIB ChangeLog NEWS \ README THANKS doc/TODO