| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2011 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.147 2010/08/08 23:31:05 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.165 2011/08/29 01:28:10 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: mysql.eclass |
5 | # @ECLASS: mysql.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
| 8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
7 | # MySQL Team <mysql-bugs@gentoo.org> |
| 9 | # - Luca Longinotti <chtekk@gentoo.org> |
8 | # Luca Longinotti <chtekk@gentoo.org> |
| 10 | # - Robin H. Johnson <robbat2@gentoo.org> |
9 | # Robin H. Johnson <robbat2@gentoo.org> |
|
|
10 | # @AUTHOR: |
|
|
11 | # Francesco Riosa (Retired) <vivo@gentoo.org> |
| 11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
12 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
| 12 | # @DESCRIPTION: |
13 | # @DESCRIPTION: |
| 13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
14 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
| 14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
15 | # including the src_unpack, src_prepare, src_configure, src_compile, |
| 15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
16 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
| … | |
… | |
| 59 | # Upstream MySQL considers the first two parts of the version number to be the |
60 | # Upstream MySQL considers the first two parts of the version number to be the |
| 60 | # major version. Upgrades that change major version should always run |
61 | # major version. Upgrades that change major version should always run |
| 61 | # mysql_upgrade. |
62 | # mysql_upgrade. |
| 62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
63 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
| 63 | |
64 | |
|
|
65 | # Cluster is a special case... |
|
|
66 | if [[ "${PN}" == "mysql-cluster" ]]; then |
|
|
67 | case $PV in |
|
|
68 | 6.1*|7.0*|7.1*) MYSQL_PV_MAJOR=5.1 ;; |
|
|
69 | esac |
|
|
70 | fi |
|
|
71 | |
|
|
72 | |
| 64 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
73 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 65 | # @DESCRIPTION: |
74 | # @DESCRIPTION: |
| 66 | # MYSQL_VERSION_ID will be: |
75 | # MYSQL_VERSION_ID will be: |
| 67 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
76 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 68 | # This is an important part, because many of the choices the MySQL ebuild will do |
77 | # This is an important part, because many of the choices the MySQL ebuild will do |
| … | |
… | |
| 95 | MYSQL_COMMUNITY_FEATURES=1 |
104 | MYSQL_COMMUNITY_FEATURES=1 |
| 96 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
105 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
| 97 | MYSQL_COMMUNITY_FEATURES=1 |
106 | MYSQL_COMMUNITY_FEATURES=1 |
| 98 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
107 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
| 99 | MYSQL_COMMUNITY_FEATURES=1 |
108 | MYSQL_COMMUNITY_FEATURES=1 |
| 100 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
109 | elif [ "${PV#6}" != "${PV}" ] ; then |
|
|
110 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
111 | elif [ "${PV#7}" != "${PV}" ] ; then |
| 101 | MYSQL_COMMUNITY_FEATURES=1 |
112 | MYSQL_COMMUNITY_FEATURES=1 |
| 102 | else |
113 | else |
| 103 | MYSQL_COMMUNITY_FEATURES=0 |
114 | MYSQL_COMMUNITY_FEATURES=0 |
| 104 | fi |
115 | fi |
| 105 | |
116 | |
| … | |
… | |
| 124 | |
135 | |
| 125 | [[ "${PN}" == "mariadb" ]] \ |
136 | [[ "${PN}" == "mariadb" ]] \ |
| 126 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
137 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
| 127 | |
138 | |
| 128 | # Having different flavours at the same time is not a good idea |
139 | # Having different flavours at the same time is not a good idea |
| 129 | for i in "mysql" "mysql-community" "mariadb" ; do |
140 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
| 130 | [[ "${i}" == ${PN} ]] || |
141 | [[ "${i}" == ${PN} ]] || |
| 131 | DEPEND="${DEPEND} !dev-db/${i}" |
142 | DEPEND="${DEPEND} !dev-db/${i}" |
| 132 | done |
143 | done |
| 133 | |
144 | |
| 134 | RDEPEND="${DEPEND} |
145 | RDEPEND="${DEPEND} |
| 135 | !minimal? ( dev-db/mysql-init-scripts ) |
146 | !minimal? ( dev-db/mysql-init-scripts ) |
| 136 | selinux? ( sec-policy/selinux-mysql )" |
147 | selinux? ( sec-policy/selinux-mysql )" |
| 137 | |
148 | |
|
|
149 | DEPEND="${DEPEND} |
|
|
150 | virtual/yacc" |
|
|
151 | |
|
|
152 | if [ "${EAPI:-0}" = "2" ]; then |
|
|
153 | DEPEND="${DEPEND} static? ( || ( sys-libs/ncurses[static-libs] <=sys-libs/ncurses-5.7-r3 ) )" |
|
|
154 | fi |
|
|
155 | |
| 138 | # compile-time-only |
156 | # compile-time-only |
| 139 | mysql_version_is_at_least "5.1" \ |
157 | mysql_version_is_at_least "5.1" \ |
| 140 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
158 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 141 | |
159 | |
| 142 | # compile-time-only |
160 | # compile-time-only |
| 143 | mysql_version_is_at_least "5.1.12" \ |
161 | mysql_version_is_at_least "5.1.12" \ |
| 144 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
162 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
163 | |
|
|
164 | [[ "${PN}" == "mariadb" ]] \ |
|
|
165 | && mysql_version_is_at_least "5.2" \ |
|
|
166 | && DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" |
|
|
167 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
168 | # sphinx? ( app-misc/sphinx )" |
| 145 | |
169 | |
| 146 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
170 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 147 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
171 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 148 | |
172 | |
| 149 | # For other stuff to bring us in |
173 | # For other stuff to bring us in |
| … | |
… | |
| 154 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
178 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
| 155 | if [ "${PN}" == "mariadb" ]; then |
179 | if [ "${PN}" == "mariadb" ]; then |
| 156 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
180 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
| 157 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
181 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
| 158 | SERVER_URI=" |
182 | SERVER_URI=" |
|
|
183 | http://ftp.osuosl.org/pub/mariadb/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
| 159 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
184 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
| 160 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
185 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
| 161 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
186 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
187 | http://mirrors.fe.up.pt/pub/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
188 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
| 162 | " |
189 | " |
| 163 | # The community build is on the mirrors |
190 | # The community and cluster builds are on the mirrors |
| 164 | elif [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
191 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
| 165 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
192 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
193 | URI_DIR="MySQL-Cluster" |
|
|
194 | URI_FILE="mysql-cluster-gpl" |
|
|
195 | else |
|
|
196 | URI_DIR="MySQL" |
|
|
197 | URI_FILE="mysql" |
|
|
198 | fi |
|
|
199 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
200 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
201 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
202 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
203 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
| 166 | # The (old) enterprise source is on the primary site only |
204 | # The (old) enterprise source is on the primary site only |
| 167 | elif [ "${PN}" == "mysql" ]; then |
205 | elif [ "${PN}" == "mysql" ]; then |
| 168 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
206 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 169 | fi |
207 | fi |
| 170 | fi |
208 | fi |
| … | |
… | |
| 193 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
231 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 194 | |
232 | |
| 195 | mysql_version_is_at_least "4.1" \ |
233 | mysql_version_is_at_least "4.1" \ |
| 196 | && IUSE="${IUSE} latin1" |
234 | && IUSE="${IUSE} latin1" |
| 197 | |
235 | |
| 198 | mysql_version_is_at_least "4.1.3" \ |
236 | if mysql_version_is_at_least "4.1.3" ; then |
| 199 | && IUSE="${IUSE} cluster extraengine" |
237 | IUSE="${IUSE} extraengine" |
|
|
238 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
239 | IUSE="${IUSE} cluster" |
|
|
240 | fi |
|
|
241 | fi |
| 200 | |
242 | |
| 201 | mysql_version_is_at_least "5.0" \ |
243 | mysql_version_is_at_least "5.0" \ |
| 202 | || IUSE="${IUSE} raid" |
244 | || IUSE="${IUSE} raid" |
| 203 | |
245 | |
| 204 | mysql_version_is_at_least "5.0.18" \ |
246 | mysql_version_is_at_least "5.0.18" \ |
| … | |
… | |
| 210 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
252 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 211 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
253 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 212 | |
254 | |
| 213 | [[ "${PN}" == "mariadb" ]] \ |
255 | [[ "${PN}" == "mariadb" ]] \ |
| 214 | && IUSE="${IUSE} libevent" |
256 | && IUSE="${IUSE} libevent" |
|
|
257 | |
|
|
258 | [[ "${PN}" == "mariadb" ]] \ |
|
|
259 | && mysql_version_is_at_least "5.2" \ |
|
|
260 | && IUSE="${IUSE} oqgraph" |
|
|
261 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
262 | #&& IUSE="${IUSE} oqgraph sphinx" |
| 215 | |
263 | |
| 216 | # MariaDB has integrated PBXT |
264 | # MariaDB has integrated PBXT |
| 217 | # PBXT_VERSION means that we have a PBXT patch for this PV |
265 | # PBXT_VERSION means that we have a PBXT patch for this PV |
| 218 | # PBXT was only introduced after 5.1.12 |
266 | # PBXT was only introduced after 5.1.12 |
| 219 | pbxt_patch_available() { |
267 | pbxt_patch_available() { |
| … | |
… | |
| 273 | mysql_disable_test() { |
321 | mysql_disable_test() { |
| 274 | local rawtestname testname testsuite reason mysql_disable_file |
322 | local rawtestname testname testsuite reason mysql_disable_file |
| 275 | rawtestname="${1}" ; shift |
323 | rawtestname="${1}" ; shift |
| 276 | reason="${@}" |
324 | reason="${@}" |
| 277 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
325 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
| 278 | |
326 | |
| 279 | testsuite="${rawtestname/.*}" |
327 | testsuite="${rawtestname/.*}" |
| 280 | testname="${rawtestname/*.}" |
328 | testname="${rawtestname/*.}" |
| 281 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
329 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 282 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
330 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 283 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
331 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| … | |
… | |
| 425 | if use debug ; then |
473 | if use debug ; then |
| 426 | myconf="${myconf} --with-debug=full" |
474 | myconf="${myconf} --with-debug=full" |
| 427 | else |
475 | else |
| 428 | myconf="${myconf} --without-debug" |
476 | myconf="${myconf} --without-debug" |
| 429 | mysql_version_is_at_least "4.1.3" \ |
477 | mysql_version_is_at_least "4.1.3" \ |
| 430 | && use cluster \ |
478 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
| 431 | && myconf="${myconf} --without-ndb-debug" |
479 | && myconf="${myconf} --without-ndb-debug" |
| 432 | fi |
480 | fi |
| 433 | |
481 | |
| 434 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
482 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
| 435 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
483 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
| … | |
… | |
| 492 | myconf="${myconf} --without-berkeley-db" |
540 | myconf="${myconf} --without-berkeley-db" |
| 493 | fi |
541 | fi |
| 494 | |
542 | |
| 495 | if mysql_version_is_at_least "4.1.3" ; then |
543 | if mysql_version_is_at_least "4.1.3" ; then |
| 496 | myconf="${myconf} --with-geometry" |
544 | myconf="${myconf} --with-geometry" |
|
|
545 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 497 | myconf="${myconf} $(use_with cluster ndbcluster)" |
546 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
547 | fi |
| 498 | fi |
548 | fi |
| 499 | |
549 | |
| 500 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
550 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 501 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
551 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 502 | myconf="${myconf} --with-archive-storage-engine" |
552 | myconf="${myconf} --with-archive-storage-engine" |
| … | |
… | |
| 541 | myconf="${myconf} --with-readline" |
591 | myconf="${myconf} --with-readline" |
| 542 | myconf="${myconf} --with-zlib-dir=/usr/" |
592 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 543 | myconf="${myconf} --without-pstack" |
593 | myconf="${myconf} --without-pstack" |
| 544 | myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin" |
594 | myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin" |
| 545 | |
595 | |
|
|
596 | # This is an explict die here, because if we just forcibly disable it, then the |
|
|
597 | # user's data is not accessible. |
|
|
598 | use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently" |
| 546 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
599 | #use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 547 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
600 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 548 | myconf="${myconf} $(use_enable community community-features)" |
601 | myconf="${myconf} $(use_enable community community-features)" |
| 549 | if use community; then |
602 | if use community; then |
| 550 | myconf="${myconf} $(use_enable profiling)" |
603 | myconf="${myconf} $(use_enable profiling)" |
| 551 | else |
604 | else |
| … | |
… | |
| 564 | \) \ |
617 | \) \ |
| 565 | -print0 \ |
618 | -print0 \ |
| 566 | | xargs -0 sed -r -n \ |
619 | | xargs -0 sed -r -n \ |
| 567 | -e '/^MYSQL_STORAGE_ENGINE/{ |
620 | -e '/^MYSQL_STORAGE_ENGINE/{ |
| 568 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
621 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
| 569 | s~^([^ ]+).*~\1~gp; |
622 | s~^([^ ]+).*~\1~gp; |
| 570 | }' \ |
623 | }' \ |
| 571 | | tr -s '\n' ' ' |
624 | | tr -s '\n' ' ' |
| 572 | )" |
625 | )" |
| 573 | |
626 | |
| 574 | # 5.1 introduces a new way to manage storage engines (plugins) |
627 | # 5.1 introduces a new way to manage storage engines (plugins) |
| … | |
… | |
| 587 | fi |
640 | fi |
| 588 | # Now the extras |
641 | # Now the extras |
| 589 | if use extraengine ; then |
642 | if use extraengine ; then |
| 590 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
643 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 591 | # not added yet: ibmdb2i |
644 | # not added yet: ibmdb2i |
| 592 | # Not supporting as examples: example,daemon_example,ftexample |
645 | # Not supporting as examples: example,daemon_example,ftexample |
| 593 | plugins_sta="${plugins_sta} partition" |
646 | plugins_sta="${plugins_sta} partition" |
| 594 | plugins_dyn="${plugins_sta} federated" |
|
|
| 595 | |
647 | |
| 596 | if [[ "${PN}" != "mariadb" ]] ; then |
648 | if [[ "${PN}" != "mariadb" ]] ; then |
| 597 | elog "Before using the Federated storage engine, please be sure to read" |
649 | elog "Before using the Federated storage engine, please be sure to read" |
| 598 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
650 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
651 | plugins_dyn="${plugins_sta} federated" |
| 599 | else |
652 | else |
| 600 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
653 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
| 601 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
654 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
|
|
655 | plugins_dyn="${plugins_sta} federatedx" |
| 602 | fi |
656 | fi |
| 603 | else |
657 | else |
| 604 | plugins_dis="${plugins_dis} partition federated" |
658 | plugins_dis="${plugins_dis} partition federated" |
| 605 | fi |
659 | fi |
| 606 | |
660 | |
| … | |
… | |
| 613 | for i in innodb_plugin ; do |
667 | for i in innodb_plugin ; do |
| 614 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
668 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
| 615 | done |
669 | done |
| 616 | |
670 | |
| 617 | # like configuration=max-no-ndb |
671 | # like configuration=max-no-ndb |
| 618 | if use cluster ; then |
672 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
| 619 | plugins_sta="${plugins_sta} ndbcluster partition" |
673 | plugins_sta="${plugins_sta} ndbcluster partition" |
| 620 | plugins_dis="${plugins_dis//partition}" |
674 | plugins_dis="${plugins_dis//partition}" |
| 621 | myconf="${myconf} --with-ndb-binlog" |
675 | myconf="${myconf} --with-ndb-binlog" |
| 622 | else |
676 | else |
| 623 | plugins_dis="${plugins_dis} ndbcluster" |
677 | plugins_dis="${plugins_dis} ndbcluster" |
| 624 | fi |
678 | fi |
| 625 | |
679 | |
| 626 | if [[ "${PN}" == "mariadb" ]] ; then |
680 | if [[ "${PN}" == "mariadb" ]] ; then |
| 627 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
681 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
| 628 | # caught above. |
682 | # caught above. |
| 629 | plugins_sta="${plugins_sta} maria innobase" |
|
|
| 630 | myconf="${myconf} $(use_with libevent)" |
|
|
| 631 | # This is not optional, without it several upstream testcases fail. |
683 | # This is not optional, without it several upstream testcases fail. |
| 632 | # Also strongly recommended by upstream. |
684 | # Also strongly recommended by upstream. |
|
|
685 | if [[ "${PV}" < "5.2.0" ]] ; then |
| 633 | myconf="${myconf} --with-maria-tmp-tables" |
686 | myconf="${myconf} --with-maria-tmp-tables" |
|
|
687 | plugins_sta="${plugins_sta} maria" |
|
|
688 | else |
|
|
689 | myconf="${myconf} --with-aria-tmp-tables" |
|
|
690 | plugins_sta="${plugins_sta} aria" |
| 634 | fi |
691 | fi |
| 635 | |
692 | |
|
|
693 | [ -e "${S}"/storage/innobase ] || [ -e "${S}"/storage/xtradb ] || |
|
|
694 | die "The ${P} package doesn't provide innobase nor xtradb" |
|
|
695 | |
|
|
696 | for i in innobase xtradb ; do |
|
|
697 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
698 | done |
|
|
699 | |
|
|
700 | myconf="${myconf} $(use_with libevent)" |
|
|
701 | |
|
|
702 | if mysql_version_is_at_least "5.2" ; then |
|
|
703 | #This should include sphinx, but the 5.2.4 archive forgot the plug.in file |
|
|
704 | #for i in oqgraph sphinx ; do |
|
|
705 | for i in oqgraph ; do |
|
|
706 | use ${i} \ |
|
|
707 | && plugins_dyn="${plugins_dyn} ${i}" \ |
|
|
708 | || plugins_dis="${plugins_dis} ${i}" |
|
|
709 | done |
|
|
710 | fi |
|
|
711 | fi |
|
|
712 | |
| 636 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
713 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
| 637 | use pbxt \ |
714 | use pbxt \ |
| 638 | && plugins_dyn="${plugins_dyn} pbxt" \ |
715 | && plugins_dyn="${plugins_dyn} pbxt" \ |
| 639 | || plugins_dis="${plugins_dis} pbxt" |
716 | || plugins_dis="${plugins_dis} pbxt" |
| 640 | fi |
717 | fi |
| 641 | |
718 | |
| 642 | use static && \ |
719 | use static && \ |
| 643 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
720 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
| 644 | plugins_dyn="" |
721 | plugins_dyn="" |
| 645 | |
722 | |
| 646 | einfo "Available plugins: ${plugins_avail}" |
723 | einfo "Available plugins: ${plugins_avail}" |
| 647 | einfo "Dynamic plugins: ${plugins_dyn}" |
724 | einfo "Dynamic plugins: ${plugins_dyn}" |
| 648 | einfo "Static plugins: ${plugins_sta}" |
725 | einfo "Static plugins: ${plugins_sta}" |
| 649 | einfo "Disabled plugins: ${plugins_dis}" |
726 | einfo "Disabled plugins: ${plugins_dis}" |
| 650 | |
727 | |
| … | |
… | |
| 660 | mysql_init_vars |
737 | mysql_init_vars |
| 661 | |
738 | |
| 662 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
739 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 663 | |
740 | |
| 664 | einfo "Reconfiguring dir '${PWD}'" |
741 | einfo "Reconfiguring dir '${PWD}'" |
| 665 | AT_GNUCONF_UPDATE="yes" eautoreconf |
742 | eautoreconf |
| 666 | |
743 | |
| 667 | local myconf="" |
744 | local myconf="" |
| 668 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
745 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
| 669 | use debug && myconf="${myconf} --with-debug=full" |
746 | use debug && myconf="${myconf} --with-debug=full" |
| 670 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
747 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
| … | |
… | |
| 698 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
775 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
| 699 | # check for conflicting use flags |
776 | # check for conflicting use flags |
| 700 | # create new user and group for mysql |
777 | # create new user and group for mysql |
| 701 | # warn about deprecated features |
778 | # warn about deprecated features |
| 702 | mysql_pkg_setup() { |
779 | mysql_pkg_setup() { |
| 703 | if hasq test ${FEATURES} ; then |
780 | if has test ${FEATURES} ; then |
| 704 | if ! use minimal ; then |
781 | if ! use minimal ; then |
| 705 | if [[ $UID -eq 0 ]]; then |
782 | if [[ $UID -eq 0 ]]; then |
| 706 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
783 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 707 | fi |
784 | fi |
| 708 | fi |
785 | fi |
| 709 | fi |
786 | fi |
|
|
787 | |
|
|
788 | # bug 350844 |
|
|
789 | case "${EAPI:-0}" in |
|
|
790 | 0 | 1) |
|
|
791 | if use static && !built_with_use sys-libs/ncurses static-libs; then |
|
|
792 | die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" |
|
|
793 | fi |
|
|
794 | ;; |
|
|
795 | esac |
| 710 | |
796 | |
| 711 | # Check for USE flag problems in pkg_setup |
797 | # Check for USE flag problems in pkg_setup |
| 712 | if use static && use ssl ; then |
798 | if use static && use ssl ; then |
| 713 | M="MySQL does not support being built statically with SSL support enabled!" |
799 | M="MySQL does not support being built statically with SSL support enabled!" |
| 714 | eerror "${M}" |
800 | eerror "${M}" |
| 715 | die "${M}" |
801 | die "${M}" |
|
|
802 | fi |
|
|
803 | |
|
|
804 | if mysql_version_is_at_least "5.1.51" \ |
|
|
805 | && ! mysql_version_is_at_least "5.2" \ |
|
|
806 | && use debug ; then |
|
|
807 | # Also in package.use.mask |
|
|
808 | die "Bug #344885: Upstream has broken USE=debug for 5.1 series >=5.1.51" |
| 716 | fi |
809 | fi |
| 717 | |
810 | |
| 718 | if ! mysql_version_is_at_least "5.0" \ |
811 | if ! mysql_version_is_at_least "5.0" \ |
| 719 | && use raid \ |
812 | && use raid \ |
| 720 | && use static ; then |
813 | && use static ; then |
| … | |
… | |
| 728 | && use minimal ; then |
821 | && use minimal ; then |
| 729 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
822 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
| 730 | eerror "${M}" |
823 | eerror "${M}" |
| 731 | die "${M}" |
824 | die "${M}" |
| 732 | fi |
825 | fi |
| 733 | |
826 | |
| 734 | if mysql_version_is_at_least "5.1" \ |
827 | if mysql_version_is_at_least "5.1" \ |
| 735 | && xtradb_patch_available \ |
828 | && xtradb_patch_available \ |
| 736 | && use xtradb \ |
829 | && use xtradb \ |
| 737 | && use embedded ; then |
830 | && use embedded ; then |
| 738 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
831 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
| … | |
… | |
| 744 | # Upstream changes made us need a fairly new GCC4. |
837 | # Upstream changes made us need a fairly new GCC4. |
| 745 | # But only for 5.0.8[3-6]! |
838 | # But only for 5.0.8[3-6]! |
| 746 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
839 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
| 747 | GCC_VER=$(gcc-version) |
840 | GCC_VER=$(gcc-version) |
| 748 | case ${GCC_VER} in |
841 | case ${GCC_VER} in |
| 749 | 2*|3*|4.0|4.1|4.2) |
842 | 2*|3*|4.0|4.1|4.2) |
| 750 | eerror "Some releases of MySQL required a very new GCC, and then" |
843 | eerror "Some releases of MySQL required a very new GCC, and then" |
| 751 | eerror "later release relaxed that requirement again. Either pick a" |
844 | eerror "later release relaxed that requirement again. Either pick a" |
| 752 | eerror "MySQL >=5.0.87, or use a newer GCC." |
845 | eerror "MySQL >=5.0.87, or use a newer GCC." |
| 753 | die "Active GCC too old!" ;; |
846 | die "Active GCC too old!" ;; |
| 754 | esac |
847 | esac |
| … | |
… | |
| 808 | mysql_mv_patches |
901 | mysql_mv_patches |
| 809 | # And apply |
902 | # And apply |
| 810 | epatch |
903 | epatch |
| 811 | |
904 | |
| 812 | # last -fPIC fixup, per bug #305873 |
905 | # last -fPIC fixup, per bug #305873 |
| 813 | i="${S}"/storage/innodb_plugin/plug.in |
906 | i="${S}"/storage/innodb_plugin/plug.in |
| 814 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
907 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
| 815 | |
908 | |
| 816 | # Additional checks, remove bundled zlib |
909 | # Additional checks, remove bundled zlib (Cluster needs this, for static |
|
|
910 | # memory management in zlib, leave available for Cluster) |
|
|
911 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 817 | rm -f "${S}/zlib/"*.[ch] |
912 | rm -f "${S}/zlib/"*.[ch] |
| 818 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
913 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
914 | fi |
| 819 | rm -f "scripts/mysqlbug" |
915 | rm -f "scripts/mysqlbug" |
| 820 | |
916 | |
| 821 | # Make charsets install in the right place |
917 | # Make charsets install in the right place |
| 822 | find . -name 'Makefile.am' \ |
918 | find . -name 'Makefile.am' \ |
| 823 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
919 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| … | |
… | |
| 845 | # Or maybe we haven't |
941 | # Or maybe we haven't |
| 846 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
942 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
| 847 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
943 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
| 848 | popd >/dev/null |
944 | popd >/dev/null |
| 849 | fi |
945 | fi |
| 850 | |
946 | |
| 851 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
947 | if pbxt_patch_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
| 852 | einfo "Adding storage engine: PBXT" |
948 | einfo "Adding storage engine: PBXT" |
| 853 | pushd "${S}"/storage >/dev/null |
949 | pushd "${S}"/storage >/dev/null |
| 854 | i='pbxt' |
950 | i='pbxt' |
| 855 | [ -d "${i}" ] && rm -rf "${i}" |
951 | [ -d "${i}" ] && rm -rf "${i}" |
| 856 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
952 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
| … | |
… | |
| 871 | fi |
967 | fi |
| 872 | |
968 | |
| 873 | for d in ${rebuilddirlist} ; do |
969 | for d in ${rebuilddirlist} ; do |
| 874 | einfo "Reconfiguring dir '${d}'" |
970 | einfo "Reconfiguring dir '${d}'" |
| 875 | pushd "${d}" &>/dev/null |
971 | pushd "${d}" &>/dev/null |
| 876 | AT_GNUCONF_UPDATE="yes" eautoreconf |
972 | eautoreconf |
| 877 | popd &>/dev/null |
973 | popd &>/dev/null |
| 878 | done |
974 | done |
| 879 | |
975 | |
| 880 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
976 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 881 | && use berkdb ; then |
977 | && use berkdb ; then |
| … | |
… | |
| 937 | export CXXFLAGS |
1033 | export CXXFLAGS |
| 938 | |
1034 | |
| 939 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
1035 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
| 940 | append-flags -fno-strict-aliasing |
1036 | append-flags -fno-strict-aliasing |
| 941 | |
1037 | |
|
|
1038 | # bug #335185, #335995, with >= GCC4.3.3 on x86 only, omit-frame-pointer |
|
|
1039 | # causes a mis-compile. |
|
|
1040 | # Upstream bugs: |
|
|
1041 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38562 |
|
|
1042 | # http://bugs.mysql.com/bug.php?id=45205 |
|
|
1043 | use x86 && version_is_at_least "4.3.3" "$(gcc-fullversion)" && \ |
|
|
1044 | append-flags -fno-omit-frame-pointer && \ |
|
|
1045 | filter-flags -fomit-frame-pointer |
|
|
1046 | |
| 942 | econf \ |
1047 | econf \ |
| 943 | --libexecdir="/usr/sbin" \ |
1048 | --libexecdir="/usr/sbin" \ |
| 944 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1049 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 945 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1050 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 946 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
1051 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| … | |
… | |
| 949 | --with-low-memory \ |
1054 | --with-low-memory \ |
| 950 | --with-client-ldflags=-lstdc++ \ |
1055 | --with-client-ldflags=-lstdc++ \ |
| 951 | --enable-thread-safe-client \ |
1056 | --enable-thread-safe-client \ |
| 952 | --with-comment="Gentoo Linux ${PF}" \ |
1057 | --with-comment="Gentoo Linux ${PF}" \ |
| 953 | --without-docs \ |
1058 | --without-docs \ |
|
|
1059 | --with-LIBDIR="$(get_libdir)" \ |
| 954 | ${myconf} || die "econf failed" |
1060 | ${myconf} || die "econf failed" |
| 955 | |
1061 | |
| 956 | # TODO: Move this before autoreconf !!! |
1062 | # TODO: Move this before autoreconf !!! |
| 957 | find . -type f -name Makefile -print0 \ |
1063 | find . -type f -name Makefile -print0 \ |
| 958 | | xargs -0 -n100 sed -i \ |
1064 | | xargs -0 -n100 sed -i \ |
| … | |
… | |
| 1027 | if use !test ; then |
1133 | if use !test ; then |
| 1028 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
1134 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 1029 | fi |
1135 | fi |
| 1030 | |
1136 | |
| 1031 | # Configuration stuff |
1137 | # Configuration stuff |
| 1032 | if mysql_version_is_at_least "5.1" ; then |
1138 | case ${MYSQL_PV_MAJOR} in |
| 1033 | mysql_mycnf_version="5.1" |
|
|
| 1034 | elif mysql_version_is_at_least "4.1" ; then |
|
|
| 1035 | mysql_mycnf_version="4.1" |
|
|
| 1036 | else |
|
|
| 1037 | mysql_mycnf_version="4.0" |
1139 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
| 1038 | fi |
1140 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
| 1039 | einfo "Building default my.cnf" |
1141 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1142 | esac |
|
|
1143 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
| 1040 | insinto "${MY_SYSCONFDIR}" |
1144 | insinto "${MY_SYSCONFDIR}" |
| 1041 | doins scripts/mysqlaccess.conf |
1145 | doins scripts/mysqlaccess.conf |
|
|
1146 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
| 1042 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
1147 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 1043 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1148 | "${FILESDIR}/${mycnf_src}" \ |
| 1044 | > "${TMPDIR}/my.cnf.ok" |
1149 | > "${TMPDIR}/my.cnf.ok" |
| 1045 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
1150 | if use latin1 ; then |
| 1046 | sed -i \ |
1151 | sed -i \ |
| 1047 | -e "/character-set/s|utf8|latin1|g" \ |
1152 | -e "/character-set/s|utf8|latin1|g" \ |
| 1048 | "${TMPDIR}/my.cnf.ok" |
1153 | "${TMPDIR}/my.cnf.ok" |
| 1049 | fi |
1154 | fi |
| 1050 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1155 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| … | |
… | |
| 1068 | done |
1173 | done |
| 1069 | fi |
1174 | fi |
| 1070 | |
1175 | |
| 1071 | # Docs |
1176 | # Docs |
| 1072 | einfo "Installing docs" |
1177 | einfo "Installing docs" |
| 1073 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
1178 | for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do |
|
|
1179 | [[ -f "$i" ]] && dodoc "$i" |
|
|
1180 | done |
| 1074 | doinfo "${S}"/Docs/mysql.info |
1181 | doinfo "${S}"/Docs/mysql.info |
| 1075 | |
1182 | |
| 1076 | # Minimal builds don't have the MySQL server |
1183 | # Minimal builds don't have the MySQL server |
| 1077 | if ! use minimal ; then |
1184 | if ! use minimal ; then |
| 1078 | einfo "Including support files and sample configurations" |
1185 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 1144 | |
1251 | |
| 1145 | einfo |
1252 | einfo |
| 1146 | elog "You might want to run:" |
1253 | elog "You might want to run:" |
| 1147 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1254 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 1148 | elog "if this is a new install." |
1255 | elog "if this is a new install." |
|
|
1256 | einfo |
|
|
1257 | |
|
|
1258 | einfo |
|
|
1259 | elog "If you are upgrading major versions, you should run the" |
|
|
1260 | elog "mysql_upgrade tool." |
| 1149 | einfo |
1261 | einfo |
| 1150 | fi |
1262 | fi |
| 1151 | |
1263 | |
| 1152 | if pbxt_available && use pbxt ; then |
1264 | if pbxt_available && use pbxt ; then |
| 1153 | # TODO: explain it better |
1265 | # TODO: explain it better |
| … | |
… | |
| 1208 | fi |
1320 | fi |
| 1209 | fi |
1321 | fi |
| 1210 | |
1322 | |
| 1211 | local pwd1="a" |
1323 | local pwd1="a" |
| 1212 | local pwd2="b" |
1324 | local pwd2="b" |
| 1213 | local MYSQL_ROOT_PASSWORD='' |
|
|
| 1214 | local maxtry=15 |
1325 | local maxtry=15 |
| 1215 | |
1326 | |
| 1216 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then |
1327 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then |
| 1217 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")" |
1328 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")" |
| 1218 | fi |
1329 | fi |
| … | |
… | |
| 1228 | # localhost. Also causes weird failures. |
1339 | # localhost. Also causes weird failures. |
| 1229 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
1340 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 1230 | |
1341 | |
| 1231 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
1342 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
| 1232 | |
1343 | |
| 1233 | einfo "Please provide a password for the mysql 'root' user now," |
1344 | einfo "Please provide a password for the mysql 'root' user now, in the" |
| 1234 | einfo "or in the MYSQL_ROOT_PASSWORD env var." |
1345 | einfo "MYSQL_ROOT_PASSWORD env var or through the /root/.my.cnf file." |
| 1235 | ewarn "Avoid [\"'\\_%] characters in the password" |
1346 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 1236 | read -rsp " >" pwd1 ; echo |
1347 | read -rsp " >" pwd1 ; echo |
| 1237 | |
1348 | |
| 1238 | einfo "Retype the password" |
1349 | einfo "Retype the password" |
| 1239 | read -rsp " >" pwd2 ; echo |
1350 | read -rsp " >" pwd2 ; echo |
| … | |
… | |
| 1269 | # Figure out which options we need to disable to do the setup |
1380 | # Figure out which options we need to disable to do the setup |
| 1270 | helpfile="${TMPDIR}/mysqld-help" |
1381 | helpfile="${TMPDIR}/mysqld-help" |
| 1271 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
1382 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
| 1272 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
1383 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
| 1273 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
1384 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1385 | ndbcluster \ |
| 1274 | ; do |
1386 | ; do |
| 1275 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
1387 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
| 1276 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
1388 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
| 1277 | done |
1389 | done |
| 1278 | # But some options changed names |
1390 | # But some options changed names |
| … | |
… | |
| 1286 | |
1398 | |
| 1287 | if [[ -r "${help_tables}" ]] ; then |
1399 | if [[ -r "${help_tables}" ]] ; then |
| 1288 | cat "${help_tables}" >> "${sqltmp}" |
1400 | cat "${help_tables}" >> "${sqltmp}" |
| 1289 | fi |
1401 | fi |
| 1290 | fi |
1402 | fi |
| 1291 | |
1403 | |
| 1292 | einfo "Creating the mysql database and setting proper" |
1404 | einfo "Creating the mysql database and setting proper" |
| 1293 | einfo "permissions on it ..." |
1405 | einfo "permissions on it ..." |
| 1294 | |
1406 | |
| 1295 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1407 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 1296 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1408 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |