summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Markus With <olemarkus@gentoo.org>2011-03-18 15:59:25 +0000
committerOle Markus With <olemarkus@gentoo.org>2011-03-18 15:59:25 +0000
commit9c24ce4c4cae8da16a6355000bccd37ee4ebefa4 (patch)
tree288343d093b4db1bcdebafc932bb79b15bc074f2 /eclass/depend.php.eclass
parentremove cman from use.mask (diff)
downloadhistorical-9c24ce4c4cae8da16a6355000bccd37ee4ebefa4.tar.gz
historical-9c24ce4c4cae8da16a6355000bccd37ee4ebefa4.tar.bz2
historical-9c24ce4c4cae8da16a6355000bccd37ee4ebefa4.zip
Changed deps to virtual/php to dev-lang/php
Diffstat (limited to 'eclass/depend.php.eclass')
-rw-r--r--eclass/depend.php.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/depend.php.eclass b/eclass/depend.php.eclass
index e50d385137eb..bf0bfbce7438 100644
--- a/eclass/depend.php.eclass
+++ b/eclass/depend.php.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/depend.php.eclass,v 1.28 2010/10/12 19:34:49 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/depend.php.eclass,v 1.29 2011/03/18 15:59:25 olemarkus Exp $
# Author: Stuart Herbert <stuart@gentoo.org>
# Author: Luca Longinotti <chtekk@gentoo.org>
@@ -25,8 +25,8 @@ inherit eutils phpconfutils
# Set this after setting DEPEND/RDEPEND in your ebuild if the ebuild requires PHP5
# with cli SAPI.
need_php5_cli() {
- DEPEND="${DEPEND} =virtual/php-5*"
- RDEPEND="${RDEPEND} =virtual/php-5*"
+ DEPEND="${DEPEND} =dev-lang/php-5*"
+ RDEPEND="${RDEPEND} =dev-lang/php-5*"
PHP_VERSION="5"
}
@@ -76,8 +76,8 @@ uses_php5() {
# Set this after setting DEPEND/RDEPEND in your ebuild if the ebuild requires PHP
# (any version) with cli SAPI.
need_php_cli() {
- DEPEND="${DEPEND} virtual/php"
- RDEPEND="${RDEPEND} virtual/php"
+ DEPEND="${DEPEND} dev-lang/php"
+ RDEPEND="${RDEPEND} dev-lang/php"
}
# @FUNCTION: need_php_httpd