diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-06-24 22:12:06 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-06-24 22:12:06 +0000 |
commit | 8f69df6ed2f0ba43c0e7e37f072e61a9a2585099 (patch) | |
tree | 7dea3e9a31b25107556a37425eac045127c18d8a /gnome-base/gconf/gconf-2.6.0.ebuild | |
parent | New upstream version. Dropped keywords as I can't test it for now. (diff) | |
download | gentoo-2-8f69df6ed2f0ba43c0e7e37f072e61a9a2585099.tar.gz gentoo-2-8f69df6ed2f0ba43c0e7e37f072e61a9a2585099.tar.bz2 gentoo-2-8f69df6ed2f0ba43c0e7e37f072e61a9a2585099.zip |
Don't call dodir in pkg_*; it breaks binary packages. Also use $IMAGE
instead of $D in pkg_*
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'gnome-base/gconf/gconf-2.6.0.ebuild')
-rw-r--r-- | gnome-base/gconf/gconf-2.6.0.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnome-base/gconf/gconf-2.6.0.ebuild b/gnome-base/gconf/gconf-2.6.0.ebuild index db745130840f..aa3b79dfc5ea 100644 --- a/gnome-base/gconf/gconf-2.6.0.ebuild +++ b/gnome-base/gconf/gconf-2.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-2.6.0.ebuild,v 1.12 2005/01/08 23:26:55 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-2.6.0.ebuild,v 1.13 2005/06/24 22:12:06 agriffis Exp $ inherit gnome2 @@ -42,6 +42,9 @@ src_install() { touch ${D}/etc/gconf/gconf.xml.mandatory/.keep${SLOT} touch ${D}/etc/gconf/gconf.xml.defaults/.keep${SLOT} + dodir /etc/env.d + dodir /root/.gconfd + } kill_gconf () { @@ -75,10 +78,7 @@ pkg_preinst () { kill_gconf - dodir /etc/env.d - echo 'CONFIG_PROTECT_MASK="/etc/gconf"' > ${D}/etc/env.d/50gconf - - dodir /root/.gconfd + echo 'CONFIG_PROTECT_MASK="/etc/gconf"' > ${IMAGE}/etc/env.d/50gconf } |