| 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.159 2011/04/21 12:15:19 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.163 2011/08/21 16:14:56 jmbsvicetto 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> |
| … | |
… | |
| 142 | done |
142 | done |
| 143 | |
143 | |
| 144 | RDEPEND="${DEPEND} |
144 | RDEPEND="${DEPEND} |
| 145 | !minimal? ( dev-db/mysql-init-scripts ) |
145 | !minimal? ( dev-db/mysql-init-scripts ) |
| 146 | selinux? ( sec-policy/selinux-mysql )" |
146 | selinux? ( sec-policy/selinux-mysql )" |
|
|
147 | |
|
|
148 | DEPEND="${DEPEND} |
|
|
149 | virtual/yacc" |
| 147 | |
150 | |
| 148 | if [ "${EAPI:-0}" = "2" ]; then |
151 | if [ "${EAPI:-0}" = "2" ]; then |
| 149 | DEPEND="${DEPEND} static? ( || ( sys-libs/ncurses[static-libs] <=sys-libs/ncurses-5.7-r3 ) )" |
152 | DEPEND="${DEPEND} static? ( || ( sys-libs/ncurses[static-libs] <=sys-libs/ncurses-5.7-r3 ) )" |
| 150 | fi |
153 | fi |
| 151 | |
154 | |
| … | |
… | |
| 771 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
774 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
| 772 | # check for conflicting use flags |
775 | # check for conflicting use flags |
| 773 | # create new user and group for mysql |
776 | # create new user and group for mysql |
| 774 | # warn about deprecated features |
777 | # warn about deprecated features |
| 775 | mysql_pkg_setup() { |
778 | mysql_pkg_setup() { |
| 776 | if hasq test ${FEATURES} ; then |
779 | if has test ${FEATURES} ; then |
| 777 | if ! use minimal ; then |
780 | if ! use minimal ; then |
| 778 | if [[ $UID -eq 0 ]]; then |
781 | if [[ $UID -eq 0 ]]; then |
| 779 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
782 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 780 | fi |
783 | fi |
| 781 | fi |
784 | fi |
| … | |
… | |
| 1169 | done |
1172 | done |
| 1170 | fi |
1173 | fi |
| 1171 | |
1174 | |
| 1172 | # Docs |
1175 | # Docs |
| 1173 | einfo "Installing docs" |
1176 | einfo "Installing docs" |
| 1174 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
1177 | for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do |
|
|
1178 | [[ -f "$i" ]] && dodoc "$i" |
|
|
1179 | done |
| 1175 | doinfo "${S}"/Docs/mysql.info |
1180 | doinfo "${S}"/Docs/mysql.info |
| 1176 | |
1181 | |
| 1177 | # Minimal builds don't have the MySQL server |
1182 | # Minimal builds don't have the MySQL server |
| 1178 | if ! use minimal ; then |
1183 | if ! use minimal ; then |
| 1179 | einfo "Including support files and sample configurations" |
1184 | einfo "Including support files and sample configurations" |