summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-02-11 21:14:20 +0000
committerPacho Ramos <pacho@gentoo.org>2014-02-11 21:14:20 +0000
commitb1d3544bf43605858728f5c4f9b7ff62a7b21190 (patch)
treeb2dadc275a1d38fa1623278f1771e9ded3d24751 /eclass/gnome2.eclass
parentlibgnomecanvas is needed (#500938 by John J. Aylward) (diff)
downloadgentoo-2-b1d3544bf43605858728f5c4f9b7ff62a7b21190.tar.gz
gentoo-2-b1d3544bf43605858728f5c4f9b7ff62a7b21190.tar.bz2
gentoo-2-b1d3544bf43605858728f5c4f9b7ff62a7b21190.zip
Pass --docdir with proper directory, bug #482646
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r--eclass/gnome2.eclass9
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass
index 40b536e501ef..ec6832a17bb4 100644
--- a/eclass/gnome2.eclass
+++ b/eclass/gnome2.eclass
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.124 2013/09/29 08:49:53 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.125 2014/02/11 21:14:20 pacho Exp $
# @ECLASS: gnome2.eclass
# @MAINTAINER:
@@ -163,6 +163,11 @@ gnome2_src_configure() {
G2CONF="--enable-compile-warnings=minimum ${G2CONF}"
fi
+ # Pass --docdir with proper directory, bug #482646
+ if grep -q "^ *--docdir=" "${ECONF_SOURCE:-.}"/configure; then
+ G2CONF="--docdir="${EPREFIX}"/usr/share/doc/${PF} ${G2CONF}"
+ fi
+
# Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659)
addwrite "$(unset HOME; echo ~)/.gnome2"