| 1 | # Copyright 1999-2007 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.113 2009/07/06 19:05:07 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 |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| 7 | # - Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
| 8 | # - Robin H. Johnson <robbat2@gentoo.org> |
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # 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 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
| 9 | |
17 | |
| 10 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 11 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
|
|
20 | |
|
|
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 |
| 12 | |
33 | |
| 13 | case "${EAPI:-0}" in |
34 | case "${EAPI:-0}" in |
| 14 | 2) |
35 | 2) |
| 15 | EXPORT_FUNCTIONS pkg_setup \ |
36 | EXPORT_FUNCTIONS pkg_setup \ |
| 16 | src_unpack src_prepare \ |
37 | src_unpack src_prepare \ |
| … | |
… | |
| 18 | src_install \ |
39 | src_install \ |
| 19 | pkg_preinst pkg_postinst \ |
40 | pkg_preinst pkg_postinst \ |
| 20 | pkg_config pkg_postrm |
41 | pkg_config pkg_postrm |
| 21 | IUSE_DEFAULT_ON='+' |
42 | IUSE_DEFAULT_ON='+' |
| 22 | ;; |
43 | ;; |
| 23 | *) |
44 | 0 | 1) |
| 24 | EXPORT_FUNCTIONS pkg_setup \ |
45 | EXPORT_FUNCTIONS pkg_setup \ |
| 25 | src_unpack \ |
46 | src_unpack \ |
| 26 | src_compile \ |
47 | src_compile \ |
| 27 | src_install \ |
48 | src_install \ |
| 28 | pkg_preinst pkg_postinst \ |
49 | pkg_preinst pkg_postinst \ |
| 29 | pkg_config pkg_postrm |
50 | pkg_config pkg_postrm |
| 30 | ;; |
51 | ;; |
|
|
52 | *) |
|
|
53 | die "Unsupported EAPI: ${EAPI}" ;; |
| 31 | esac |
54 | esac |
| 32 | |
55 | |
| 33 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 34 | |
57 | # @DESCRIPTION: |
| 35 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
| 36 | # and we will run a mysql server during test phase |
|
|
| 37 | S="${WORKDIR}/mysql" |
|
|
| 38 | |
|
|
| 39 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
| 40 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
| 41 | EGIT_PROJECT=mysql-extras |
|
|
| 42 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
| 43 | inherit git |
|
|
| 44 | fi |
|
|
| 45 | |
|
|
| 46 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
| 47 | # 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] |
| 48 | # 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 |
| 49 | # depend on this variable. |
61 | # depend on this variable. |
| 50 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
62 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
| … | |
… | |
| 59 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 60 | done |
72 | done |
| 61 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
73 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 62 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 63 | |
75 | |
|
|
76 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
79 | # and 0 (no). |
| 64 | # Community features are available in mysql-community |
80 | # Community features are available in mysql-community |
| 65 | # AND in the re-merged mysql-5.0.82 and newer |
81 | # AND in the re-merged mysql-5.0.82 and newer |
| 66 | if [ "${PN}" == "mysql-community" ]; then |
82 | if [ "${PN}" == "mysql-community" ]; then |
| 67 | MYSQL_COMMUNITY_FEATURES=1 |
83 | MYSQL_COMMUNITY_FEATURES=1 |
| 68 | 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 |
| 69 | MYSQL_COMMUNITY_FEATURES=1 |
85 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
87 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
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 |
|
|
93 | MYSQL_COMMUNITY_FEATURES=1 |
| 70 | else |
94 | else |
| 71 | MYSQL_COMMUNITY_FEATURES=0 |
95 | MYSQL_COMMUNITY_FEATURES=0 |
| 72 | 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}" |
| 73 | |
107 | |
| 74 | # Be warned, *DEPEND are version-dependant |
108 | # Be warned, *DEPEND are version-dependant |
| 75 | # These are used for both runtime and compiletime |
109 | # These are used for both runtime and compiletime |
| 76 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
110 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 77 | userland_GNU? ( sys-process/procps ) |
111 | userland_GNU? ( sys-process/procps ) |
| … | |
… | |
| 104 | # For other stuff to bring us in |
138 | # For other stuff to bring us in |
| 105 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 106 | |
140 | |
| 107 | # Work out the default SERVER_URI correctly |
141 | # Work out the default SERVER_URI correctly |
| 108 | if [ -z "${SERVER_URI}" ]; then |
142 | if [ -z "${SERVER_URI}" ]; then |
|
|
143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
| 109 | # The community build is on the mirrors |
144 | # The community build is on the mirrors |
| 110 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 111 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
| 112 | # The (old) enterprise source is on the primary site only |
147 | # The (old) enterprise source is on the primary site only |
| 113 | elif [ "${PN}" == "mysql" ]; then |
148 | elif [ "${PN}" == "mysql" ]; then |
| 114 | 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" |
| 115 | fi |
150 | fi |
| 116 | fi |
151 | fi |
| 117 | |
152 | |
| 118 | # Define correct SRC_URIs |
153 | # Define correct SRC_URIs |
| 119 | SRC_URI="${SERVER_URI}" |
154 | SRC_URI="${SERVER_URI}" |
| 120 | |
155 | |
| 121 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
156 | # Gentoo patches to MySQL |
|
|
157 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
158 | && SRC_URI="${SRC_URI} |
| 122 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
159 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 123 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 124 | mysql_version_is_at_least "5.1.12" \ |
161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 125 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 126 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
| 127 | |
162 | |
| 128 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 129 | HOMEPAGE="http://www.mysql.com/" |
164 | HOMEPAGE="http://www.mysql.com/" |
| 130 | LICENSE="GPL-2" |
165 | LICENSE="GPL-2" |
| 131 | SLOT="0" |
166 | SLOT="0" |
| 132 | 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" |
| 133 | |
168 | |
| 134 | mysql_version_is_at_least "4.1" \ |
169 | mysql_version_is_at_least "4.1" \ |
| 135 | && IUSE="${IUSE} latin1" |
170 | && IUSE="${IUSE} latin1" |
| 136 | |
171 | |
| 137 | mysql_version_is_at_least "4.1.3" \ |
172 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 144 | && IUSE="${IUSE} max-idx-128" |
179 | && IUSE="${IUSE} max-idx-128" |
| 145 | |
180 | |
| 146 | mysql_version_is_at_least "5.1" \ |
181 | mysql_version_is_at_least "5.1" \ |
| 147 | || IUSE="${IUSE} berkdb" |
182 | || IUSE="${IUSE} berkdb" |
| 148 | |
183 | |
| 149 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 150 | && IUSE="${IUSE} pbxt" |
|
|
| 151 | |
|
|
| 152 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 153 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
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" |
| 154 | |
204 | |
| 155 | # |
205 | # |
| 156 | # HELPER FUNCTIONS: |
206 | # HELPER FUNCTIONS: |
| 157 | # |
207 | # |
| 158 | |
208 | |
|
|
209 | # @FUNCTION: mysql_disable_test |
|
|
210 | # @DESCRIPTION: |
|
|
211 | # Helper function to disable specific tests. |
| 159 | mysql_disable_test() { |
212 | mysql_disable_test() { |
|
|
213 | local rawtestname testname testsuite reason mysql_disable_file |
| 160 | local testname="${1}" ; shift |
214 | rawtestname="${1}" ; shift |
| 161 | local reason="${@}" |
215 | reason="${@}" |
|
|
216 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
217 | |
|
|
218 | testsuite="${rawtestname/.*}" |
|
|
219 | testname="${rawtestname/*.}" |
| 162 | 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}" |
| 163 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
222 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 164 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
| 165 | } |
|
|
| 166 | |
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 |
|
|
249 | } |
|
|
250 | |
|
|
251 | # @FUNCTION: mysql_init_vars |
|
|
252 | # @DESCRIPTION: |
| 167 | # void mysql_init_vars() |
253 | # void mysql_init_vars() |
| 168 | # |
|
|
| 169 | # Initialize global variables |
254 | # Initialize global variables |
| 170 | # 2005-11-19 <vivo@gentoo.org> |
255 | # 2005-11-19 <vivo@gentoo.org> |
| 171 | |
|
|
| 172 | mysql_init_vars() { |
256 | mysql_init_vars() { |
| 173 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
257 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 174 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
258 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 175 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
259 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 176 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
260 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| … | |
… | |
| 321 | if use ssl ; then |
405 | if use ssl ; then |
| 322 | 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" |
| 323 | fi |
407 | fi |
| 324 | |
408 | |
| 325 | if mysql_version_is_at_least "5.1.11" ; then |
409 | if mysql_version_is_at_least "5.1.11" ; then |
| 326 | myconf="${myconf} $(use_with ssl)" |
410 | myconf="${myconf} $(use_with ssl /usr)" |
| 327 | else |
411 | else |
| 328 | myconf="${myconf} $(use_with ssl openssl)" |
412 | myconf="${myconf} $(use_with ssl openssl)" |
| 329 | fi |
413 | fi |
| 330 | |
414 | |
| 331 | if mysql_version_is_at_least "5.0.60" ; then |
415 | if mysql_version_is_at_least "5.0.60" ; then |
| … | |
… | |
| 394 | # readline.h instead of history.h |
478 | # readline.h instead of history.h |
| 395 | myconf="${myconf} $(use_with ssl)" |
479 | myconf="${myconf} $(use_with ssl)" |
| 396 | myconf="${myconf} --enable-assembler" |
480 | myconf="${myconf} --enable-assembler" |
| 397 | myconf="${myconf} --with-geometry" |
481 | myconf="${myconf} --with-geometry" |
| 398 | myconf="${myconf} --with-readline" |
482 | myconf="${myconf} --with-readline" |
| 399 | myconf="${myconf} --with-row-based-replication" |
|
|
| 400 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
483 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 401 | myconf="${myconf} --without-pstack" |
484 | myconf="${myconf} --without-pstack" |
| 402 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
485 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 403 | |
486 | |
| 404 | # 5.1 introduces a new way to manage storage engines (plugins) |
487 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 405 | # like configuration=none |
488 | # like configuration=none |
| 406 | local plugins="csv,myisam,myisammrg,heap" |
489 | local plugins="csv,myisam,myisammrg,heap" |
| 407 | if use extraengine ; then |
490 | if use extraengine ; then |
| 408 | # 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 |
| 409 | plugins="${plugins},archive,blackhole,example,federated,partition" |
494 | plugins="${plugins},archive,blackhole,federated,partition" |
| 410 | |
495 | |
| 411 | 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" |
| 412 | 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" |
| 413 | fi |
498 | fi |
| 414 | |
499 | |
| 415 | # Upstream specifically requests that InnoDB always be built. |
500 | # Upstream specifically requests that InnoDB always be built: |
| 416 | 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 |
| 417 | |
506 | |
| 418 | # like configuration=max-no-ndb |
507 | # like configuration=max-no-ndb |
| 419 | if use cluster ; then |
508 | if use cluster ; then |
| 420 | plugins="${plugins},ndbcluster" |
509 | plugins="${plugins},ndbcluster" |
| 421 | myconf="${myconf} --with-ndb-binlog" |
510 | myconf="${myconf} --with-ndb-binlog" |
| 422 | fi |
511 | fi |
| 423 | |
512 | |
| 424 | if mysql_version_is_at_least "5.2" ; then |
|
|
| 425 | plugins="${plugins},falcon" |
|
|
| 426 | fi |
|
|
| 427 | |
|
|
| 428 | 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 $? |
| 429 | } |
528 | } |
| 430 | |
529 | |
| 431 | pbxt_src_configure() { |
530 | pbxt_src_configure() { |
| 432 | mysql_init_vars |
531 | mysql_init_vars |
| 433 | |
532 | |
| … | |
… | |
| 435 | |
534 | |
| 436 | einfo "Reconfiguring dir '${PWD}'" |
535 | einfo "Reconfiguring dir '${PWD}'" |
| 437 | AT_GNUCONF_UPDATE="yes" eautoreconf |
536 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 438 | |
537 | |
| 439 | local myconf="" |
538 | local myconf="" |
| 440 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
539 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
| 441 | use debug && myconf="${myconf} --with-debug=full" |
540 | use debug && myconf="${myconf} --with-debug=full" |
| 442 | # TODO: is it safe/needed to use econf here ? |
541 | # TODO: is it safe/needed to use econf here ? |
| 443 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
542 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
| 444 | } |
543 | } |
| 445 | |
544 | |
| … | |
… | |
| 455 | # TODO: modify test suite for PBXT |
554 | # TODO: modify test suite for PBXT |
| 456 | } |
555 | } |
| 457 | |
556 | |
| 458 | pbxt_src_install() { |
557 | pbxt_src_install() { |
| 459 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
558 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 460 | make install || die "Failed to install PBXT" |
559 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 461 | popd |
560 | popd |
| 462 | } |
561 | } |
| 463 | |
562 | |
| 464 | # |
563 | # |
| 465 | # EBUILD FUNCTIONS |
564 | # EBUILD FUNCTIONS |
| 466 | # |
565 | # |
|
|
566 | # @FUNCTION: mysql_pkg_setup |
|
|
567 | # @DESCRIPTION: |
|
|
568 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
569 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
570 | # check for conflicting use flags |
|
|
571 | # create new user and group for mysql |
|
|
572 | # warn about deprecated features |
| 467 | mysql_pkg_setup() { |
573 | mysql_pkg_setup() { |
| 468 | if hasq test ${FEATURES} ; then |
574 | if hasq test ${FEATURES} ; then |
| 469 | if ! use minimal ; then |
575 | if ! use minimal ; then |
| 470 | if [[ $UID -eq 0 ]]; then |
576 | if [[ $UID -eq 0 ]]; then |
| 471 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
577 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| … | |
… | |
| 492 | && use minimal ; then |
598 | && use minimal ; then |
| 493 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
599 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 494 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
600 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 495 | fi |
601 | fi |
| 496 | |
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 | |
| 497 | # This should come after all of the die statements |
611 | # This should come after all of the die statements |
| 498 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
612 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 499 | 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" |
| 500 | |
614 | |
| 501 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
615 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 502 | && use berkdb \ |
616 | && use berkdb \ |
| 503 | && 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!" |
| 504 | } |
|
|
| 505 | |
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 |
|
|
628 | } |
|
|
629 | |
|
|
630 | # @FUNCTION: mysql_src_unpack |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 506 | mysql_src_unpack() { |
633 | mysql_src_unpack() { |
| 507 | # Initialize the proper variables first |
634 | # Initialize the proper variables first |
| 508 | mysql_init_vars |
635 | mysql_init_vars |
| 509 | |
636 | |
| 510 | unpack ${A} |
637 | unpack ${A} |
| 511 | # Grab the patches |
638 | # Grab the patches |
| 512 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
639 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 513 | |
640 | |
| 514 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
641 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
| 515 | |
642 | |
| 516 | # Be backwards compatible for now |
643 | # Be backwards compatible for now |
| 517 | if [[ $EAPI != 2 ]]; then |
644 | case ${EAPI:-0} in |
| 518 | mysql_src_prepare |
645 | 2) : ;; |
| 519 | fi |
646 | 0 | 1) mysql_src_prepare ;; |
|
|
647 | esac |
| 520 | } |
648 | } |
| 521 | |
649 | |
|
|
650 | # @FUNCTION: mysql_src_prepare |
|
|
651 | # @DESCRIPTION: |
|
|
652 | # Apply patches to the source code and remove unneeded bundled libs. |
| 522 | mysql_src_prepare() { |
653 | mysql_src_prepare() { |
| 523 | cd "${S}" |
654 | cd "${S}" |
| 524 | |
655 | |
| 525 | # Apply the patches for this MySQL version |
656 | # Apply the patches for this MySQL version |
| 526 | EPATCH_SUFFIX="patch" |
657 | EPATCH_SUFFIX="patch" |
| … | |
… | |
| 530 | # Now link in right patches |
661 | # Now link in right patches |
| 531 | mysql_mv_patches |
662 | mysql_mv_patches |
| 532 | # And apply |
663 | # And apply |
| 533 | epatch |
664 | epatch |
| 534 | |
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 | |
| 535 | # Additional checks, remove bundled zlib |
670 | # Additional checks, remove bundled zlib |
| 536 | rm -f "${S}/zlib/"*.[ch] |
671 | rm -f "${S}/zlib/"*.[ch] |
| 537 | 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" |
| 538 | rm -f "scripts/mysqlbug" |
673 | rm -f "scripts/mysqlbug" |
| 539 | |
674 | |
| … | |
… | |
| 541 | find . -name 'Makefile.am' \ |
676 | find . -name 'Makefile.am' \ |
| 542 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
677 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 543 | |
678 | |
| 544 | if mysql_version_is_at_least "4.1" ; then |
679 | if mysql_version_is_at_least "4.1" ; then |
| 545 | # 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" |
| 546 | find . -name Makefile \ |
682 | find . -name Makefile \ |
| 547 | -o -name Makefile.in \ |
683 | -o -name Makefile.in \ |
| 548 | -o -name configure \ |
684 | -o -name configure \ |
| 549 | -exec rm -f {} \; |
685 | -exec rm -f {} \; |
| 550 | rm -f "ltmain.sh" |
686 | rm -f "ltmain.sh" |
| 551 | rm -f "scripts/mysqlbug" |
687 | rm -f "scripts/mysqlbug" |
| 552 | fi |
688 | fi |
| 553 | |
689 | |
| 554 | local rebuilddirlist d |
690 | local rebuilddirlist d |
| 555 | |
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 | |
| 556 | if mysql_version_is_at_least "5.1.12" ; then |
705 | if mysql_version_is_at_least "5.1.12" ; then |
| 557 | rebuilddirlist="." |
706 | rebuilddirlist="." |
|
|
707 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
708 | #einfo "Updating innobase cmake" |
| 558 | # TODO: check this with a cmake expert |
709 | ## TODO: check this with a cmake expert |
| 559 | cmake \ |
710 | #cmake \ |
| 560 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
711 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 561 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
712 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 562 | "storage/innobase" |
713 | # "storage/innobase" |
| 563 | else |
714 | else |
| 564 | rebuilddirlist=". innobase" |
715 | rebuilddirlist=". innobase" |
| 565 | fi |
716 | fi |
| 566 | |
717 | |
| 567 | for d in ${rebuilddirlist} ; do |
718 | for d in ${rebuilddirlist} ; do |
| … | |
… | |
| 571 | popd &>/dev/null |
722 | popd &>/dev/null |
| 572 | done |
723 | done |
| 573 | |
724 | |
| 574 | 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" \ |
| 575 | && use berkdb ; then |
726 | && use berkdb ; then |
|
|
727 | einfo "Fixing up berkdb buildsystem" |
| 576 | [[ -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" |
| 577 | 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" \ |
| 578 | || die "Could not copy libtool.m4 to bdb/dist/" |
730 | || die "Could not copy libtool.m4 to bdb/dist/" |
| 579 | #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. |
| 580 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
732 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
| … | |
… | |
| 588 | || die "Failed bdb reconfigure" |
740 | || die "Failed bdb reconfigure" |
| 589 | popd &>/dev/null |
741 | popd &>/dev/null |
| 590 | fi |
742 | fi |
| 591 | } |
743 | } |
| 592 | |
744 | |
|
|
745 | # @FUNCTION: mysql_src_configure |
|
|
746 | # @DESCRIPTION: |
|
|
747 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 593 | mysql_src_configure() { |
748 | mysql_src_configure() { |
| 594 | # Make sure the vars are correctly initialized |
749 | # Make sure the vars are correctly initialized |
| 595 | mysql_init_vars |
750 | mysql_init_vars |
| 596 | |
751 | |
| 597 | # $myconf is modified by the configure_* functions |
752 | # $myconf is modified by the configure_* functions |
| … | |
… | |
| 623 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
778 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 624 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
779 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 625 | mysql_version_is_at_least "5.0" \ |
780 | mysql_version_is_at_least "5.0" \ |
| 626 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
781 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 627 | export CXXFLAGS |
782 | export CXXFLAGS |
|
|
783 | |
|
|
784 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
785 | append-flags -fno-strict-aliasing |
| 628 | |
786 | |
| 629 | econf \ |
787 | econf \ |
| 630 | --libexecdir="/usr/sbin" \ |
788 | --libexecdir="/usr/sbin" \ |
| 631 | --sysconfdir="${MY_SYSCONFDIR}" \ |
789 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 632 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
790 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 644 | find . -type f -name Makefile -print0 \ |
802 | find . -type f -name Makefile -print0 \ |
| 645 | | xargs -0 -n100 sed -i \ |
803 | | xargs -0 -n100 sed -i \ |
| 646 | -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)|' |
| 647 | |
805 | |
| 648 | if [[ $EAPI == 2 ]]; then |
806 | if [[ $EAPI == 2 ]]; then |
| 649 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
807 | pbxt_applicable && pbxt_src_configure |
| 650 | fi |
808 | fi |
| 651 | } |
809 | } |
| 652 | |
810 | |
|
|
811 | # @FUNCTION: mysql_src_compile |
|
|
812 | # @DESCRIPTION: |
|
|
813 | # Compile the mysql code. |
| 653 | mysql_src_compile() { |
814 | mysql_src_compile() { |
| 654 | # Be backwards compatible for now |
815 | # Be backwards compatible for now |
| 655 | if [[ $EAPI != 2 ]]; then |
816 | case ${EAPI:-0} in |
| 656 | mysql_src_configure |
817 | 2) : ;; |
| 657 | fi |
818 | 0 | 1) mysql_src_configure ;; |
|
|
819 | esac |
| 658 | |
820 | |
| 659 | emake || die "emake failed" |
821 | emake || die "emake failed" |
| 660 | |
822 | |
| 661 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
823 | pbxt_applicable && pbxt_src_compile |
| 662 | } |
824 | } |
| 663 | |
825 | |
|
|
826 | # @FUNCTION: mysql_src_install |
|
|
827 | # @DESCRIPTION: |
|
|
828 | # Install mysql. |
| 664 | mysql_src_install() { |
829 | mysql_src_install() { |
| 665 | # Make sure the vars are correctly initialized |
830 | # Make sure the vars are correctly initialized |
| 666 | mysql_init_vars |
831 | mysql_init_vars |
| 667 | |
832 | |
| 668 | 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" |
| 669 | |
838 | |
| 670 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
839 | pbxt_applicable && pbxt_src_install |
| 671 | |
840 | |
| 672 | # Convenience links |
841 | # Convenience links |
| 673 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
842 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 674 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
843 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 675 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
844 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 679 | einfo "Removing duplicate /usr/share/mysql files" |
848 | einfo "Removing duplicate /usr/share/mysql files" |
| 680 | rm -Rf "${D}/usr/share/info" |
849 | rm -Rf "${D}/usr/share/info" |
| 681 | for removeme in "mysql-log-rotate" mysql.server* \ |
850 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 682 | binary-configure* my-*.cnf mi_test_all* |
851 | binary-configure* my-*.cnf mi_test_all* |
| 683 | do |
852 | do |
| 684 | rm -f "${D}"/usr/share/mysql/${removeme} |
853 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 685 | done |
854 | done |
| 686 | |
855 | |
| 687 | # Clean up stuff for a minimal build |
856 | # Clean up stuff for a minimal build |
| 688 | if use minimal ; then |
857 | if use minimal ; then |
| 689 | einfo "Remove all extra content for minimal build" |
858 | einfo "Remove all extra content for minimal build" |
| 690 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
859 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 691 | 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} |
| 692 | rm -f "${D}/usr/sbin/mysqld" |
861 | rm -f "${D}/usr/sbin/mysqld" |
| 693 | 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 |
| 694 | fi |
870 | fi |
| 695 | |
871 | |
| 696 | # Configuration stuff |
872 | # Configuration stuff |
| 697 | if mysql_version_is_at_least "4.1" ; then |
873 | if mysql_version_is_at_least "4.1" ; then |
| 698 | mysql_mycnf_version="4.1" |
874 | mysql_mycnf_version="4.1" |
| … | |
… | |
| 729 | done |
905 | done |
| 730 | fi |
906 | fi |
| 731 | |
907 | |
| 732 | # Docs |
908 | # Docs |
| 733 | einfo "Installing docs" |
909 | einfo "Installing docs" |
| 734 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
910 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 735 | doinfo "${S}"/Docs/mysql.info |
911 | doinfo "${S}"/Docs/mysql.info |
| 736 | |
912 | |
| 737 | # Minimal builds don't have the MySQL server |
913 | # Minimal builds don't have the MySQL server |
| 738 | if ! use minimal ; then |
914 | if ! use minimal ; then |
| 739 | einfo "Including support files and sample configurations" |
915 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 741 | for script in \ |
917 | for script in \ |
| 742 | "${S}"/support-files/my-*.cnf \ |
918 | "${S}"/support-files/my-*.cnf \ |
| 743 | "${S}"/support-files/magic \ |
919 | "${S}"/support-files/magic \ |
| 744 | "${S}"/support-files/ndb-config-2-node.ini |
920 | "${S}"/support-files/ndb-config-2-node.ini |
| 745 | do |
921 | do |
| 746 | dodoc "${script}" |
922 | [[ -f "$script" ]] && dodoc "${script}" |
| 747 | done |
923 | done |
| 748 | |
924 | |
| 749 | docinto "scripts" |
925 | docinto "scripts" |
| 750 | for script in "${S}"/scripts/mysql* ; do |
926 | for script in "${S}"/scripts/mysql* ; do |
| 751 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
927 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 752 | done |
928 | done |
| 753 | |
929 | |
| 754 | fi |
930 | fi |
| 755 | |
931 | |
| 756 | mysql_lib_symlinks "${D}" |
932 | mysql_lib_symlinks "${D}" |
| 757 | } |
933 | } |
| 758 | |
934 | |
|
|
935 | # @FUNCTION: mysql_pkg_preinst |
|
|
936 | # @DESCRIPTION: |
|
|
937 | # Create the user and groups for mysql - die if that fails. |
| 759 | mysql_pkg_preinst() { |
938 | mysql_pkg_preinst() { |
| 760 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
939 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 761 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
940 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 762 | } |
941 | } |
| 763 | |
942 | |
|
|
943 | # @FUNCTION: mysql_pkg_postinst |
|
|
944 | # @DESCRIPTION: |
|
|
945 | # Run post-installation tasks: |
|
|
946 | # create the dir for logfiles if non-existant |
|
|
947 | # touch the logfiles and secure them |
|
|
948 | # install scripts |
|
|
949 | # issue required steps for optional features |
|
|
950 | # issue deprecation warnings |
| 764 | mysql_pkg_postinst() { |
951 | mysql_pkg_postinst() { |
| 765 | # Make sure the vars are correctly initialized |
952 | # Make sure the vars are correctly initialized |
| 766 | mysql_init_vars |
953 | mysql_init_vars |
| 767 | |
954 | |
| 768 | # Check FEATURES="collision-protect" before removing this |
955 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 794 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
981 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 795 | elog "if this is a new install." |
982 | elog "if this is a new install." |
| 796 | einfo |
983 | einfo |
| 797 | fi |
984 | fi |
| 798 | |
985 | |
| 799 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
986 | if pbxt_applicable ; then |
| 800 | # TODO: explain it better |
987 | # TODO: explain it better |
| 801 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
988 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 802 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
989 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 803 | elog "if, after that, you cannot start the MySQL server," |
990 | elog "if, after that, you cannot start the MySQL server," |
| 804 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
991 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| … | |
… | |
| 814 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
1001 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 815 | && use berkdb \ |
1002 | && use berkdb \ |
| 816 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
1003 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 817 | } |
1004 | } |
| 818 | |
1005 | |
|
|
1006 | # @FUNCTION: mysql_pkg_config |
|
|
1007 | # @DESCRIPTION: |
|
|
1008 | # Configure mysql environment. |
| 819 | mysql_pkg_config() { |
1009 | mysql_pkg_config() { |
| 820 | local old_MY_DATADIR="${MY_DATADIR}" |
1010 | local old_MY_DATADIR="${MY_DATADIR}" |
| 821 | |
1011 | |
| 822 | # Make sure the vars are correctly initialized |
1012 | # Make sure the vars are correctly initialized |
| 823 | mysql_init_vars |
1013 | mysql_init_vars |
| … | |
… | |
| 846 | if [[ -d "${MY_DATADIR_s}" ]]; then |
1036 | if [[ -d "${MY_DATADIR_s}" ]]; then |
| 847 | ewarn "Attempting to use ${MY_DATADIR_s}" |
1037 | ewarn "Attempting to use ${MY_DATADIR_s}" |
| 848 | else |
1038 | else |
| 849 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
1039 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
| 850 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
1040 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
| 851 | fi |
1041 | fi |
| 852 | fi |
1042 | fi |
| 853 | fi |
1043 | fi |
| 854 | |
1044 | |
| 855 | local pwd1="a" |
1045 | local pwd1="a" |
| 856 | local pwd2="b" |
1046 | local pwd2="b" |
| … | |
… | |
| 958 | einfo "Stopping the server ..." |
1148 | einfo "Stopping the server ..." |
| 959 | wait %1 |
1149 | wait %1 |
| 960 | einfo "Done" |
1150 | einfo "Done" |
| 961 | } |
1151 | } |
| 962 | |
1152 | |
|
|
1153 | # @FUNCTION: mysql_pkg_postrm |
|
|
1154 | # @DESCRIPTION: |
|
|
1155 | # Remove mysql symlinks. |
| 963 | mysql_pkg_postrm() { |
1156 | mysql_pkg_postrm() { |
| 964 | : # mysql_lib_symlinks "${D}" |
1157 | : # mysql_lib_symlinks "${D}" |
| 965 | } |
1158 | } |