diff options
author | 2006-11-23 14:02:50 +0000 | |
---|---|---|
committer | 2006-11-23 14:02:50 +0000 | |
commit | 3650ecff9efd94c37fcd7e3612825ac21a1da7b0 (patch) | |
tree | 638356f5a3a7cac469dba2d9d6aa690847b41422 /eclass/tetex.eclass | |
parent | Marking torque-2.1.6 ppc64 for bug 152104 (diff) | |
download | gentoo-2-3650ecff9efd94c37fcd7e3612825ac21a1da7b0.tar.gz gentoo-2-3650ecff9efd94c37fcd7e3612825ac21a1da7b0.tar.bz2 gentoo-2-3650ecff9efd94c37fcd7e3612825ac21a1da7b0.zip |
virtual/mysql
Diffstat (limited to 'eclass/tetex.eclass')
-rw-r--r-- | eclass/tetex.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/tetex.eclass b/eclass/tetex.eclass index 9ae433fca23a..c03e6ec6fd77 100644 --- a/eclass/tetex.eclass +++ b/eclass/tetex.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/tetex.eclass,v 1.48 2006/11/14 17:34:06 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/tetex.eclass,v 1.49 2006/11/23 14:02:50 vivo Exp $ # # Author: Jaromir Malenko <malenko@email.cz> # Author: Mamoru KOMACHI <usata@gentoo.org> @@ -86,12 +86,12 @@ PROVIDE="virtual/tetex" tetex_pkg_setup() { # hundreds of bugs reporting "cannot find -lmysqlclient" :( - if ! has_version 'dev-db/mysql' && (libwww-config --libs | grep mysql >/dev/null 2>&1); then + if ! has_version 'virtual/mysql' && (libwww-config --libs | grep mysql >/dev/null 2>&1); then eerror eerror "Your libwww was compiled with MySQL but MySQL is missing from system." eerror "Please install MySQL or remerge libwww without mysql USE flag." eerror - die "libwww was compiled with mysql but mysql is not installed" + die "libwww was compiled with mysql but virtual/mysql is not installed" fi } |