All of the pango ebuilds in the tree create ${PANGO_CONFDIR} in src_install, but don't populate anything in it until pkg_postinst. This causes a problem since the empty directory isn't captured by quickpkg. Anyway, the fix is quite simple. This needs to be applied to all pango versions in the tree, and is needed for 2006.1's release. Index: pango-1.10.3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.10.3.ebuild,v retrieving revision 1.10 diff -u -b -B -r1.10 pango-1.10.3.ebuild --- pango-1.10.3.ebuild 21 Apr 2006 20:22:37 -0000 1.10 +++ pango-1.10.3.ebuild 7 Jun 2006 13:04:33 -0000 @@ -65,8 +65,6 @@ gnome2_src_install rm ${D}/etc/pango/pango.modules - use amd64 && mkdir ${D}/etc/pango/${CHOST} - use x86 && [ "${CONF_LIBDIR}" == "lib32" ] && mkdir ${D}/etc/pango/${CHOST} } @@ -77,6 +75,7 @@ use amd64 && PANGO_CONFDIR="/etc/pango/${CHOST}" use x86 && [ "${CONF_LIBDIR}" == "lib32" ] && PANGO_CONFDIR="/etc/pango/${CHOST}" PANGO_CONFDIR=${PANGO_CONFDIR:=/etc/pango} + mkdir -p ${PANGO_CONFDIR} pango-querymodules > ${PANGO_CONFDIR}/pango.modules fi
thanks, should be in cvs now.