| 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.161 2011/07/08 11:35:01 ssuominen 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> |
| … | |
… | |
| 771 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
771 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
| 772 | # check for conflicting use flags |
772 | # check for conflicting use flags |
| 773 | # create new user and group for mysql |
773 | # create new user and group for mysql |
| 774 | # warn about deprecated features |
774 | # warn about deprecated features |
| 775 | mysql_pkg_setup() { |
775 | mysql_pkg_setup() { |
| 776 | if hasq test ${FEATURES} ; then |
776 | if has test ${FEATURES} ; then |
| 777 | if ! use minimal ; then |
777 | if ! use minimal ; then |
| 778 | if [[ $UID -eq 0 ]]; then |
778 | if [[ $UID -eq 0 ]]; then |
| 779 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
779 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 780 | fi |
780 | fi |
| 781 | fi |
781 | fi |
| … | |
… | |
| 1169 | done |
1169 | done |
| 1170 | fi |
1170 | fi |
| 1171 | |
1171 | |
| 1172 | # Docs |
1172 | # Docs |
| 1173 | einfo "Installing docs" |
1173 | einfo "Installing docs" |
| 1174 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
1174 | for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do |
|
|
1175 | [[ -f "$i" ]] && dodoc "$i" |
|
|
1176 | done |
| 1175 | doinfo "${S}"/Docs/mysql.info |
1177 | doinfo "${S}"/Docs/mysql.info |
| 1176 | |
1178 | |
| 1177 | # Minimal builds don't have the MySQL server |
1179 | # Minimal builds don't have the MySQL server |
| 1178 | if ! use minimal ; then |
1180 | if ! use minimal ; then |
| 1179 | einfo "Including support files and sample configurations" |
1181 | einfo "Including support files and sample configurations" |