diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-04-10 13:02:38 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-04-10 13:02:38 +0000 |
commit | ee431e0c31e1cc7b770c3d4f9b8e6b81c9654f3b (patch) | |
tree | 6c224238b1dd9d3a2adcdc4b6fed6debbf4bd8ce /eclass | |
parent | Version bumped and marked previous version stable. Use ruby.eclass. virtual/r... (diff) | |
download | gentoo-2-ee431e0c31e1cc7b770c3d4f9b8e6b81c9654f3b.tar.gz gentoo-2-ee431e0c31e1cc7b770c3d4f9b8e6b81c9654f3b.tar.bz2 gentoo-2-ee431e0c31e1cc7b770c3d4f9b8e6b81c9654f3b.zip |
newdepend is deprecated; use DEPEND/RDEPEND instead, see bug #25013
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp.eclass | 4 | ||||
-rw-r--r-- | eclass/iiimf.eclass | 4 | ||||
-rw-r--r-- | eclass/latex-package.eclass | 6 | ||||
-rw-r--r-- | eclass/ruby-gnome2.eclass | 13 | ||||
-rw-r--r-- | eclass/ruby.eclass | 4 | ||||
-rw-r--r-- | eclass/sgml-catalog.eclass | 4 | ||||
-rw-r--r-- | eclass/tetex.eclass | 6 |
7 files changed, 17 insertions, 24 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index d9bee24cd2a2..b669df935351 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.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/elisp.eclass,v 1.9 2003/10/06 06:38:33 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.10 2004/04/10 13:02:38 usata Exp $ # # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> @@ -25,7 +25,7 @@ if [ "${SIMPLE_ELISP}" = 't' ]; then # S="${WORKDIR}/${P}" fi -newdepend "virtual/emacs" +DEPEND="virtual/emacs" IUSE="" elisp_src_unpack() { diff --git a/eclass/iiimf.eclass b/eclass/iiimf.eclass index d66326ab0a01..e81024d15065 100644 --- a/eclass/iiimf.eclass +++ b/eclass/iiimf.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/iiimf.eclass,v 1.3 2003/09/14 01:38:51 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/iiimf.eclass,v 1.4 2004/04/10 13:02:38 usata Exp $ # # Author: Mamoru KOMACHI <usata@gentoo.org> # @@ -27,7 +27,7 @@ SLOT="0" IUSE="debug" -newdepend "virtual/glibc" +DEPEND="virtual/glibc" S="${WORKDIR}/${IMSDK}/${PN}" diff --git a/eclass/latex-package.eclass b/eclass/latex-package.eclass index ba6f8358eb2b..f6d4d59409d7 100644 --- a/eclass/latex-package.eclass +++ b/eclass/latex-package.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/latex-package.eclass,v 1.16 2004/03/27 19:08:16 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.17 2004/04/10 13:02:38 usata Exp $ # # Author Matthew Turk <satai@gentoo.org> # @@ -48,8 +48,8 @@ inherit base INHERITED="$INHERITED $ECLASS" -newdepend "virtual/tetex - >=sys-apps/texinfo-4.2-r5" +DEPEND="virtual/tetex + >=sys-apps/texinfo-4.2-r5" ECLASS=latex-package HOMEPAGE="http://www.tug.org/" SRC_URI="ftp://tug.ctan.org/macros/latex/" diff --git a/eclass/ruby-gnome2.eclass b/eclass/ruby-gnome2.eclass index 35f5861d914d..befed381044e 100644 --- a/eclass/ruby-gnome2.eclass +++ b/eclass/ruby-gnome2.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/ruby-gnome2.eclass,v 1.6 2004/01/23 07:27:07 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-gnome2.eclass,v 1.7 2004/04/10 13:02:38 usata Exp $ # # This eclass simplifies installation of the various pieces of # ruby-gnome2 since they share a very common installation procedure. @@ -26,15 +26,8 @@ HOMEPAGE="http://ruby-gnome2.sourceforge.jp/" LICENSE="Ruby" SLOT="0" -if [[ ${PV} == 0.5.0 ]]; then - newdepend ">=dev-lang/ruby-1.6" - newrdepend ">=dev-lang/ruby-1.6" -else - # Not necessarily true, but nobody's testing the newer ruby-gnome2 - # with the older ruby... - newdepend ">=dev-lang/ruby-1.8" - newrdepend ">=dev-lang/ruby-1.8" -fi +DEPEND="virtual/ruby" +RDEPEND="virtual/ruby" ruby-gnome2_src_compile() { ruby extconf.rb || die "extconf.rb failed" diff --git a/eclass/ruby.eclass b/eclass/ruby.eclass index 65aa9024e602..adbabb5f6060 100644 --- a/eclass/ruby.eclass +++ b/eclass/ruby.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.27 2004/04/10 10:01:12 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.28 2004/04/10 13:02:38 usata Exp $ # # Author: Mamoru KOMACHI <usata@gentoo.org> # @@ -47,7 +47,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz" SLOT="0" LICENSE="Ruby" -newdepend "virtual/ruby" +DEPEND="virtual/ruby" [[ -z "${RUBY}" ]] && export RUBY=/usr/bin/ruby diff --git a/eclass/sgml-catalog.eclass b/eclass/sgml-catalog.eclass index 9c51e61a9af1..b11ecd3e2012 100644 --- a/eclass/sgml-catalog.eclass +++ b/eclass/sgml-catalog.eclass @@ -1,13 +1,13 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/sgml-catalog.eclass,v 1.6 2003/04/12 16:15:03 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/sgml-catalog.eclass,v 1.7 2004/04/10 13:02:38 usata Exp $ # # Author Matthew Turk <satai@gentoo.org> inherit base INHERITED="$INHERITED $ECLASS" -newdepend ">=app-text/sgml-common-0.6.3-r2" +DEPEND=">=app-text/sgml-common-0.6.3-r2" ECLASS=sgml-catalog declare -a toinstall diff --git a/eclass/tetex.eclass b/eclass/tetex.eclass index 1c6155f27649..7aebe597e5ba 100644 --- a/eclass/tetex.eclass +++ b/eclass/tetex.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/tetex.eclass,v 1.6 2004/02/21 12:20:06 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/tetex.eclass,v 1.7 2004/04/10 13:02:38 usata Exp $ # # Author: Jaromir Malenko <malenko@email.cz> # Author: Mamoru KOMACHI <usata@gentoo.org> @@ -34,7 +34,7 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="~ia64 ~x86 ~ppc ~sparc ~alpha ~amd64" -newdepend "!app-text/tetex +DEPEND="!app-text/tetex !app-text/ptex !app-text/cstetex sys-apps/ed @@ -43,7 +43,7 @@ newdepend "!app-text/tetex >=media-libs/libpng-1.2.1 sys-libs/ncurses >=net-libs/libwww-5.3.2-r1" -newrdepend "!app-text/tetex +RDEPEND="!app-text/tetex !app-text/ptex !app-text/cstetex sys-apps/ed |