| 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.135 2010/03/03 23:57:13 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.148 2010/08/09 19:29:49 robbat2 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> |
| … | |
… | |
| 51 | ;; |
51 | ;; |
| 52 | *) |
52 | *) |
| 53 | die "Unsupported EAPI: ${EAPI}" ;; |
53 | die "Unsupported EAPI: ${EAPI}" ;; |
| 54 | esac |
54 | esac |
| 55 | |
55 | |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # 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 | # mysql_upgrade. |
|
|
62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
|
|
63 | |
| 56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
64 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 57 | # @DESCRIPTION: |
65 | # @DESCRIPTION: |
| 58 | # MYSQL_VERSION_ID will be: |
66 | # MYSQL_VERSION_ID will be: |
| 59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
67 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 60 | # This is an important part, because many of the choices the MySQL ebuild will do |
68 | # This is an important part, because many of the choices the MySQL ebuild will do |
| … | |
… | |
| 77 | # @DESCRIPTION: |
85 | # @DESCRIPTION: |
| 78 | # Specifiy if community features are available. Possible values are 1 (yes) |
86 | # Specifiy if community features are available. Possible values are 1 (yes) |
| 79 | # and 0 (no). |
87 | # and 0 (no). |
| 80 | # Community features are available in mysql-community |
88 | # Community features are available in mysql-community |
| 81 | # AND in the re-merged mysql-5.0.82 and newer |
89 | # AND in the re-merged mysql-5.0.82 and newer |
| 82 | if [ "${PN}" == "mysql-community" ]; then |
90 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
| 83 | MYSQL_COMMUNITY_FEATURES=1 |
91 | MYSQL_COMMUNITY_FEATURES=1 |
| 84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
92 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
| 85 | MYSQL_COMMUNITY_FEATURES=1 |
93 | MYSQL_COMMUNITY_FEATURES=1 |
| 86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
94 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
| 87 | MYSQL_COMMUNITY_FEATURES=1 |
95 | MYSQL_COMMUNITY_FEATURES=1 |
| … | |
… | |
| 112 | >=sys-apps/sed-4 |
120 | >=sys-apps/sed-4 |
| 113 | >=sys-apps/texinfo-4.7-r1 |
121 | >=sys-apps/texinfo-4.7-r1 |
| 114 | >=sys-libs/readline-4.1 |
122 | >=sys-libs/readline-4.1 |
| 115 | >=sys-libs/zlib-1.2.3" |
123 | >=sys-libs/zlib-1.2.3" |
| 116 | |
124 | |
|
|
125 | [[ "${PN}" == "mariadb" ]] \ |
|
|
126 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
127 | |
| 117 | # Having different flavours at the same time is not a good idea |
128 | # Having different flavours at the same time is not a good idea |
| 118 | for i in "" "-community" ; do |
129 | for i in "mysql" "mysql-community" "mariadb" ; do |
| 119 | [[ "${i}" == ${PN#mysql} ]] || |
130 | [[ "${i}" == ${PN} ]] || |
| 120 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
131 | DEPEND="${DEPEND} !dev-db/${i}" |
| 121 | done |
132 | done |
| 122 | |
133 | |
| 123 | RDEPEND="${DEPEND} |
134 | RDEPEND="${DEPEND} |
| 124 | !minimal? ( dev-db/mysql-init-scripts ) |
135 | !minimal? ( dev-db/mysql-init-scripts ) |
| 125 | selinux? ( sec-policy/selinux-mysql )" |
136 | selinux? ( sec-policy/selinux-mysql )" |
| … | |
… | |
| 134 | |
145 | |
| 135 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
146 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 136 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
147 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 137 | |
148 | |
| 138 | # For other stuff to bring us in |
149 | # For other stuff to bring us in |
| 139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
150 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
| 140 | |
151 | |
| 141 | # Work out the default SERVER_URI correctly |
152 | # Work out the default SERVER_URI correctly |
| 142 | if [ -z "${SERVER_URI}" ]; then |
153 | if [ -z "${SERVER_URI}" ]; then |
| 143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
154 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
155 | if [ "${PN}" == "mariadb" ]; then |
|
|
156 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
157 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
|
|
158 | SERVER_URI=" |
|
|
159 | 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 |
|
|
161 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
162 | " |
| 144 | # The community build is on the mirrors |
163 | # The community build is on the mirrors |
| 145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
164 | elif [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
165 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
166 | URI_DIR="MySQL-Cluster" |
|
|
167 | URI_FILE="mysql-cluster-gpl" |
|
|
168 | else |
|
|
169 | URI_DIR="MySQL" |
|
|
170 | URI_FILE="mysql" |
|
|
171 | fi |
|
|
172 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
173 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
174 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
175 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
176 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
| 147 | # The (old) enterprise source is on the primary site only |
177 | # The (old) enterprise source is on the primary site only |
| 148 | elif [ "${PN}" == "mysql" ]; then |
178 | elif [ "${PN}" == "mysql" ]; then |
| 149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
179 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 150 | fi |
180 | fi |
| 151 | fi |
181 | fi |
| … | |
… | |
| 160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
190 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
191 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 162 | |
192 | |
| 163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
193 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 164 | HOMEPAGE="http://www.mysql.com/" |
194 | HOMEPAGE="http://www.mysql.com/" |
|
|
195 | if [[ "${PN}" == "mariadb" ]]; then |
|
|
196 | HOMEPAGE="http://askmonty.org/" |
|
|
197 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
198 | fi |
|
|
199 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
200 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
|
|
201 | fi |
| 165 | LICENSE="GPL-2" |
202 | LICENSE="GPL-2" |
| 166 | SLOT="0" |
203 | SLOT="0" |
| 167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
204 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 168 | |
205 | |
| 169 | mysql_version_is_at_least "4.1" \ |
206 | mysql_version_is_at_least "4.1" \ |
| … | |
… | |
| 182 | || IUSE="${IUSE} berkdb" |
219 | || IUSE="${IUSE} berkdb" |
| 183 | |
220 | |
| 184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
221 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
222 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 186 | |
223 | |
| 187 | # PBXT engine |
224 | [[ "${PN}" == "mariadb" ]] \ |
|
|
225 | && IUSE="${IUSE} libevent" |
|
|
226 | |
|
|
227 | # MariaDB has integrated PBXT |
|
|
228 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
229 | # PBXT was only introduced after 5.1.12 |
|
|
230 | pbxt_patch_available() { |
|
|
231 | [[ "${PN}" != "mariadb" ]] \ |
| 188 | mysql_version_is_at_least "5.1.12" \ |
232 | && mysql_version_is_at_least "5.1.12" \ |
| 189 | && [[ -n "${PBXT_VERSION}" ]] \ |
233 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
234 | return $? |
|
|
235 | } |
|
|
236 | |
|
|
237 | pbxt_available() { |
|
|
238 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
239 | return $? |
|
|
240 | } |
|
|
241 | |
|
|
242 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
243 | # MariaDB has integrated XtraDB |
|
|
244 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
245 | # XTRADB was only introduced after 5.1.26 |
|
|
246 | xtradb_patch_available() { |
|
|
247 | [[ "${PN}" != "mariadb" ]] \ |
|
|
248 | && mysql_version_is_at_least "5.1.26" \ |
|
|
249 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
250 | return $? |
|
|
251 | } |
|
|
252 | |
|
|
253 | |
|
|
254 | pbxt_patch_available \ |
| 190 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
255 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
| 191 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
256 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
| 192 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
257 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
258 | |
|
|
259 | # PBXT_NEWSTYLE means pbxt is in storage/ and gets enabled as other plugins |
|
|
260 | # vs. built outside the dir |
|
|
261 | pbxt_available \ |
| 193 | && IUSE="${IUSE} pbxt" |
262 | && IUSE="${IUSE} pbxt" \ |
| 194 | |
|
|
| 195 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
| 196 | mysql_version_is_at_least "5.1.26" \ |
263 | && mysql_version_is_at_least "5.1.40" \ |
| 197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
264 | && PBXT_NEWSTYLE=1 |
|
|
265 | |
|
|
266 | xtradb_patch_available \ |
| 198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
267 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
| 199 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
268 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
| 200 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
269 | && XTRADB_SRC_B1="http://www.percona.com/" \ |
|
|
270 | && XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \ |
|
|
271 | && XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \ |
| 201 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
272 | && XTRADB_SRC_URI2="${XTRADB_SRC_B2}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
273 | && XTRADB_SRC_URI3="${XTRADB_SRC_B1}/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
| 202 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
274 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} ${XTRADB_SRC_URI3} )" \ |
| 203 | && IUSE="${IUSE} xtradb" |
275 | && IUSE="${IUSE} xtradb" |
| 204 | |
276 | |
| 205 | # |
277 | # |
| 206 | # HELPER FUNCTIONS: |
278 | # HELPER FUNCTIONS: |
| 207 | # |
279 | # |
| … | |
… | |
| 304 | MY_DATADIR="${new_MY_DATADIR}" |
376 | MY_DATADIR="${new_MY_DATADIR}" |
| 305 | fi |
377 | fi |
| 306 | fi |
378 | fi |
| 307 | fi |
379 | fi |
| 308 | |
380 | |
|
|
381 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
| 309 | MY_SOURCEDIR=${SERVER_URI##*/} |
382 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 310 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
383 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
384 | fi |
| 311 | |
385 | |
| 312 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
386 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 313 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
387 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 314 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
388 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 315 | } |
389 | } |
| … | |
… | |
| 396 | myconf="${myconf} $(use_with perl bench)" |
470 | myconf="${myconf} $(use_with perl bench)" |
| 397 | myconf="${myconf} --enable-assembler" |
471 | myconf="${myconf} --enable-assembler" |
| 398 | myconf="${myconf} --with-extra-tools" |
472 | myconf="${myconf} --with-extra-tools" |
| 399 | myconf="${myconf} --with-innodb" |
473 | myconf="${myconf} --with-innodb" |
| 400 | myconf="${myconf} --without-readline" |
474 | myconf="${myconf} --without-readline" |
|
|
475 | myconf="${myconf} $(use_with ssl openssl)" |
| 401 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
476 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 402 | |
477 | |
| 403 | # --with-vio is not needed anymore, it's on by default and |
478 | # --with-vio is not needed anymore, it's on by default and |
| 404 | # has been removed from configure |
479 | # has been removed from configure |
|
|
480 | # Apply to 4.x and 5.0.[0-3] |
| 405 | if use ssl ; then |
481 | if use ssl ; then |
| 406 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
482 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 407 | fi |
|
|
| 408 | |
|
|
| 409 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
| 410 | myconf="${myconf} $(use_with ssl /usr)" |
|
|
| 411 | else |
|
|
| 412 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
| 413 | fi |
483 | fi |
| 414 | |
484 | |
| 415 | if mysql_version_is_at_least "5.0.60" ; then |
485 | if mysql_version_is_at_least "5.0.60" ; then |
| 416 | if use berkdb ; then |
486 | if use berkdb ; then |
| 417 | elog "Berkeley DB support was disabled due to build failures" |
487 | elog "Berkeley DB support was disabled due to build failures" |
| … | |
… | |
| 474 | |
544 | |
| 475 | configure_51() { |
545 | configure_51() { |
| 476 | # TODO: !!!! readd --without-readline |
546 | # TODO: !!!! readd --without-readline |
| 477 | # the failure depend upon config/ac-macros/readline.m4 checking into |
547 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 478 | # readline.h instead of history.h |
548 | # readline.h instead of history.h |
| 479 | myconf="${myconf} $(use_with ssl)" |
549 | myconf="${myconf} $(use_with ssl ssl /usr)" |
| 480 | myconf="${myconf} --enable-assembler" |
550 | myconf="${myconf} --enable-assembler" |
| 481 | myconf="${myconf} --with-geometry" |
551 | myconf="${myconf} --with-geometry" |
| 482 | myconf="${myconf} --with-readline" |
552 | myconf="${myconf} --with-readline" |
| 483 | myconf="${myconf} --with-zlib-dir=/usr/" |
553 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 484 | myconf="${myconf} --without-pstack" |
554 | myconf="${myconf} --without-pstack" |
|
|
555 | myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin" |
|
|
556 | |
| 485 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
557 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
558 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
559 | myconf="${myconf} $(use_enable community community-features)" |
|
|
560 | if use community; then |
|
|
561 | myconf="${myconf} $(use_enable profiling)" |
|
|
562 | else |
|
|
563 | myconf="${myconf} --disable-profiling" |
|
|
564 | fi |
|
|
565 | fi |
|
|
566 | |
|
|
567 | # Scan for all available plugins |
|
|
568 | local plugins_avail="$( |
|
|
569 | LANG=C \ |
|
|
570 | find "${S}" \ |
|
|
571 | \( \ |
|
|
572 | -name 'plug.in' \ |
|
|
573 | -o -iname 'configure.in' \ |
|
|
574 | -o -iname 'configure.ac' \ |
|
|
575 | \) \ |
|
|
576 | -print0 \ |
|
|
577 | | xargs -0 sed -r -n \ |
|
|
578 | -e '/^MYSQL_STORAGE_ENGINE/{ |
|
|
579 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
|
|
580 | s~^([^ ]+).*~\1~gp; |
|
|
581 | }' \ |
|
|
582 | | tr -s '\n' ' ' |
|
|
583 | )" |
| 486 | |
584 | |
| 487 | # 5.1 introduces a new way to manage storage engines (plugins) |
585 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 488 | # like configuration=none |
586 | # like configuration=none |
|
|
587 | # This base set are required, and will always be statically built. |
| 489 | local plugins="csv,myisam,myisammrg,heap" |
588 | local plugins_sta="csv myisam myisammrg heap" |
|
|
589 | local plugins_dyn="" |
|
|
590 | local plugins_dis="example ibmdb2i" |
|
|
591 | |
|
|
592 | # These aren't actually required by the base set, but are really useful: |
|
|
593 | plugins_sta="${plugins_sta} archive blackhole" |
|
|
594 | |
|
|
595 | # default in 5.5.4 |
|
|
596 | if mysql_version_is_at_least "5.5.4" ; then |
|
|
597 | plugins_sta="${plugins_sta} partition" |
|
|
598 | fi |
|
|
599 | # Now the extras |
| 490 | if use extraengine ; then |
600 | if use extraengine ; then |
| 491 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
601 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 492 | # not added yet: ibmdb2i |
602 | # not added yet: ibmdb2i |
| 493 | # Not supporting as examples: example,daemon_example,ftexample |
603 | # Not supporting as examples: example,daemon_example,ftexample |
| 494 | plugins="${plugins},archive,blackhole,federated,partition" |
604 | plugins_sta="${plugins_sta} partition" |
|
|
605 | plugins_dyn="${plugins_sta} federated" |
| 495 | |
606 | |
|
|
607 | if [[ "${PN}" != "mariadb" ]] ; then |
| 496 | elog "Before using the Federated storage engine, please be sure to read" |
608 | elog "Before using the Federated storage engine, please be sure to read" |
| 497 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
609 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
610 | else |
|
|
611 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
612 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
|
|
613 | fi |
|
|
614 | else |
|
|
615 | plugins_dis="${plugins_dis} partition federated" |
| 498 | fi |
616 | fi |
| 499 | |
617 | |
| 500 | # Upstream specifically requests that InnoDB always be built: |
618 | # Upstream specifically requests that InnoDB always be built: |
| 501 | # - innobase, innodb_plugin |
619 | # - innobase, innodb_plugin |
| 502 | # Build falcon if available for 6.x series. |
620 | # Build falcon if available for 6.x series. |
| 503 | for i in innobase innodb_plugin falcon ; do |
621 | for i in innobase falcon ; do |
| 504 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
622 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
623 | done |
|
|
624 | for i in innodb_plugin ; do |
|
|
625 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
| 505 | done |
626 | done |
| 506 | |
627 | |
| 507 | # like configuration=max-no-ndb |
628 | # like configuration=max-no-ndb |
| 508 | if use cluster ; then |
629 | if use cluster ; then |
| 509 | plugins="${plugins},ndbcluster" |
630 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
631 | plugins_dis="${plugins_dis//partition}" |
| 510 | myconf="${myconf} --with-ndb-binlog" |
632 | myconf="${myconf} --with-ndb-binlog" |
|
|
633 | else |
|
|
634 | plugins_dis="${plugins_dis} ndbcluster" |
| 511 | fi |
635 | fi |
| 512 | |
636 | |
|
|
637 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
638 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
639 | # caught above. |
|
|
640 | plugins_sta="${plugins_sta} maria innobase" |
|
|
641 | myconf="${myconf} $(use_with libevent)" |
|
|
642 | # This is not optional, without it several upstream testcases fail. |
|
|
643 | # Also strongly recommended by upstream. |
|
|
644 | myconf="${myconf} --with-maria-tmp-tables" |
|
|
645 | fi |
|
|
646 | |
|
|
647 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
|
|
648 | use pbxt \ |
|
|
649 | && plugins_dyn="${plugins_dyn} pbxt" \ |
|
|
650 | || plugins_dis="${plugins_dis} pbxt" |
|
|
651 | fi |
|
|
652 | |
|
|
653 | use static && \ |
|
|
654 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
|
|
655 | plugins_dyn="" |
|
|
656 | |
|
|
657 | einfo "Available plugins: ${plugins_avail}" |
|
|
658 | einfo "Dynamic plugins: ${plugins_dyn}" |
|
|
659 | einfo "Static plugins: ${plugins_sta}" |
|
|
660 | einfo "Disabled plugins: ${plugins_dis}" |
|
|
661 | |
|
|
662 | # These are the static plugins |
| 513 | myconf="${myconf} --with-plugins=${plugins}" |
663 | myconf="${myconf} --with-plugins=${plugins_sta// /,}" |
| 514 | } |
664 | # And the disabled ones |
| 515 | |
665 | for i in ${plugins_dis} ; do |
| 516 | xtradb_applicable() { |
666 | myconf="${myconf} --without-plugin-${i}" |
| 517 | mysql_version_is_at_least "5.1.26" \ |
667 | done |
| 518 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
| 519 | && use xtradb |
|
|
| 520 | return $? |
|
|
| 521 | } |
|
|
| 522 | |
|
|
| 523 | pbxt_applicable() { |
|
|
| 524 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 525 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 526 | && use pbxt |
|
|
| 527 | return $? |
|
|
| 528 | } |
668 | } |
| 529 | |
669 | |
| 530 | pbxt_src_configure() { |
670 | pbxt_src_configure() { |
| 531 | mysql_init_vars |
671 | mysql_init_vars |
| 532 | |
672 | |
| … | |
… | |
| 534 | |
674 | |
| 535 | einfo "Reconfiguring dir '${PWD}'" |
675 | einfo "Reconfiguring dir '${PWD}'" |
| 536 | AT_GNUCONF_UPDATE="yes" eautoreconf |
676 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 537 | |
677 | |
| 538 | local myconf="" |
678 | local myconf="" |
| 539 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
679 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
| 540 | use debug && myconf="${myconf} --with-debug=full" |
680 | use debug && myconf="${myconf} --with-debug=full" |
| 541 | # TODO: is it safe/needed to use econf here ? |
|
|
| 542 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
681 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
| 543 | } |
682 | } |
| 544 | |
683 | |
| 545 | pbxt_src_compile() { |
684 | pbxt_src_compile() { |
|
|
685 | |
| 546 | # Be backwards compatible for now |
686 | # Be backwards compatible for now |
| 547 | if [[ $EAPI != 2 ]]; then |
687 | if [[ $EAPI != 2 ]]; then |
| 548 | pbxt_src_configure |
688 | pbxt_src_configure |
| 549 | fi |
689 | fi |
| 550 | # TODO: is it safe/needed to use emake here ? |
690 | # TODO: is it safe/needed to use emake here ? |
| … | |
… | |
| 579 | fi |
719 | fi |
| 580 | fi |
720 | fi |
| 581 | |
721 | |
| 582 | # Check for USE flag problems in pkg_setup |
722 | # Check for USE flag problems in pkg_setup |
| 583 | if use static && use ssl ; then |
723 | if use static && use ssl ; then |
| 584 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
| 585 | die "MySQL does not support being built statically with SSL support enabled!" |
724 | M="MySQL does not support being built statically with SSL support enabled!" |
|
|
725 | eerror "${M}" |
|
|
726 | die "${M}" |
| 586 | fi |
727 | fi |
| 587 | |
728 | |
| 588 | if ! mysql_version_is_at_least "5.0" \ |
729 | if ! mysql_version_is_at_least "5.0" \ |
| 589 | && use raid \ |
730 | && use raid \ |
| 590 | && use static ; then |
731 | && use static ; then |
| … | |
… | |
| 592 | eerror "with RAID support enabled." |
733 | eerror "with RAID support enabled." |
| 593 | die "USE flags 'raid' and 'static' conflict!" |
734 | die "USE flags 'raid' and 'static' conflict!" |
| 594 | fi |
735 | fi |
| 595 | |
736 | |
| 596 | if mysql_version_is_at_least "4.1.3" \ |
737 | if mysql_version_is_at_least "4.1.3" \ |
| 597 | && ( use cluster || use extraengine ) \ |
738 | && ( use cluster || use extraengine || use embedded ) \ |
| 598 | && use minimal ; then |
739 | && use minimal ; then |
| 599 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
| 600 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
740 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
|
|
741 | eerror "${M}" |
|
|
742 | die "${M}" |
| 601 | fi |
743 | fi |
| 602 | |
744 | |
| 603 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
| 604 | if mysql_version_is_at_least "5.0.83" ; then |
745 | if mysql_version_is_at_least "5.1" \ |
|
|
746 | && xtradb_patch_available \ |
|
|
747 | && use xtradb \ |
|
|
748 | && use embedded ; then |
|
|
749 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
|
|
750 | eerror "${M}" |
|
|
751 | die "${M}" |
|
|
752 | fi |
|
|
753 | |
|
|
754 | # Bug #290570, 284946, 307251 |
|
|
755 | # Upstream changes made us need a fairly new GCC4. |
|
|
756 | # But only for 5.0.8[3-6]! |
|
|
757 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
| 605 | GCC_VER=$(gcc-version) |
758 | GCC_VER=$(gcc-version) |
| 606 | case ${GCC_VER} in |
759 | case ${GCC_VER} in |
| 607 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
760 | 2*|3*|4.0|4.1|4.2) |
|
|
761 | eerror "Some releases of MySQL required a very new GCC, and then" |
|
|
762 | eerror "later release relaxed that requirement again. Either pick a" |
|
|
763 | eerror "MySQL >=5.0.87, or use a newer GCC." |
|
|
764 | die "Active GCC too old!" ;; |
| 608 | esac |
765 | esac |
| 609 | fi |
766 | fi |
| 610 | |
767 | |
| 611 | # This should come after all of the die statements |
768 | # This should come after all of the die statements |
| 612 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
769 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| … | |
… | |
| 687 | rm -f "scripts/mysqlbug" |
844 | rm -f "scripts/mysqlbug" |
| 688 | fi |
845 | fi |
| 689 | |
846 | |
| 690 | local rebuilddirlist d |
847 | local rebuilddirlist d |
| 691 | |
848 | |
| 692 | if xtradb_applicable ; then |
849 | if xtradb_patch_available && use xtradb ; then |
| 693 | einfo "Replacing InnoDB with Percona XtraDB" |
850 | einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)" |
| 694 | pushd "${S}"/storage |
851 | pushd "${S}"/storage >/dev/null |
| 695 | i="innobase" |
852 | i="innobase" |
| 696 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
853 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
| 697 | # Have we been here already? |
854 | # Have we been here already? |
| 698 | [ -d "${o}" ] && rm -f "${i}" |
855 | [ -d "${o}" ] && rm -f "${i}" |
| 699 | # Or maybe we haven't |
856 | # Or maybe we haven't |
| 700 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
857 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
| 701 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
858 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
| 702 | popd |
859 | popd >/dev/null |
|
|
860 | fi |
|
|
861 | |
|
|
862 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
|
|
863 | einfo "Adding storage engine: PBXT" |
|
|
864 | pushd "${S}"/storage >/dev/null |
|
|
865 | i='pbxt' |
|
|
866 | [ -d "${i}" ] && rm -rf "${i}" |
|
|
867 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
|
|
868 | popd >/dev/null |
| 703 | fi |
869 | fi |
| 704 | |
870 | |
| 705 | if mysql_version_is_at_least "5.1.12" ; then |
871 | if mysql_version_is_at_least "5.1.12" ; then |
| 706 | rebuilddirlist="." |
872 | rebuilddirlist="." |
| 707 | # This does not seem to be needed presently. robbat2 2010/02/23 |
873 | # This does not seem to be needed presently. robbat2 2010/02/23 |
| … | |
… | |
| 801 | # TODO: Move this before autoreconf !!! |
967 | # TODO: Move this before autoreconf !!! |
| 802 | find . -type f -name Makefile -print0 \ |
968 | find . -type f -name Makefile -print0 \ |
| 803 | | xargs -0 -n100 sed -i \ |
969 | | xargs -0 -n100 sed -i \ |
| 804 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
970 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 805 | |
971 | |
| 806 | if [[ $EAPI == 2 ]]; then |
972 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 807 | pbxt_applicable && pbxt_src_configure |
973 | pbxt_patch_available && use pbxt && pbxt_src_configure |
| 808 | fi |
974 | fi |
| 809 | } |
975 | } |
| 810 | |
976 | |
| 811 | # @FUNCTION: mysql_src_compile |
977 | # @FUNCTION: mysql_src_compile |
| 812 | # @DESCRIPTION: |
978 | # @DESCRIPTION: |
| 813 | # Compile the mysql code. |
979 | # Compile the mysql code. |
| 814 | mysql_src_compile() { |
980 | mysql_src_compile() { |
| 815 | # Be backwards compatible for now |
981 | # Be backwards compatible for now |
| 816 | case ${EAPI:-0} in |
982 | case ${EAPI:-0} in |
| 817 | 2) : ;; |
983 | 2) : ;; |
| 818 | 0 | 1) mysql_src_configure ;; |
984 | 0 | 1) mysql_src_configure ;; |
| 819 | esac |
985 | esac |
| 820 | |
986 | |
| 821 | emake || die "emake failed" |
987 | emake || die "emake failed" |
| 822 | |
988 | |
| 823 | pbxt_applicable && pbxt_src_compile |
989 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
990 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
991 | fi |
| 824 | } |
992 | } |
| 825 | |
993 | |
| 826 | # @FUNCTION: mysql_src_install |
994 | # @FUNCTION: mysql_src_install |
| 827 | # @DESCRIPTION: |
995 | # @DESCRIPTION: |
| 828 | # Install mysql. |
996 | # Install mysql. |
| … | |
… | |
| 834 | DESTDIR="${D}" \ |
1002 | DESTDIR="${D}" \ |
| 835 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
1003 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
| 836 | testroot="${MY_SHAREDSTATEDIR}" \ |
1004 | testroot="${MY_SHAREDSTATEDIR}" \ |
| 837 | || die "emake install failed" |
1005 | || die "emake install failed" |
| 838 | |
1006 | |
| 839 | pbxt_applicable && pbxt_src_install |
1007 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1008 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1009 | fi |
| 840 | |
1010 | |
| 841 | # Convenience links |
1011 | # Convenience links |
| 842 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
1012 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 843 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
1013 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 844 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
1014 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 868 | if use !test ; then |
1038 | if use !test ; then |
| 869 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
1039 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 870 | fi |
1040 | fi |
| 871 | |
1041 | |
| 872 | # Configuration stuff |
1042 | # Configuration stuff |
|
|
1043 | if mysql_version_is_at_least "5.1" ; then |
|
|
1044 | mysql_mycnf_version="5.1" |
| 873 | if mysql_version_is_at_least "4.1" ; then |
1045 | elif mysql_version_is_at_least "4.1" ; then |
| 874 | mysql_mycnf_version="4.1" |
1046 | mysql_mycnf_version="4.1" |
| 875 | else |
1047 | else |
| 876 | mysql_mycnf_version="4.0" |
1048 | mysql_mycnf_version="4.0" |
| 877 | fi |
1049 | fi |
| 878 | einfo "Building default my.cnf" |
1050 | einfo "Building default my.cnf" |
| … | |
… | |
| 880 | doins scripts/mysqlaccess.conf |
1052 | doins scripts/mysqlaccess.conf |
| 881 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
1053 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 882 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1054 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 883 | > "${TMPDIR}/my.cnf.ok" |
1055 | > "${TMPDIR}/my.cnf.ok" |
| 884 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
1056 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 885 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
1057 | sed -i \ |
|
|
1058 | -e "/character-set/s|utf8|latin1|g" \ |
|
|
1059 | "${TMPDIR}/my.cnf.ok" |
| 886 | fi |
1060 | fi |
| 887 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1061 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 888 | |
1062 | |
| 889 | # Minimal builds don't have the MySQL server |
1063 | # Minimal builds don't have the MySQL server |
| 890 | if ! use minimal ; then |
1064 | if ! use minimal ; then |
| … | |
… | |
| 966 | for script in \ |
1140 | for script in \ |
| 967 | support-files/my-*.cnf \ |
1141 | support-files/my-*.cnf \ |
| 968 | support-files/magic \ |
1142 | support-files/magic \ |
| 969 | support-files/ndb-config-2-node.ini |
1143 | support-files/ndb-config-2-node.ini |
| 970 | do |
1144 | do |
|
|
1145 | [[ -f "${script}" ]] \ |
| 971 | dodoc "${script}" |
1146 | && dodoc "${script}" |
| 972 | done |
1147 | done |
| 973 | |
1148 | |
| 974 | docinto "scripts" |
1149 | docinto "scripts" |
| 975 | for script in scripts/mysql* ; do |
1150 | for script in scripts/mysql* ; do |
|
|
1151 | [[ -f "${script}" ]] \ |
| 976 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1152 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1153 | && dodoc "${script}" |
| 977 | done |
1154 | done |
| 978 | |
1155 | |
| 979 | einfo |
1156 | einfo |
| 980 | elog "You might want to run:" |
1157 | elog "You might want to run:" |
| 981 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1158 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 982 | elog "if this is a new install." |
1159 | elog "if this is a new install." |
| 983 | einfo |
1160 | einfo |
| 984 | fi |
1161 | fi |
| 985 | |
1162 | |
| 986 | if pbxt_applicable ; then |
1163 | if pbxt_available && use pbxt ; then |
| 987 | # TODO: explain it better |
1164 | # TODO: explain it better |
| 988 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
1165 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 989 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
1166 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 990 | elog "if, after that, you cannot start the MySQL server," |
1167 | elog "if, after that, you cannot start the MySQL server," |
| 991 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
1168 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| … | |
… | |
| 1042 | fi |
1219 | fi |
| 1043 | fi |
1220 | fi |
| 1044 | |
1221 | |
| 1045 | local pwd1="a" |
1222 | local pwd1="a" |
| 1046 | local pwd2="b" |
1223 | local pwd2="b" |
|
|
1224 | local MYSQL_ROOT_PASSWORD='' |
| 1047 | local maxtry=5 |
1225 | local maxtry=15 |
|
|
1226 | |
|
|
1227 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then |
|
|
1228 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")" |
|
|
1229 | fi |
| 1048 | |
1230 | |
| 1049 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
1231 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 1050 | ewarn "You have already a MySQL database in place." |
1232 | ewarn "You have already a MySQL database in place." |
| 1051 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1233 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 1052 | ewarn "Please rename or delete it if you wish to replace it." |
1234 | ewarn "Please rename or delete it if you wish to replace it." |
| … | |
… | |
| 1055 | |
1237 | |
| 1056 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
1238 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 1057 | # localhost. Also causes weird failures. |
1239 | # localhost. Also causes weird failures. |
| 1058 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
1240 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 1059 | |
1241 | |
| 1060 | einfo "Creating the mysql database and setting proper" |
1242 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
| 1061 | einfo "permissions on it ..." |
|
|
| 1062 | |
1243 | |
| 1063 | einfo "Insert a password for the mysql 'root' user" |
1244 | einfo "Please provide a password for the mysql 'root' user now," |
|
|
1245 | einfo "or in the MYSQL_ROOT_PASSWORD env var." |
| 1064 | ewarn "Avoid [\"'\\_%] characters in the password" |
1246 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 1065 | read -rsp " >" pwd1 ; echo |
1247 | read -rsp " >" pwd1 ; echo |
| 1066 | |
1248 | |
| 1067 | einfo "Retype the password" |
1249 | einfo "Retype the password" |
| 1068 | read -rsp " >" pwd2 ; echo |
1250 | read -rsp " >" pwd2 ; echo |
| 1069 | |
1251 | |
| 1070 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1252 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 1071 | die "Passwords are not the same" |
1253 | die "Passwords are not the same" |
|
|
1254 | fi |
|
|
1255 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1256 | unset pwd1 pwd2 |
| 1072 | fi |
1257 | fi |
| 1073 | |
1258 | |
| 1074 | local options="" |
1259 | local options="" |
| 1075 | local sqltmp="$(emktemp)" |
1260 | local sqltmp="$(emktemp)" |
| 1076 | |
1261 | |
| … | |
… | |
| 1090 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
1275 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 1091 | || die "MySQL databases not installed" |
1276 | || die "MySQL databases not installed" |
| 1092 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1277 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 1093 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1278 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 1094 | |
1279 | |
|
|
1280 | # Figure out which options we need to disable to do the setup |
|
|
1281 | helpfile="${TMPDIR}/mysqld-help" |
|
|
1282 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
|
|
1283 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
|
|
1284 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1285 | ; do |
|
|
1286 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
|
|
1287 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
|
|
1288 | done |
|
|
1289 | # But some options changed names |
|
|
1290 | egrep -sq external-locking "${helpfile}" && \ |
|
|
1291 | options="${options/skip-locking/skip-external-locking}" |
|
|
1292 | |
| 1095 | if mysql_version_is_at_least "4.1.3" ; then |
1293 | if mysql_version_is_at_least "4.1.3" ; then |
| 1096 | options="--skip-ndbcluster" |
|
|
| 1097 | |
|
|
| 1098 | # Filling timezones, see |
1294 | # Filling timezones, see |
| 1099 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1295 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 1100 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
1296 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 1101 | |
1297 | |
| 1102 | if [[ -r "${help_tables}" ]] ; then |
1298 | if [[ -r "${help_tables}" ]] ; then |
| 1103 | cat "${help_tables}" >> "${sqltmp}" |
1299 | cat "${help_tables}" >> "${sqltmp}" |
| 1104 | fi |
1300 | fi |
| 1105 | fi |
1301 | fi |
|
|
1302 | |
|
|
1303 | einfo "Creating the mysql database and setting proper" |
|
|
1304 | einfo "permissions on it ..." |
| 1106 | |
1305 | |
| 1107 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1306 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 1108 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1307 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 1109 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1308 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 1110 | ${options} \ |
1309 | ${options} \ |
| 1111 | --user=mysql \ |
1310 | --user=mysql \ |
| 1112 | --skip-grant-tables \ |
|
|
| 1113 | --basedir=${ROOT}/usr \ |
1311 | --basedir=${ROOT}/usr \ |
| 1114 | --datadir=${ROOT}/${MY_DATADIR} \ |
1312 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 1115 | --skip-innodb \ |
|
|
| 1116 | --skip-bdb \ |
|
|
| 1117 | --skip-networking \ |
|
|
| 1118 | --max_allowed_packet=8M \ |
1313 | --max_allowed_packet=8M \ |
| 1119 | --net_buffer_length=16K \ |
1314 | --net_buffer_length=16K \ |
|
|
1315 | --default-storage-engine=MyISAM \ |
| 1120 | --socket=${socket} \ |
1316 | --socket=${socket} \ |
| 1121 | --pid-file=${pidfile}" |
1317 | --pid-file=${pidfile}" |
|
|
1318 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1319 | ebegin "Starting mysqld" |
| 1122 | ${mysqld} & |
1320 | ${mysqld} & |
|
|
1321 | rc=$? |
| 1123 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1322 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 1124 | maxtry=$((${maxtry}-1)) |
1323 | maxtry=$((${maxtry}-1)) |
| 1125 | echo -n "." |
1324 | echo -n "." |
| 1126 | sleep 1 |
1325 | sleep 1 |
| 1127 | done |
1326 | done |
|
|
1327 | eend $rc |
| 1128 | |
1328 | |
|
|
1329 | if ! [[ -S "${socket}" ]]; then |
|
|
1330 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1331 | fi |
|
|
1332 | |
|
|
1333 | ebegin "Setting root password" |
| 1129 | # Do this from memory, as we don't want clear text passwords in temp files |
1334 | # Do this from memory, as we don't want clear text passwords in temp files |
| 1130 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1335 | local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'" |
| 1131 | "${ROOT}/usr/bin/mysql" \ |
1336 | "${ROOT}/usr/bin/mysql" \ |
| 1132 | --socket=${socket} \ |
1337 | --socket=${socket} \ |
| 1133 | -hlocalhost \ |
1338 | -hlocalhost \ |
| 1134 | -e "${sql}" |
1339 | -e "${sql}" |
|
|
1340 | eend $? |
| 1135 | |
1341 | |
| 1136 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1342 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 1137 | |
|
|
| 1138 | "${ROOT}/usr/bin/mysql" \ |
1343 | "${ROOT}/usr/bin/mysql" \ |
| 1139 | --socket=${socket} \ |
1344 | --socket=${socket} \ |
| 1140 | -hlocalhost \ |
1345 | -hlocalhost \ |
| 1141 | -uroot \ |
1346 | -uroot \ |
| 1142 | -p"${pwd1}" \ |
1347 | -p"${MYSQL_ROOT_PASSWORD}" \ |
| 1143 | mysql < "${sqltmp}" |
1348 | mysql < "${sqltmp}" |
|
|
1349 | rc=$? |
|
|
1350 | eend $? |
|
|
1351 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
| 1144 | |
1352 | |
| 1145 | # Stop the server and cleanup |
1353 | # Stop the server and cleanup |
|
|
1354 | einfo "Stopping the server ..." |
| 1146 | kill $(< "${pidfile}" ) |
1355 | kill $(< "${pidfile}" ) |
| 1147 | rm -f "${sqltmp}" |
1356 | rm -f "${sqltmp}" |
| 1148 | einfo "Stopping the server ..." |
|
|
| 1149 | wait %1 |
1357 | wait %1 |
| 1150 | einfo "Done" |
1358 | einfo "Done" |
| 1151 | } |
1359 | } |
| 1152 | |
1360 | |
| 1153 | # @FUNCTION: mysql_pkg_postrm |
1361 | # @FUNCTION: mysql_pkg_postrm |