| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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.91 2008/05/29 03:15:12 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.92 2008/05/29 05:17:16 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 7 | # - Luca Longinotti <chtekk@gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
| 8 | # - Robin H. Johnson <robbat2@gentoo.org> |
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
| … | |
… | |
| 711 | done |
711 | done |
| 712 | fi |
712 | fi |
| 713 | |
713 | |
| 714 | # Docs |
714 | # Docs |
| 715 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
715 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 716 | doinfo ${S}/Docs/mysql.info |
716 | doinfo "${S}"/Docs/mysql.info |
| 717 | |
717 | |
| 718 | # Minimal builds don't have the MySQL server |
718 | # Minimal builds don't have the MySQL server |
| 719 | if ! use minimal ; then |
719 | if ! use minimal ; then |
| 720 | docinto "support-files" |
720 | docinto "support-files" |
| 721 | for script in \ |
721 | for script in \ |
| 722 | support-files/my-*.cnf \ |
722 | "${S}"/support-files/my-*.cnf \ |
| 723 | support-files/magic \ |
723 | "${S}"/support-files/magic \ |
| 724 | support-files/ndb-config-2-node.ini |
724 | "${S}"/support-files/ndb-config-2-node.ini |
| 725 | do |
725 | do |
| 726 | dodoc "${script}" |
726 | dodoc "${script}" |
| 727 | done |
727 | done |
| 728 | |
728 | |
| 729 | docinto "scripts" |
729 | docinto "scripts" |
| 730 | for script in scripts/mysql* ; do |
730 | for script in "${S}"/scripts/mysql* ; do |
| 731 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
731 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 732 | done |
732 | done |
| 733 | |
733 | |
| 734 | fi |
734 | fi |
| 735 | |
735 | |