Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 135912 - x11-libs/pango (all versions) GRP bug fix
Summary: x11-libs/pango (all versions) GRP bug fix
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: High normal
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-07 06:35 UTC by Chris Gianelloni (RETIRED)
Modified: 2006-06-07 07:09 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chris Gianelloni (RETIRED) gentoo-dev 2006-06-07 06:35:21 UTC
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
Comment 1 John N. Laliberte (RETIRED) gentoo-dev 2006-06-07 07:09:55 UTC
thanks, should be in cvs now.