summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichael Sterrett <msterret@gentoo.org>2003-07-22 00:35:56 +0000
committerMichael Sterrett <msterret@gentoo.org>2003-07-22 00:35:56 +0000
commit12267c885b1e570b2e6dd3e894f6f420ef1ea061 (patch)
tree356a5a99cecb07becfbb9e1bafe9cd6831c46f62 /eclass
parentupdated with newdepend instead of DEPEND (diff)
downloadgentoo-2-12267c885b1e570b2e6dd3e894f6f420ef1ea061.tar.gz
gentoo-2-12267c885b1e570b2e6dd3e894f6f420ef1ea061.tar.bz2
gentoo-2-12267c885b1e570b2e6dd3e894f6f420ef1ea061.zip
use newdepend instead of DEPEND=
Diffstat (limited to 'eclass')
-rw-r--r--eclass/aspell-dict.eclass5
-rw-r--r--eclass/freedict.eclass4
-rw-r--r--eclass/vim.eclass8
3 files changed, 8 insertions, 9 deletions
diff --git a/eclass/aspell-dict.eclass b/eclass/aspell-dict.eclass
index 2a0e63fb40df..684e71fedb53 100644
--- a/eclass/aspell-dict.eclass
+++ b/eclass/aspell-dict.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/aspell-dict.eclass,v 1.17 2003/07/20 08:10:38 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.18 2003/07/22 00:35:56 msterret Exp $
#
# Author: Seemant Kulleen <seemant@gentoo.org>
#
@@ -21,8 +21,7 @@ DESCRIPTION="${ASPELL_LANG} language dictionary for aspell"
HOMEPAGE="http://aspell.net"
SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2"
-DEPEND=">=app-text/aspell-0.50"
-RDEPEND="$DEPEND"
+newdepend ">=app-text/aspell-0.50"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha mips hppa arm amd64"
diff --git a/eclass/freedict.eclass b/eclass/freedict.eclass
index ca6dfad11449..27b4b1067bbd 100644
--- a/eclass/freedict.eclass
+++ b/eclass/freedict.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/freedict.eclass,v 1.3 2003/06/03 23:26:46 liquidx Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/freedict.eclass,v 1.4 2003/07/22 00:32:08 msterret Exp $
# Author: Seemant Kulleen <seemant@gentoo.org>
# This eclass exists to ease the installation of freedict translation
@@ -24,7 +24,7 @@ SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm"
-DEPEND="app-text/dictd"
+newdepend "app-text/dictd"
freedict_src_install() {
insinto /usr/lib/dict
diff --git a/eclass/vim.eclass b/eclass/vim.eclass
index 735945e03778..946f2f4739d3 100644
--- a/eclass/vim.eclass
+++ b/eclass/vim.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/vim.eclass,v 1.31 2003/07/15 01:41:09 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.32 2003/07/22 00:34:02 msterret Exp $
# Authors:
# Ryan Phillips <rphillips@gentoo.org>
@@ -19,7 +19,7 @@ SLOT="0"
LICENSE="vim"
# portage dependency is for use_with/use_enable
-DEPEND="
+newdepend "
>=sys-apps/portage-2.0.45-r3
>=sys-apps/sed-4
sys-devel/autoconf
@@ -33,9 +33,9 @@ DEPEND="
# Vim versions after 6.2d should work with Ruby 1.8 because of a local
# Gentoo patch; working on putting it upstream (22 May 2003 agriffis)
if [[ "$PV" < 6.2 || ( "$PV" == 6.2_pre* && "${PV#*pre}" -lt 4 ) ]]; then
- DEPEND="${DEPEND} ruby? ( =dev-lang/ruby-1.6* )" # 1.8 doesn't work
+ newdepend "ruby? ( =dev-lang/ruby-1.6* )" # 1.8 doesn't work
else
- DEPEND="${DEPEND} ruby? ( dev-lang/ruby )"
+ newdepend "ruby? ( dev-lang/ruby )"
fi
apply_vim_patches() {