41 lines
1.3 KiB
Bash
41 lines
1.3 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
inherit multilib-build
|
|
|
|
DESCRIPTION="Virtual for MySQL database server"
|
|
HOMEPAGE=""
|
|
SRC_URI=""
|
|
|
|
LICENSE=""
|
|
SLOT="0/18"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
|
IUSE="embedded static static-libs"
|
|
|
|
DEPEND=""
|
|
PDEPEND="virtual/libmysqlclient[static-libs?,${MULTILIB_USEDEP}]"
|
|
RDEPEND="
|
|
embedded? (
|
|
|| (
|
|
=dev-db/mariadb-10.1*[client-libs(+),embedded,static=]
|
|
=dev-db/mariadb-10.0*[client-libs(+),embedded,static=]
|
|
=dev-db/mysql-${PV}*[client-libs(+),embedded,static=]
|
|
=dev-db/percona-server-${PV}*[client-libs(+),embedded,static=]
|
|
=dev-db/mariadb-galera-10.0*[client-libs(+),embedded,static=]
|
|
=dev-db/mysql-cluster-7.3*[client-libs(+),embedded,static=]
|
|
)
|
|
)
|
|
!embedded? (
|
|
|| (
|
|
=dev-db/mariadb-10.1*[-embedded,static=]
|
|
=dev-db/mariadb-10.0*[-embedded,static=]
|
|
=dev-db/mysql-${PV}*[-embedded,static=]
|
|
=dev-db/percona-server-${PV}*[-embedded,static=]
|
|
=dev-db/mariadb-galera-10.0*[-embedded,static=]
|
|
=dev-db/mysql-cluster-7.3*[-embedded,static=]
|
|
)
|
|
)
|
|
"
|