summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-04-11 05:46:09 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-04-11 05:46:09 +0000
commit44edb786c8e202e9d32e9928ade77903793fe097 (patch)
tree01fa7ffadc777660dfb4b92945e3e73ca5673660 /eclass/distutils.eclass
parentversion bump (bug #43921) (diff)
downloadhistorical-44edb786c8e202e9d32e9928ade77903793fe097.tar.gz
historical-44edb786c8e202e9d32e9928ade77903793fe097.tar.bz2
historical-44edb786c8e202e9d32e9928ade77903793fe097.zip
Apply patch from bug #25013 to replace calls to newdepend and newrdepend
with variable setting (DEPEND=, RDEPEND=).
Diffstat (limited to 'eclass/distutils.eclass')
-rw-r--r--eclass/distutils.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/distutils.eclass b/eclass/distutils.eclass
index 4a4d576eb560..30ec1d9e0c59 100644
--- a/eclass/distutils.eclass
+++ b/eclass/distutils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.22 2003/11/25 09:44:18 liquidx Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.23 2004/04/11 05:46:09 mr_bones_ Exp $
#
# Author: Jon Nelson <jnelson@gentoo.org>
# Current Maintainer: Alastair Tse <liquidx@gentoo.org>
@@ -27,10 +27,10 @@ INHERITED="$INHERITED $ECLASS"
# This helps make it possible to add extensions to python slots.
# Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION.
if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then
- newdepend "=dev-lang/python-2.1*"
+ DEPEND="=dev-lang/python-2.1*"
python="python2.1"
else
- newdepend "virtual/python"
+ DEPEND="virtual/python"
python="python"
fi