| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.141 2010/03/24 03:45:56 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.142 2010/03/24 20:37:54 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: mysql.eclass |
5 | # @ECLASS: mysql.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| … | |
… | |
| 177 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
177 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 178 | HOMEPAGE="http://www.mysql.com/" |
178 | HOMEPAGE="http://www.mysql.com/" |
| 179 | if [[ "${PN}" == "mariadb" ]]; then |
179 | if [[ "${PN}" == "mariadb" ]]; then |
| 180 | HOMEPAGE="http://askmonty.org/" |
180 | HOMEPAGE="http://askmonty.org/" |
| 181 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
181 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
182 | fi |
|
|
183 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
184 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
| 182 | fi |
185 | fi |
| 183 | LICENSE="GPL-2" |
186 | LICENSE="GPL-2" |
| 184 | SLOT="0" |
187 | SLOT="0" |
| 185 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
188 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 186 | |
189 | |