diff options
author | Francesco Riosa <vivo@gentoo.org> | 2006-11-23 14:02:50 +0000 |
---|---|---|
committer | Francesco Riosa <vivo@gentoo.org> | 2006-11-23 14:02:50 +0000 |
commit | 8830c7942e845194710d395764b3af69f84da82b (patch) | |
tree | a57c116cb1e7f39e12ce26c3c3a71c663d4e9aa4 /eclass/tetex.eclass | |
parent | Marking torque-2.1.6 ppc64 for bug 152104 (diff) | |
download | historical-8830c7942e845194710d395764b3af69f84da82b.tar.gz historical-8830c7942e845194710d395764b3af69f84da82b.tar.bz2 historical-8830c7942e845194710d395764b3af69f84da82b.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 } |