diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-02-23 10:59:44 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-02-23 10:59:44 +0000 |
commit | baf42c3b8df7092bfd6c2b611f43e7e19d0d0fb0 (patch) | |
tree | dc7ca960391b1ec2c1aadd728cde0865f941f17c /eclass | |
parent | Stable for ppc64, wrt bug #535330 (diff) | |
download | historical-baf42c3b8df7092bfd6c2b611f43e7e19d0d0fb0.tar.gz historical-baf42c3b8df7092bfd6c2b611f43e7e19d0d0fb0.tar.bz2 historical-baf42c3b8df7092bfd6c2b611f43e7e19d0d0fb0.zip |
Remove USE_EINSTALL (#482082)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/gnome2.eclass | 21 |
2 files changed, 7 insertions, 19 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index d3d0502494b9..3d0127f832bd 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1550 2015/02/23 10:57:38 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1551 2015/02/23 10:59:44 pacho Exp $ + + 23 Feb 2015; Pacho Ramos <pacho@gentoo.org> gnome2.eclass: + Remove USE_EINSTALL (#482082) 23 Feb 2015; Pacho Ramos <pacho@gentoo.org> gnome2.eclass: Deprecate eapis 2 and 3 for gnome2.eclass (#539118) diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index e6aca7088bc2..97d5fcc6b83c 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.129 2015/02/23 10:57:38 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.130 2015/02/23 10:59:44 pacho Exp $ # @ECLASS: gnome2.eclass # @MAINTAINER: @@ -51,12 +51,6 @@ fi # Extra options passed to elibtoolize ELTCONF=${ELTCONF:-""} -# @ECLASS-VARIABLE: USE_EINSTALL -# @DEFAULT_UNSET -# @DESCRIPTION: -# Should we use EINSTALL instead of DESTDIR. DEPRECATED -USE_EINSTALL=${USE_EINSTALL:-""} - # @ECLASS-VARIABLE: DOCS # @DEFAULT_UNSET # @DESCRIPTION: @@ -200,17 +194,8 @@ gnome2_src_install() { # we must delay gconf schema installation due to sandbox export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" - if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then - debug-print "Installing with 'make install'" - emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" - else - debug-print "Installing with 'einstall'" - eqawarn - eqawarn "Support for USE_EINSTALL will be dropped in a month," - eqawarn "please stop using it (#482082)" - eqawarn - einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" - fi + debug-print "Installing with 'make install'" + emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |