| 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.72 2007/03/16 22:47:29 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.78 2007/05/11 08:25:11 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
7 | |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
| … | |
… | |
| 69 | # BitKeeper dependency, compile-time only |
69 | # BitKeeper dependency, compile-time only |
| 70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
| 71 | |
71 | |
| 72 | # Define correct SRC_URIs |
72 | # Define correct SRC_URIs |
| 73 | SRC_URI="${SERVER_URI} |
73 | SRC_URI="${SERVER_URI} |
|
|
74 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 74 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
75 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 75 | mysql_version_is_at_least "5.1.12" \ |
76 | mysql_version_is_at_least "5.1.12" \ |
| 76 | && [[ -n "${PBXT_VERSION}" ]] \ |
77 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 77 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
78 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 78 | |
79 | |
| … | |
… | |
| 197 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
198 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 198 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
199 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 199 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
200 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 200 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
201 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 201 | |
202 | |
| 202 | if [[ -z "${DATADIR}" ]] ; then |
203 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 203 | DATADIR="" |
204 | MY_DATADIR="" |
| 204 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
205 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 205 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
206 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 206 | | sed -ne '/datadir/s|^--datadir=||p' \ |
207 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 207 | | tail -n1` |
208 | | tail -n1` |
| 208 | if [[ -z "${DATADIR}" ]] ; then |
209 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 209 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
210 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 210 | | sed -e 's/.*=\s*//'` |
211 | | sed -e 's/.*=\s*//'` |
| 211 | fi |
212 | fi |
| 212 | fi |
213 | fi |
| 213 | if [[ -z "${DATADIR}" ]] ; then |
214 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 214 | DATADIR="${MY_LOCALSTATEDIR}" |
215 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 215 | einfo "Using default DATADIR" |
216 | einfo "Using default MY_DATADIR" |
| 216 | fi |
217 | fi |
| 217 | elog "MySQL DATADIR is ${DATADIR}" |
218 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 218 | |
219 | |
| 219 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
220 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 220 | if [[ -e "${DATADIR}" ]] ; then |
221 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 221 | elog "Previous datadir found, it's YOUR job to change" |
222 | elog "Previous datadir found, it's YOUR job to change" |
| 222 | elog "ownership and take care of it" |
223 | elog "ownership and take care of it" |
| 223 | PREVIOUS_DATADIR="yes" |
224 | PREVIOUS_DATADIR="yes" |
| 224 | else |
225 | else |
| 225 | PREVIOUS_DATADIR="no" |
226 | PREVIOUS_DATADIR="no" |
| … | |
… | |
| 231 | MY_SOURCEDIR=${SERVER_URI##*/} |
232 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 232 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
233 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 233 | |
234 | |
| 234 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
235 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 235 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
236 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 236 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
237 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 237 | } |
238 | } |
| 238 | |
239 | |
| 239 | configure_minimal() { |
240 | configure_minimal() { |
| 240 | # These are things we exclude from a minimal build, please |
241 | # These are things we exclude from a minimal build, please |
| 241 | # note that the server actually does get built and installed, |
242 | # note that the server actually does get built and installed, |
| … | |
… | |
| 326 | myconf="${myconf} $(use_with ssl)" |
327 | myconf="${myconf} $(use_with ssl)" |
| 327 | else |
328 | else |
| 328 | myconf="${myconf} $(use_with ssl openssl)" |
329 | myconf="${myconf} $(use_with ssl openssl)" |
| 329 | fi |
330 | fi |
| 330 | |
331 | |
|
|
332 | if use berkdb ; then |
| 331 | # The following fix is due to a bug with bdb on SPARC's. See: |
333 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 332 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
334 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 333 | # It comes down to non-64-bit safety problems. |
335 | # It comes down to non-64-bit safety problems. |
| 334 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
336 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 335 | elog "Berkeley DB support was disabled due to incompatible arch" |
337 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
338 | myconf="${myconf} --without-berkeley-db" |
|
|
339 | else |
|
|
340 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
341 | fi |
|
|
342 | else |
| 336 | myconf="${myconf} --without-berkeley-db" |
343 | myconf="${myconf} --without-berkeley-db" |
| 337 | else |
|
|
| 338 | if use berkdb ; then |
|
|
| 339 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 340 | else |
|
|
| 341 | myconf="${myconf} --without-berkeley-db" |
|
|
| 342 | fi |
|
|
| 343 | fi |
344 | fi |
| 344 | |
345 | |
| 345 | if mysql_version_is_at_least "4.1.3" ; then |
346 | if mysql_version_is_at_least "4.1.3" ; then |
| 346 | myconf="${myconf} --with-geometry" |
347 | myconf="${myconf} --with-geometry" |
| 347 | myconf="${myconf} $(use_with cluster ndbcluster)" |
348 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 521 | |
522 | |
| 522 | local rebuilddirlist d |
523 | local rebuilddirlist d |
| 523 | |
524 | |
| 524 | if mysql_version_is_at_least "5.1.12" ; then |
525 | if mysql_version_is_at_least "5.1.12" ; then |
| 525 | rebuilddirlist="." |
526 | rebuilddirlist="." |
| 526 | # TODO: check this with a cmake expert |
527 | # TODO: check this with a cmake expert |
| 527 | use innodb \ |
528 | use innodb \ |
| 528 | && cmake \ |
529 | && cmake \ |
| 529 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
530 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 530 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
531 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
| 531 | "storage/innobase" |
532 | "storage/innobase" |
| … | |
… | |
| 644 | else |
645 | else |
| 645 | mysql_mycnf_version="4.0" |
646 | mysql_mycnf_version="4.0" |
| 646 | fi |
647 | fi |
| 647 | insinto "${MY_SYSCONFDIR}" |
648 | insinto "${MY_SYSCONFDIR}" |
| 648 | doins scripts/mysqlaccess.conf |
649 | doins scripts/mysqlaccess.conf |
| 649 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
650 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 650 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
651 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 651 | > "${TMPDIR}/my.cnf.ok" |
652 | > "${TMPDIR}/my.cnf.ok" |
| 652 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
653 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 653 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
654 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 654 | fi |
655 | fi |
| … | |
… | |
| 657 | # Minimal builds don't have the MySQL server |
658 | # Minimal builds don't have the MySQL server |
| 658 | if ! use minimal ; then |
659 | if ! use minimal ; then |
| 659 | # Empty directories ... |
660 | # Empty directories ... |
| 660 | diropts "-m0750" |
661 | diropts "-m0750" |
| 661 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
662 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 662 | dodir "${DATADIR}" |
663 | dodir "${MY_DATADIR}" |
| 663 | keepdir "${DATADIR}" |
664 | keepdir "${MY_DATADIR}" |
| 664 | chown -R mysql:mysql "${D}/${DATADIR}" |
665 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 665 | fi |
666 | fi |
| 666 | |
667 | |
| 667 | diropts "-m0755" |
668 | diropts "-m0755" |
| 668 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
669 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 669 | dodir "${folder}" |
670 | dodir "${folder}" |
| … | |
… | |
| 672 | done |
673 | done |
| 673 | fi |
674 | fi |
| 674 | |
675 | |
| 675 | # Docs |
676 | # Docs |
| 676 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
678 | doinfo ${S}/Docs/mysql.info |
| 677 | |
679 | |
| 678 | # Minimal builds don't have the MySQL server |
680 | # Minimal builds don't have the MySQL server |
| 679 | if ! use minimal ; then |
681 | if ! use minimal ; then |
| 680 | docinto "support-files" |
682 | docinto "support-files" |
| 681 | for script in \ |
683 | for script in \ |
| … | |
… | |
| 688 | |
690 | |
| 689 | docinto "scripts" |
691 | docinto "scripts" |
| 690 | for script in scripts/mysql* ; do |
692 | for script in scripts/mysql* ; do |
| 691 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
693 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 692 | done |
694 | done |
|
|
695 | |
| 693 | fi |
696 | fi |
| 694 | |
697 | |
| 695 | mysql_lib_symlinks "${D}" |
698 | mysql_lib_symlinks "${D}" |
| 696 | } |
699 | } |
| 697 | |
700 | |
| … | |
… | |
| 757 | |
760 | |
| 758 | mysql_pkg_config() { |
761 | mysql_pkg_config() { |
| 759 | # Make sure the vars are correctly initialized |
762 | # Make sure the vars are correctly initialized |
| 760 | mysql_init_vars |
763 | mysql_init_vars |
| 761 | |
764 | |
| 762 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
765 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 763 | |
766 | |
| 764 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
767 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 765 | die "Minimal builds do NOT include the MySQL server" |
768 | die "Minimal builds do NOT include the MySQL server" |
| 766 | fi |
769 | fi |
| 767 | |
770 | |
| 768 | local pwd1="a" |
771 | local pwd1="a" |
| 769 | local pwd2="b" |
772 | local pwd2="b" |
| 770 | local maxtry=5 |
773 | local maxtry=5 |
| 771 | |
774 | |
| 772 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
775 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 773 | ewarn "You have already a MySQL database in place." |
776 | ewarn "You have already a MySQL database in place." |
| 774 | ewarn "(${ROOT}/${DATADIR}/*)" |
777 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 775 | ewarn "Please rename or delete it if you wish to replace it." |
778 | ewarn "Please rename or delete it if you wish to replace it." |
| 776 | die "MySQL database already exists!" |
779 | die "MySQL database already exists!" |
| 777 | fi |
780 | fi |
| 778 | |
781 | |
| 779 | einfo "Creating the mysql database and setting proper" |
782 | einfo "Creating the mysql database and setting proper" |
| … | |
… | |
| 800 | help_tables="${TMPDIR}/fill_help_tables.sql" |
803 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 801 | |
804 | |
| 802 | pushd "${TMPDIR}" &>/dev/null |
805 | pushd "${TMPDIR}" &>/dev/null |
| 803 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
806 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
| 804 | popd &>/dev/null |
807 | popd &>/dev/null |
| 805 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
808 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 806 | || die "MySQL databases not installed" |
809 | || die "MySQL databases not installed" |
| 807 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
810 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2> /dev/null |
| 808 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
811 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2> /dev/null |
| 809 | |
812 | |
| 810 | if mysql_version_is_at_least "4.1.3" ; then |
813 | if mysql_version_is_at_least "4.1.3" ; then |
| 811 | options="--skip-ndbcluster" |
814 | options="--skip-ndbcluster" |
| 812 | |
815 | |
| 813 | # Filling timezones, see |
816 | # Filling timezones, see |
| … | |
… | |
| 824 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
827 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 825 | ${options} \ |
828 | ${options} \ |
| 826 | --user=mysql \ |
829 | --user=mysql \ |
| 827 | --skip-grant-tables \ |
830 | --skip-grant-tables \ |
| 828 | --basedir=${ROOT}/usr \ |
831 | --basedir=${ROOT}/usr \ |
| 829 | --datadir=${ROOT}/${DATADIR} \ |
832 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 830 | --skip-innodb \ |
833 | --skip-innodb \ |
| 831 | --skip-bdb \ |
834 | --skip-bdb \ |
| 832 | --skip-networking \ |
835 | --skip-networking \ |
| 833 | --max_allowed_packet=8M \ |
836 | --max_allowed_packet=8M \ |
| 834 | --net_buffer_length=16K \ |
837 | --net_buffer_length=16K \ |