diff options
author | Fabian Groffen <grobian@gentoo.org> | 2011-09-25 12:43:28 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2011-09-25 12:43:28 +0000 |
commit | 7dca58acd8057e740fef71c468358c401d057b42 (patch) | |
tree | 7e9e7610b5178038e960a98560d60184845a159e /eclass/mysql-v2.eclass | |
parent | Drop *-macos keywords, libexplain is a too Linux-specific hell to port (1.16 ... (diff) | |
download | gentoo-2-7dca58acd8057e740fef71c468358c401d057b42.tar.gz gentoo-2-7dca58acd8057e740fef71c468358c401d057b42.tar.bz2 gentoo-2-7dca58acd8057e740fef71c468358c401d057b42.zip |
mysql: don't depend on mysql-init-script in Prefix
Diffstat (limited to 'eclass/mysql-v2.eclass')
-rw-r--r-- | eclass/mysql-v2.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass index c11e6eb86ae4..d50c9c21a4f5 100644 --- a/eclass/mysql-v2.eclass +++ b/eclass/mysql-v2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-v2.eclass,v 1.7 2011/08/22 04:46:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-v2.eclass,v 1.8 2011/09/25 12:43:28 grobian Exp $ # @ECLASS: mysql-v2.eclass # @MAINTAINER: @@ -251,8 +251,9 @@ for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do DEPEND="${DEPEND} !dev-db/${i}" done +# prefix: first need to implement something for #196294 RDEPEND="${DEPEND} - !minimal? ( dev-db/mysql-init-scripts ) + !minimal? ( !prefix? ( dev-db/mysql-init-scripts ) ) selinux? ( sec-policy/selinux-mysql ) " |