diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-02-05 05:39:14 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-02-05 05:39:14 +0000 |
commit | 8d96cd929ef13c972f049996c15c485af3516055 (patch) | |
tree | df57075f09c32fa58ada40580ea82cf174baeaf6 /eclass | |
parent | Fixing udev/hotplug depend (diff) | |
download | gentoo-2-8d96cd929ef13c972f049996c15c485af3516055.tar.gz gentoo-2-8d96cd929ef13c972f049996c15c485af3516055.tar.bz2 gentoo-2-8d96cd929ef13c972f049996c15c485af3516055.zip |
add some cleanups from vapier
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2.eclass | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index c1034d07985f..cd20e860a66c 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.80 2007/01/04 23:37:26 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.81 2007/02/05 05:39:14 compnerd Exp $ # # gnome2.eclass @@ -16,16 +16,16 @@ inherit fdo-mime libtool gnome.org gnome2-utils # Extra configure opts passed to econf -G2CONF=${G2CONF:=""} +G2CONF=${G2CONF:-""} # Extra options passed to elibtoolize -ELTCONF=${ELTCONF:=""} +ELTCONF=${ELTCONF:-""} # Should we use EINSTALL instead of DESTDIR -USE_EINSTALL=${USE_EINSTALL:=""} +USE_EINSTALL=${USE_EINSTALL:-""} # Run scrollkeeper for this package? -SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:="1"} +SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} @@ -41,6 +41,9 @@ gnome2_src_unpack() { # Prevent scrollkeeper access violations gnome2_omf_fix + + # Run libtoolize + elibtoolize ${ELTCONF} } gnome2_src_configure() { @@ -56,9 +59,6 @@ gnome2_src_configure() { G2CONF="${G2CONF} $(use_enable doc gtk-doc)" fi - # Run libtoolize - elibtoolize ${ELTCONF} - # Avoid sandbox violations caused by misbehaving packages (bug #128289) addwrite "${ROOT}root/.gnome2" |