| 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.119 2009/12/09 18:45:46 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.135 2010/03/03 23:57:13 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> |
| … | |
… | |
| 16 | # phase hooks. |
16 | # phase hooks. |
| 17 | |
17 | |
| 18 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 19 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
| 20 | |
20 | |
| 21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
|
|
22 | |
|
|
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
24 | # and we will run a mysql server during test phase |
|
|
25 | S="${WORKDIR}/mysql" |
|
|
26 | |
|
|
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
29 | EGIT_PROJECT=mysql-extras |
|
|
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
31 | inherit git |
|
|
32 | fi |
| 22 | |
33 | |
| 23 | case "${EAPI:-0}" in |
34 | case "${EAPI:-0}" in |
| 24 | 2) |
35 | 2) |
| 25 | EXPORT_FUNCTIONS pkg_setup \ |
36 | EXPORT_FUNCTIONS pkg_setup \ |
| 26 | src_unpack src_prepare \ |
37 | src_unpack src_prepare \ |
| … | |
… | |
| 40 | ;; |
51 | ;; |
| 41 | *) |
52 | *) |
| 42 | die "Unsupported EAPI: ${EAPI}" ;; |
53 | die "Unsupported EAPI: ${EAPI}" ;; |
| 43 | esac |
54 | esac |
| 44 | |
55 | |
| 45 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
| 46 | # and we will run a mysql server during test phase |
|
|
| 47 | S="${WORKDIR}/mysql" |
|
|
| 48 | |
|
|
| 49 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
| 50 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
| 51 | EGIT_PROJECT=mysql-extras |
|
|
| 52 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
| 53 | inherit git |
|
|
| 54 | fi |
|
|
| 55 | |
|
|
| 56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 57 | # @DESCRIPTION: |
57 | # @DESCRIPTION: |
| 58 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
| 59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
59 | # 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 |
60 | # This is an important part, because many of the choices the MySQL ebuild will do |
| … | |
… | |
| 83 | MYSQL_COMMUNITY_FEATURES=1 |
83 | MYSQL_COMMUNITY_FEATURES=1 |
| 84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
| 85 | MYSQL_COMMUNITY_FEATURES=1 |
85 | MYSQL_COMMUNITY_FEATURES=1 |
| 86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
| 87 | MYSQL_COMMUNITY_FEATURES=1 |
87 | MYSQL_COMMUNITY_FEATURES=1 |
| 88 | elif [ "${PV#5.4}" != "${PV}" ]; then |
88 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
91 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
92 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
| 89 | MYSQL_COMMUNITY_FEATURES=1 |
93 | MYSQL_COMMUNITY_FEATURES=1 |
| 90 | else |
94 | else |
| 91 | MYSQL_COMMUNITY_FEATURES=0 |
95 | MYSQL_COMMUNITY_FEATURES=0 |
| 92 | fi |
96 | fi |
|
|
97 | |
|
|
98 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Version of the XTRADB storage engine |
|
|
101 | XTRADB_VER="${XTRADB_VER}" |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
106 | PERCONA_VER="${PERCONA_VER}" |
| 93 | |
107 | |
| 94 | # Be warned, *DEPEND are version-dependant |
108 | # Be warned, *DEPEND are version-dependant |
| 95 | # These are used for both runtime and compiletime |
109 | # These are used for both runtime and compiletime |
| 96 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
110 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 97 | userland_GNU? ( sys-process/procps ) |
111 | userland_GNU? ( sys-process/procps ) |
| … | |
… | |
| 124 | # For other stuff to bring us in |
138 | # For other stuff to bring us in |
| 125 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 126 | |
140 | |
| 127 | # Work out the default SERVER_URI correctly |
141 | # Work out the default SERVER_URI correctly |
| 128 | if [ -z "${SERVER_URI}" ]; then |
142 | if [ -z "${SERVER_URI}" ]; then |
|
|
143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
| 129 | # The community build is on the mirrors |
144 | # The community build is on the mirrors |
| 130 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 131 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
| 132 | # The (old) enterprise source is on the primary site only |
147 | # The (old) enterprise source is on the primary site only |
| 133 | elif [ "${PN}" == "mysql" ]; then |
148 | elif [ "${PN}" == "mysql" ]; then |
| 134 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 135 | fi |
150 | fi |
| 136 | fi |
151 | fi |
| 137 | |
152 | |
| 138 | # Define correct SRC_URIs |
153 | # Define correct SRC_URIs |
| 139 | SRC_URI="${SERVER_URI}" |
154 | SRC_URI="${SERVER_URI}" |
| 140 | |
155 | |
| 141 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
156 | # Gentoo patches to MySQL |
|
|
157 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
158 | && SRC_URI="${SRC_URI} |
| 142 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
159 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 143 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 144 | mysql_version_is_at_least "5.1.12" \ |
161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 145 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 146 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
| 147 | |
162 | |
| 148 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 149 | HOMEPAGE="http://www.mysql.com/" |
164 | HOMEPAGE="http://www.mysql.com/" |
| 150 | LICENSE="GPL-2" |
165 | LICENSE="GPL-2" |
| 151 | SLOT="0" |
166 | SLOT="0" |
| 152 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 153 | |
168 | |
| 154 | mysql_version_is_at_least "4.1" \ |
169 | mysql_version_is_at_least "4.1" \ |
| 155 | && IUSE="${IUSE} latin1" |
170 | && IUSE="${IUSE} latin1" |
| 156 | |
171 | |
| 157 | mysql_version_is_at_least "4.1.3" \ |
172 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 164 | && IUSE="${IUSE} max-idx-128" |
179 | && IUSE="${IUSE} max-idx-128" |
| 165 | |
180 | |
| 166 | mysql_version_is_at_least "5.1" \ |
181 | mysql_version_is_at_least "5.1" \ |
| 167 | || IUSE="${IUSE} berkdb" |
182 | || IUSE="${IUSE} berkdb" |
| 168 | |
183 | |
| 169 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 170 | && IUSE="${IUSE} pbxt" |
|
|
| 171 | |
|
|
| 172 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 173 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 174 | |
186 | |
|
|
187 | # PBXT engine |
|
|
188 | mysql_version_is_at_least "5.1.12" \ |
|
|
189 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
190 | && 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" \ |
|
|
192 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
193 | && 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" \ |
|
|
197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
199 | && 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}" \ |
|
|
201 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
202 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
|
|
203 | && IUSE="${IUSE} xtradb" |
| 175 | |
204 | |
| 176 | # |
205 | # |
| 177 | # HELPER FUNCTIONS: |
206 | # HELPER FUNCTIONS: |
| 178 | # |
207 | # |
| 179 | |
208 | |
| 180 | # @FUNCTION: mysql_disable_test |
209 | # @FUNCTION: mysql_disable_test |
| 181 | # @DESCRIPTION: |
210 | # @DESCRIPTION: |
| 182 | # Helper function to disable specific tests. |
211 | # Helper function to disable specific tests. |
| 183 | mysql_disable_test() { |
212 | mysql_disable_test() { |
|
|
213 | local rawtestname testname testsuite reason mysql_disable_file |
| 184 | local testname="${1}" ; shift |
214 | rawtestname="${1}" ; shift |
| 185 | local reason="${@}" |
215 | reason="${@}" |
|
|
216 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
217 | |
|
|
218 | testsuite="${rawtestname/.*}" |
|
|
219 | testname="${rawtestname/*.}" |
| 186 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
220 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
221 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 187 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
222 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 188 | ewarn "test '${testname}' disabled: '${reason}'" |
223 | |
|
|
224 | # ${S}/mysql-tests/t/disabled.def |
|
|
225 | # |
|
|
226 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
227 | # |
|
|
228 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
229 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
230 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
231 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
232 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
233 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
234 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
235 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
236 | if [ -n "${testsuite}" ]; then |
|
|
237 | for mysql_disable_file in \ |
|
|
238 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
239 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
240 | FAILED ; do |
|
|
241 | [ -f "${mysql_disable_file}" ] && break |
|
|
242 | done |
|
|
243 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
244 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
245 | else |
|
|
246 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
247 | fi |
|
|
248 | fi |
| 189 | } |
249 | } |
| 190 | |
250 | |
| 191 | # @FUNCTION: mysql_init_vars |
251 | # @FUNCTION: mysql_init_vars |
| 192 | # @DESCRIPTION: |
252 | # @DESCRIPTION: |
| 193 | # void mysql_init_vars() |
253 | # void mysql_init_vars() |
| … | |
… | |
| 345 | if use ssl ; then |
405 | if use ssl ; then |
| 346 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
406 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 347 | fi |
407 | fi |
| 348 | |
408 | |
| 349 | if mysql_version_is_at_least "5.1.11" ; then |
409 | if mysql_version_is_at_least "5.1.11" ; then |
| 350 | myconf="${myconf} $(use_with ssl)" |
410 | myconf="${myconf} $(use_with ssl /usr)" |
| 351 | else |
411 | else |
| 352 | myconf="${myconf} $(use_with ssl openssl)" |
412 | myconf="${myconf} $(use_with ssl openssl)" |
| 353 | fi |
413 | fi |
| 354 | |
414 | |
| 355 | if mysql_version_is_at_least "5.0.60" ; then |
415 | if mysql_version_is_at_least "5.0.60" ; then |
| … | |
… | |
| 418 | # readline.h instead of history.h |
478 | # readline.h instead of history.h |
| 419 | myconf="${myconf} $(use_with ssl)" |
479 | myconf="${myconf} $(use_with ssl)" |
| 420 | myconf="${myconf} --enable-assembler" |
480 | myconf="${myconf} --enable-assembler" |
| 421 | myconf="${myconf} --with-geometry" |
481 | myconf="${myconf} --with-geometry" |
| 422 | myconf="${myconf} --with-readline" |
482 | myconf="${myconf} --with-readline" |
| 423 | myconf="${myconf} --with-row-based-replication" |
|
|
| 424 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
483 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 425 | myconf="${myconf} --without-pstack" |
484 | myconf="${myconf} --without-pstack" |
| 426 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
485 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 427 | |
486 | |
| 428 | # 5.1 introduces a new way to manage storage engines (plugins) |
487 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 429 | # like configuration=none |
488 | # like configuration=none |
| 430 | local plugins="csv,myisam,myisammrg,heap" |
489 | local plugins="csv,myisam,myisammrg,heap" |
| 431 | if use extraengine ; then |
490 | if use extraengine ; then |
| 432 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
491 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
492 | # not added yet: ibmdb2i |
|
|
493 | # Not supporting as examples: example,daemon_example,ftexample |
| 433 | plugins="${plugins},archive,blackhole,example,federated,partition" |
494 | plugins="${plugins},archive,blackhole,federated,partition" |
| 434 | |
495 | |
| 435 | elog "Before using the Federated storage engine, please be sure to read" |
496 | elog "Before using the Federated storage engine, please be sure to read" |
| 436 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
497 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 437 | fi |
498 | fi |
| 438 | |
499 | |
| 439 | # Upstream specifically requests that InnoDB always be built. |
500 | # Upstream specifically requests that InnoDB always be built: |
| 440 | plugins="${plugins},innobase" |
501 | # - innobase, innodb_plugin |
|
|
502 | # Build falcon if available for 6.x series. |
|
|
503 | for i in innobase innodb_plugin falcon ; do |
|
|
504 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
505 | done |
| 441 | |
506 | |
| 442 | # like configuration=max-no-ndb |
507 | # like configuration=max-no-ndb |
| 443 | if use cluster ; then |
508 | if use cluster ; then |
| 444 | plugins="${plugins},ndbcluster" |
509 | plugins="${plugins},ndbcluster" |
| 445 | myconf="${myconf} --with-ndb-binlog" |
510 | myconf="${myconf} --with-ndb-binlog" |
| 446 | fi |
511 | fi |
| 447 | |
512 | |
| 448 | if mysql_version_is_at_least "5.2" ; then |
|
|
| 449 | plugins="${plugins},falcon" |
|
|
| 450 | fi |
|
|
| 451 | |
|
|
| 452 | myconf="${myconf} --with-plugins=${plugins}" |
513 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
514 | } |
|
|
515 | |
|
|
516 | xtradb_applicable() { |
|
|
517 | mysql_version_is_at_least "5.1.26" \ |
|
|
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 $? |
| 453 | } |
528 | } |
| 454 | |
529 | |
| 455 | pbxt_src_configure() { |
530 | pbxt_src_configure() { |
| 456 | mysql_init_vars |
531 | mysql_init_vars |
| 457 | |
532 | |
| … | |
… | |
| 459 | |
534 | |
| 460 | einfo "Reconfiguring dir '${PWD}'" |
535 | einfo "Reconfiguring dir '${PWD}'" |
| 461 | AT_GNUCONF_UPDATE="yes" eautoreconf |
536 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 462 | |
537 | |
| 463 | local myconf="" |
538 | local myconf="" |
| 464 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
539 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
| 465 | use debug && myconf="${myconf} --with-debug=full" |
540 | use debug && myconf="${myconf} --with-debug=full" |
| 466 | # TODO: is it safe/needed to use econf here ? |
541 | # TODO: is it safe/needed to use econf here ? |
| 467 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
542 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
| 468 | } |
543 | } |
| 469 | |
544 | |
| … | |
… | |
| 479 | # TODO: modify test suite for PBXT |
554 | # TODO: modify test suite for PBXT |
| 480 | } |
555 | } |
| 481 | |
556 | |
| 482 | pbxt_src_install() { |
557 | pbxt_src_install() { |
| 483 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
558 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 484 | make install || die "Failed to install PBXT" |
559 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 485 | popd |
560 | popd |
| 486 | } |
561 | } |
| 487 | |
562 | |
| 488 | # |
563 | # |
| 489 | # EBUILD FUNCTIONS |
564 | # EBUILD FUNCTIONS |
| … | |
… | |
| 523 | && use minimal ; then |
598 | && use minimal ; then |
| 524 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
599 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 525 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
600 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 526 | fi |
601 | fi |
| 527 | |
602 | |
|
|
603 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
604 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
605 | GCC_VER=$(gcc-version) |
|
|
606 | case ${GCC_VER} in |
|
|
607 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
608 | esac |
|
|
609 | fi |
|
|
610 | |
| 528 | # This should come after all of the die statements |
611 | # This should come after all of the die statements |
| 529 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
612 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 530 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
613 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 531 | |
614 | |
| 532 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
615 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 533 | && use berkdb \ |
616 | && use berkdb \ |
| 534 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
617 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
618 | |
|
|
619 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
620 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
621 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
622 | ewarn "future, it will be disabled from building." |
|
|
623 | ewarn "" |
|
|
624 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
625 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
626 | ewarn "development." |
|
|
627 | fi |
| 535 | } |
628 | } |
| 536 | |
629 | |
| 537 | # @FUNCTION: mysql_src_unpack |
630 | # @FUNCTION: mysql_src_unpack |
| 538 | # @DESCRIPTION: |
631 | # @DESCRIPTION: |
| 539 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
632 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| … | |
… | |
| 568 | # Now link in right patches |
661 | # Now link in right patches |
| 569 | mysql_mv_patches |
662 | mysql_mv_patches |
| 570 | # And apply |
663 | # And apply |
| 571 | epatch |
664 | epatch |
| 572 | |
665 | |
|
|
666 | # last -fPIC fixup, per bug #305873 |
|
|
667 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
668 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
669 | |
| 573 | # Additional checks, remove bundled zlib |
670 | # Additional checks, remove bundled zlib |
| 574 | rm -f "${S}/zlib/"*.[ch] |
671 | rm -f "${S}/zlib/"*.[ch] |
| 575 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
672 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 576 | rm -f "scripts/mysqlbug" |
673 | rm -f "scripts/mysqlbug" |
| 577 | |
674 | |
| … | |
… | |
| 579 | find . -name 'Makefile.am' \ |
676 | find . -name 'Makefile.am' \ |
| 580 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
677 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 581 | |
678 | |
| 582 | if mysql_version_is_at_least "4.1" ; then |
679 | if mysql_version_is_at_least "4.1" ; then |
| 583 | # Remove what needs to be recreated, so we're sure it's actually done |
680 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
681 | einfo "Cleaning up old buildscript files" |
| 584 | find . -name Makefile \ |
682 | find . -name Makefile \ |
| 585 | -o -name Makefile.in \ |
683 | -o -name Makefile.in \ |
| 586 | -o -name configure \ |
684 | -o -name configure \ |
| 587 | -exec rm -f {} \; |
685 | -exec rm -f {} \; |
| 588 | rm -f "ltmain.sh" |
686 | rm -f "ltmain.sh" |
| 589 | rm -f "scripts/mysqlbug" |
687 | rm -f "scripts/mysqlbug" |
| 590 | fi |
688 | fi |
| 591 | |
689 | |
| 592 | local rebuilddirlist d |
690 | local rebuilddirlist d |
| 593 | |
691 | |
|
|
692 | if xtradb_applicable ; then |
|
|
693 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
694 | pushd "${S}"/storage |
|
|
695 | i="innobase" |
|
|
696 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
697 | # Have we been here already? |
|
|
698 | [ -d "${o}" ] && rm -f "${i}" |
|
|
699 | # Or maybe we haven't |
|
|
700 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
701 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
702 | popd |
|
|
703 | fi |
|
|
704 | |
| 594 | if mysql_version_is_at_least "5.1.12" ; then |
705 | if mysql_version_is_at_least "5.1.12" ; then |
| 595 | rebuilddirlist="." |
706 | rebuilddirlist="." |
|
|
707 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
708 | #einfo "Updating innobase cmake" |
| 596 | # TODO: check this with a cmake expert |
709 | ## TODO: check this with a cmake expert |
| 597 | cmake \ |
710 | #cmake \ |
| 598 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
711 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 599 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
712 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 600 | "storage/innobase" |
713 | # "storage/innobase" |
| 601 | else |
714 | else |
| 602 | rebuilddirlist=". innobase" |
715 | rebuilddirlist=". innobase" |
| 603 | fi |
716 | fi |
| 604 | |
717 | |
| 605 | for d in ${rebuilddirlist} ; do |
718 | for d in ${rebuilddirlist} ; do |
| … | |
… | |
| 609 | popd &>/dev/null |
722 | popd &>/dev/null |
| 610 | done |
723 | done |
| 611 | |
724 | |
| 612 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
725 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 613 | && use berkdb ; then |
726 | && use berkdb ; then |
|
|
727 | einfo "Fixing up berkdb buildsystem" |
| 614 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
728 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 615 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
729 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 616 | || die "Could not copy libtool.m4 to bdb/dist/" |
730 | || die "Could not copy libtool.m4 to bdb/dist/" |
| 617 | #These files exist only with libtool-2*, and need to be included. |
731 | #These files exist only with libtool-2*, and need to be included. |
| 618 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
732 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
| … | |
… | |
| 688 | find . -type f -name Makefile -print0 \ |
802 | find . -type f -name Makefile -print0 \ |
| 689 | | xargs -0 -n100 sed -i \ |
803 | | xargs -0 -n100 sed -i \ |
| 690 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
804 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 691 | |
805 | |
| 692 | if [[ $EAPI == 2 ]]; then |
806 | if [[ $EAPI == 2 ]]; then |
| 693 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
807 | pbxt_applicable && pbxt_src_configure |
| 694 | fi |
808 | fi |
| 695 | } |
809 | } |
| 696 | |
810 | |
| 697 | # @FUNCTION: mysql_src_compile |
811 | # @FUNCTION: mysql_src_compile |
| 698 | # @DESCRIPTION: |
812 | # @DESCRIPTION: |
| … | |
… | |
| 704 | 0 | 1) mysql_src_configure ;; |
818 | 0 | 1) mysql_src_configure ;; |
| 705 | esac |
819 | esac |
| 706 | |
820 | |
| 707 | emake || die "emake failed" |
821 | emake || die "emake failed" |
| 708 | |
822 | |
| 709 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
823 | pbxt_applicable && pbxt_src_compile |
| 710 | } |
824 | } |
| 711 | |
825 | |
| 712 | # @FUNCTION: mysql_src_install |
826 | # @FUNCTION: mysql_src_install |
| 713 | # @DESCRIPTION: |
827 | # @DESCRIPTION: |
| 714 | # Install mysql. |
828 | # Install mysql. |
| 715 | mysql_src_install() { |
829 | mysql_src_install() { |
| 716 | # Make sure the vars are correctly initialized |
830 | # Make sure the vars are correctly initialized |
| 717 | mysql_init_vars |
831 | mysql_init_vars |
| 718 | |
832 | |
| 719 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
833 | emake install \ |
|
|
834 | DESTDIR="${D}" \ |
|
|
835 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
836 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
837 | || die "emake install failed" |
| 720 | |
838 | |
| 721 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
839 | pbxt_applicable && pbxt_src_install |
| 722 | |
840 | |
| 723 | # Convenience links |
841 | # Convenience links |
| 724 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
842 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 725 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
843 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 726 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
844 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 730 | einfo "Removing duplicate /usr/share/mysql files" |
848 | einfo "Removing duplicate /usr/share/mysql files" |
| 731 | rm -Rf "${D}/usr/share/info" |
849 | rm -Rf "${D}/usr/share/info" |
| 732 | for removeme in "mysql-log-rotate" mysql.server* \ |
850 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 733 | binary-configure* my-*.cnf mi_test_all* |
851 | binary-configure* my-*.cnf mi_test_all* |
| 734 | do |
852 | do |
| 735 | rm -f "${D}"/usr/share/mysql/${removeme} |
853 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 736 | done |
854 | done |
| 737 | |
855 | |
| 738 | # Clean up stuff for a minimal build |
856 | # Clean up stuff for a minimal build |
| 739 | if use minimal ; then |
857 | if use minimal ; then |
| 740 | einfo "Remove all extra content for minimal build" |
858 | einfo "Remove all extra content for minimal build" |
| 741 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
859 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 742 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
860 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
| 743 | rm -f "${D}/usr/sbin/mysqld" |
861 | rm -f "${D}/usr/sbin/mysqld" |
| 744 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
862 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
|
|
863 | fi |
|
|
864 | |
|
|
865 | # Unless they explicitly specific USE=test, then do not install the |
|
|
866 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
867 | # validation of your database configuration after tuning it. |
|
|
868 | if use !test ; then |
|
|
869 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
| 745 | fi |
870 | fi |
| 746 | |
871 | |
| 747 | # Configuration stuff |
872 | # Configuration stuff |
| 748 | if mysql_version_is_at_least "4.1" ; then |
873 | if mysql_version_is_at_least "4.1" ; then |
| 749 | mysql_mycnf_version="4.1" |
874 | mysql_mycnf_version="4.1" |
| … | |
… | |
| 780 | done |
905 | done |
| 781 | fi |
906 | fi |
| 782 | |
907 | |
| 783 | # Docs |
908 | # Docs |
| 784 | einfo "Installing docs" |
909 | einfo "Installing docs" |
| 785 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
910 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 786 | doinfo "${S}"/Docs/mysql.info |
911 | doinfo "${S}"/Docs/mysql.info |
| 787 | |
912 | |
| 788 | # Minimal builds don't have the MySQL server |
913 | # Minimal builds don't have the MySQL server |
| 789 | if ! use minimal ; then |
914 | if ! use minimal ; then |
| 790 | einfo "Including support files and sample configurations" |
915 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 792 | for script in \ |
917 | for script in \ |
| 793 | "${S}"/support-files/my-*.cnf \ |
918 | "${S}"/support-files/my-*.cnf \ |
| 794 | "${S}"/support-files/magic \ |
919 | "${S}"/support-files/magic \ |
| 795 | "${S}"/support-files/ndb-config-2-node.ini |
920 | "${S}"/support-files/ndb-config-2-node.ini |
| 796 | do |
921 | do |
| 797 | dodoc "${script}" |
922 | [[ -f "$script" ]] && dodoc "${script}" |
| 798 | done |
923 | done |
| 799 | |
924 | |
| 800 | docinto "scripts" |
925 | docinto "scripts" |
| 801 | for script in "${S}"/scripts/mysql* ; do |
926 | for script in "${S}"/scripts/mysql* ; do |
| 802 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
927 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 803 | done |
928 | done |
| 804 | |
929 | |
| 805 | fi |
930 | fi |
| 806 | |
931 | |
| 807 | mysql_lib_symlinks "${D}" |
932 | mysql_lib_symlinks "${D}" |
| … | |
… | |
| 856 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
981 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 857 | elog "if this is a new install." |
982 | elog "if this is a new install." |
| 858 | einfo |
983 | einfo |
| 859 | fi |
984 | fi |
| 860 | |
985 | |
| 861 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
986 | if pbxt_applicable ; then |
| 862 | # TODO: explain it better |
987 | # TODO: explain it better |
| 863 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
988 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 864 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
989 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 865 | elog "if, after that, you cannot start the MySQL server," |
990 | elog "if, after that, you cannot start the MySQL server," |
| 866 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
991 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |