2010-08-29 Magnus Granberg #301299 * net-ftp/ncftp/ncftp-3.2.4.1.ebuild add pch use flag and test if host have pax enable --- /usr/portage/net-ftp/ncftp/ncftp-3.2.4.1.ebuild 2010-08-30 05:37:52.000000000 +0200 +++ /usr/local/portage/net-ftp/ncftp/ncftp-3.2.4.1.ebuild 2010-09-03 17:22:29.000000000 +0200 @@ -4,7 +4,7 @@ EAPI="2" -inherit eutils toolchain-funcs +inherit eutils toolchain-funcs pax-utils IPV6_P="ncftp-323-v6-20091109" DESCRIPTION="An extremely configurable ftp client" @@ -32,7 +32,12 @@ -i Makefile.in */Makefile.in || die } src_configure() { - LC_ALL="C" econf --disable-universal $(use_enable pch precomp ) || die + confncftp="--disable-universal" + # Fix so we can disable precompiledheaders #301299 + if ! use pch || host-is-pax ; then + confncftp="${confncftp} --disable-precomp" + fi + LC_ALL="C" econf ${confncftp} || die } src_install() {