diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-03 19:13:44 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-03 19:13:44 +0000 |
commit | 21e42d4f2c9fd6ca15f91e9cf138ef6ed44e5961 (patch) | |
tree | 5065368d03d16551923131740b6b63e887f06ca8 /eclass | |
parent | Update base function calls to comply with currently in-review eclass. (diff) | |
download | historical-21e42d4f2c9fd6ca15f91e9cf138ef6ed44e5961.tar.gz historical-21e42d4f2c9fd6ca15f91e9cf138ef6ed44e5961.tar.bz2 historical-21e42d4f2c9fd6ca15f91e9cf138ef6ed44e5961.zip |
Add base_src_make call and make games eclass use it (In preparation for new base eclass that uses that call).
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/base.eclass | 8 | ||||
-rw-r--r-- | eclass/games.eclass | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass index 19e14b8fae27..8ba1b6540803 100644 --- a/eclass/base.eclass +++ b/eclass/base.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.38 2009/05/17 09:25:55 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.39 2010/01/03 19:13:44 scarabeus Exp $ # @ECLASS: base.eclass # @MAINTAINER: @@ -151,6 +151,12 @@ base_src_compile() { fi } +# placeholder for future api so eclasses can be migrated now. +base_src_make() { + debug-print-fucntion $FUNCNAME "$@" + base_src_work make +} + # @FUNCTION: base_src_work # @USAGE: [ configure ] [ make ] [ all ] # @DESCRIPTION: diff --git a/eclass/games.eclass b/eclass/games.eclass index b56ddb1900f9..5f8300a5f90f 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.140 2009/12/16 23:55:44 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.141 2010/01/03 19:13:44 scarabeus Exp $ # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -145,7 +145,7 @@ games_src_compile() { case ${EAPI:-0} in 0|1) games_src_configure ;; esac - base_src_compile make + base_src_make } games_pkg_preinst() { |