| 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.120 2009/12/09 18:46:53 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.142 2010/03/24 20:37:54 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 | |
56 | |
| 49 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
57 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
| 50 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
58 | # @DESCRIPTION: |
| 51 | EGIT_PROJECT=mysql-extras |
59 | # Upstream MySQL considers the first two parts of the version number to be the |
| 52 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
60 | # major version. Upgrades that change major version should always run |
| 53 | inherit git |
61 | # mysql_upgrade. |
| 54 | fi |
62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
| 55 | |
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] |
| … | |
… | |
| 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 |
| 88 | elif [ "${PV#5.4}" != "${PV}" ]; then |
96 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
|
|
97 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
98 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
99 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
100 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
| 89 | MYSQL_COMMUNITY_FEATURES=1 |
101 | MYSQL_COMMUNITY_FEATURES=1 |
| 90 | else |
102 | else |
| 91 | MYSQL_COMMUNITY_FEATURES=0 |
103 | MYSQL_COMMUNITY_FEATURES=0 |
| 92 | fi |
104 | fi |
| 93 | |
105 | |
| … | |
… | |
| 108 | >=sys-apps/sed-4 |
120 | >=sys-apps/sed-4 |
| 109 | >=sys-apps/texinfo-4.7-r1 |
121 | >=sys-apps/texinfo-4.7-r1 |
| 110 | >=sys-libs/readline-4.1 |
122 | >=sys-libs/readline-4.1 |
| 111 | >=sys-libs/zlib-1.2.3" |
123 | >=sys-libs/zlib-1.2.3" |
| 112 | |
124 | |
|
|
125 | [[ "${PN}" == "mariadb" ]] \ |
|
|
126 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
127 | |
| 113 | # 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 |
| 114 | for i in "" "-community" ; do |
129 | for i in "mysql" "mysql-community" "mariadb" ; do |
| 115 | [[ "${i}" == ${PN#mysql} ]] || |
130 | [[ "${i}" == ${PN} ]] || |
| 116 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
131 | DEPEND="${DEPEND} !dev-db/${i}" |
| 117 | done |
132 | done |
| 118 | |
133 | |
| 119 | RDEPEND="${DEPEND} |
134 | RDEPEND="${DEPEND} |
| 120 | !minimal? ( dev-db/mysql-init-scripts ) |
135 | !minimal? ( dev-db/mysql-init-scripts ) |
| 121 | selinux? ( sec-policy/selinux-mysql )" |
136 | selinux? ( sec-policy/selinux-mysql )" |
| … | |
… | |
| 130 | |
145 | |
| 131 | # 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 |
| 132 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
147 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 133 | |
148 | |
| 134 | # For other stuff to bring us in |
149 | # For other stuff to bring us in |
| 135 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
150 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
| 136 | |
151 | |
| 137 | # Work out the default SERVER_URI correctly |
152 | # Work out the default SERVER_URI correctly |
| 138 | if [ -z "${SERVER_URI}" ]; then |
153 | if [ -z "${SERVER_URI}" ]; then |
|
|
154 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
155 | if [ "${PN}" == "mariadb" ]; then |
|
|
156 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
157 | SERVER_URI="http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/mariadb-${MARIA_FULL_PV}.tar.gz" |
| 139 | # The community build is on the mirrors |
158 | # The community build is on the mirrors |
| 140 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
159 | elif [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 141 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
160 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
| 142 | # The (old) enterprise source is on the primary site only |
161 | # The (old) enterprise source is on the primary site only |
| 143 | elif [ "${PN}" == "mysql" ]; then |
162 | elif [ "${PN}" == "mysql" ]; then |
| 144 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
163 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
| 145 | fi |
164 | fi |
| 146 | fi |
165 | fi |
| 147 | |
166 | |
| 148 | # Define correct SRC_URIs |
167 | # Define correct SRC_URIs |
| 149 | SRC_URI="${SERVER_URI}" |
168 | SRC_URI="${SERVER_URI}" |
| 150 | |
169 | |
| 151 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
170 | # Gentoo patches to MySQL |
|
|
171 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
172 | && SRC_URI="${SRC_URI} |
| 152 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
173 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 153 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
174 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 154 | PBXT_SRC_URI="mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz" |
175 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 155 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 156 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
| 157 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URIPBXT_SRC_URI} )" |
|
|
| 158 | |
|
|
| 159 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
| 160 | XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/percona-xtradb-${XTRADB_VER}.tar.gz" |
|
|
| 161 | mysql_version_is_at_least "5.1.26" \ |
|
|
| 162 | && [[ -n ${XTRADB_VER} && -n ${PERCONA_VER} ]] \ |
|
|
| 163 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" |
|
|
| 164 | |
176 | |
| 165 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
177 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 166 | HOMEPAGE="http://www.mysql.com/" |
178 | HOMEPAGE="http://www.mysql.com/" |
|
|
179 | if [[ "${PN}" == "mariadb" ]]; then |
|
|
180 | HOMEPAGE="http://askmonty.org/" |
|
|
181 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
182 | fi |
|
|
183 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
184 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
|
|
185 | fi |
| 167 | LICENSE="GPL-2" |
186 | LICENSE="GPL-2" |
| 168 | SLOT="0" |
187 | SLOT="0" |
| 169 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
188 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 170 | |
189 | |
| 171 | mysql_version_is_at_least "4.1" \ |
190 | mysql_version_is_at_least "4.1" \ |
| 172 | && IUSE="${IUSE} latin1" |
191 | && IUSE="${IUSE} latin1" |
| 173 | |
192 | |
| 174 | mysql_version_is_at_least "4.1.3" \ |
193 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 181 | && IUSE="${IUSE} max-idx-128" |
200 | && IUSE="${IUSE} max-idx-128" |
| 182 | |
201 | |
| 183 | mysql_version_is_at_least "5.1" \ |
202 | mysql_version_is_at_least "5.1" \ |
| 184 | || IUSE="${IUSE} berkdb" |
203 | || IUSE="${IUSE} berkdb" |
| 185 | |
204 | |
| 186 | mysql_version_is_at_least "5.1.12" \ |
|
|
| 187 | && IUSE="${IUSE} pbxt" |
|
|
| 188 | |
|
|
| 189 | mysql_version_is_at_least "5.1.26" \ |
|
|
| 190 | && IUSE="${IUSE} xtradb" |
|
|
| 191 | |
|
|
| 192 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
205 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 193 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
206 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
207 | |
|
|
208 | [[ "${PN}" == "mariadb" ]] \ |
|
|
209 | && IUSE="${IUSE} libevent" |
|
|
210 | |
|
|
211 | # MariaDB has integrated PBXT |
|
|
212 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
213 | # PBXT was only introduced after 5.1.12 |
|
|
214 | pbxt_patch_available() { |
|
|
215 | [[ "${PN}" != "mariadb" ]] \ |
|
|
216 | && mysql_version_is_at_least "5.1.12" \ |
|
|
217 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
218 | return $? |
|
|
219 | } |
|
|
220 | |
|
|
221 | pbxt_available() { |
|
|
222 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
223 | return $? |
|
|
224 | } |
|
|
225 | |
|
|
226 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
227 | # MariaDB has integrated XtraDB |
|
|
228 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
229 | # XTRADB was only introduced after 5.1.26 |
|
|
230 | xtradb_patch_available() { |
|
|
231 | [[ "${PN}" != "mariadb" ]] \ |
|
|
232 | && mysql_version_is_at_least "5.1.26" \ |
|
|
233 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
234 | return $? |
|
|
235 | } |
|
|
236 | |
|
|
237 | pbxt_patch_available \ |
|
|
238 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
239 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
240 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
241 | |
|
|
242 | pbxt_available \ |
|
|
243 | && IUSE="${IUSE} pbxt" |
|
|
244 | |
|
|
245 | xtradb_patch_available \ |
|
|
246 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
247 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
248 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
249 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
250 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
|
|
251 | && IUSE="${IUSE} xtradb" |
| 194 | |
252 | |
| 195 | # |
253 | # |
| 196 | # HELPER FUNCTIONS: |
254 | # HELPER FUNCTIONS: |
| 197 | # |
255 | # |
| 198 | |
256 | |
| 199 | # @FUNCTION: mysql_disable_test |
257 | # @FUNCTION: mysql_disable_test |
| 200 | # @DESCRIPTION: |
258 | # @DESCRIPTION: |
| 201 | # Helper function to disable specific tests. |
259 | # Helper function to disable specific tests. |
| 202 | mysql_disable_test() { |
260 | mysql_disable_test() { |
|
|
261 | local rawtestname testname testsuite reason mysql_disable_file |
| 203 | local testname="${1}" ; shift |
262 | rawtestname="${1}" ; shift |
| 204 | local reason="${@}" |
263 | reason="${@}" |
|
|
264 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
265 | |
|
|
266 | testsuite="${rawtestname/.*}" |
|
|
267 | testname="${rawtestname/*.}" |
| 205 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
268 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
269 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
| 206 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
270 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 207 | ewarn "test '${testname}' disabled: '${reason}'" |
271 | |
|
|
272 | # ${S}/mysql-tests/t/disabled.def |
|
|
273 | # |
|
|
274 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
275 | # |
|
|
276 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
277 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
278 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
279 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
280 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
281 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
282 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
283 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
284 | if [ -n "${testsuite}" ]; then |
|
|
285 | for mysql_disable_file in \ |
|
|
286 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
287 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
288 | FAILED ; do |
|
|
289 | [ -f "${mysql_disable_file}" ] && break |
|
|
290 | done |
|
|
291 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
292 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
293 | else |
|
|
294 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
295 | fi |
|
|
296 | fi |
| 208 | } |
297 | } |
| 209 | |
298 | |
| 210 | # @FUNCTION: mysql_init_vars |
299 | # @FUNCTION: mysql_init_vars |
| 211 | # @DESCRIPTION: |
300 | # @DESCRIPTION: |
| 212 | # void mysql_init_vars() |
301 | # void mysql_init_vars() |
| … | |
… | |
| 355 | myconf="${myconf} $(use_with perl bench)" |
444 | myconf="${myconf} $(use_with perl bench)" |
| 356 | myconf="${myconf} --enable-assembler" |
445 | myconf="${myconf} --enable-assembler" |
| 357 | myconf="${myconf} --with-extra-tools" |
446 | myconf="${myconf} --with-extra-tools" |
| 358 | myconf="${myconf} --with-innodb" |
447 | myconf="${myconf} --with-innodb" |
| 359 | myconf="${myconf} --without-readline" |
448 | myconf="${myconf} --without-readline" |
|
|
449 | myconf="${myconf} $(use_with ssl openssl)" |
| 360 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
450 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 361 | |
451 | |
| 362 | # --with-vio is not needed anymore, it's on by default and |
452 | # --with-vio is not needed anymore, it's on by default and |
| 363 | # has been removed from configure |
453 | # has been removed from configure |
|
|
454 | # Apply to 4.x and 5.0.[0-3] |
| 364 | if use ssl ; then |
455 | if use ssl ; then |
| 365 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
456 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 366 | fi |
|
|
| 367 | |
|
|
| 368 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
| 369 | myconf="${myconf} $(use_with ssl)" |
|
|
| 370 | else |
|
|
| 371 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
| 372 | fi |
457 | fi |
| 373 | |
458 | |
| 374 | if mysql_version_is_at_least "5.0.60" ; then |
459 | if mysql_version_is_at_least "5.0.60" ; then |
| 375 | if use berkdb ; then |
460 | if use berkdb ; then |
| 376 | elog "Berkeley DB support was disabled due to build failures" |
461 | elog "Berkeley DB support was disabled due to build failures" |
| … | |
… | |
| 433 | |
518 | |
| 434 | configure_51() { |
519 | configure_51() { |
| 435 | # TODO: !!!! readd --without-readline |
520 | # TODO: !!!! readd --without-readline |
| 436 | # the failure depend upon config/ac-macros/readline.m4 checking into |
521 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 437 | # readline.h instead of history.h |
522 | # readline.h instead of history.h |
| 438 | myconf="${myconf} $(use_with ssl)" |
523 | myconf="${myconf} $(use_with ssl ssl /usr)" |
| 439 | myconf="${myconf} --enable-assembler" |
524 | myconf="${myconf} --enable-assembler" |
| 440 | myconf="${myconf} --with-geometry" |
525 | myconf="${myconf} --with-geometry" |
| 441 | myconf="${myconf} --with-readline" |
526 | myconf="${myconf} --with-readline" |
| 442 | myconf="${myconf} --with-row-based-replication" |
|
|
| 443 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
527 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 444 | myconf="${myconf} --without-pstack" |
528 | myconf="${myconf} --without-pstack" |
| 445 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
529 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
530 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
531 | myconf="${myconf} $(use_enable community community-features)" |
|
|
532 | if use community; then |
|
|
533 | myconf="${myconf} $(use_enable profiling)" |
|
|
534 | else |
|
|
535 | myconf="${myconf} --disable-profiling" |
|
|
536 | fi |
|
|
537 | fi |
| 446 | |
538 | |
| 447 | # 5.1 introduces a new way to manage storage engines (plugins) |
539 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 448 | # like configuration=none |
540 | # like configuration=none |
|
|
541 | # This base set are required, and will always be statically built. |
| 449 | local plugins="csv,myisam,myisammrg,heap" |
542 | local plugins="csv,myisam,myisammrg,heap" |
| 450 | if use extraengine ; then |
543 | if use extraengine ; then |
| 451 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
544 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
545 | # not added yet: ibmdb2i |
|
|
546 | # Not supporting as examples: example,daemon_example,ftexample |
| 452 | plugins="${plugins},archive,blackhole,example,federated,partition" |
547 | plugins="${plugins},archive,blackhole,federated,partition" |
| 453 | |
548 | |
|
|
549 | if [[ "${PN}" != "mariadb" ]] ; then |
| 454 | elog "Before using the Federated storage engine, please be sure to read" |
550 | elog "Before using the Federated storage engine, please be sure to read" |
| 455 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
551 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
552 | else |
|
|
553 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
554 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
| 456 | fi |
555 | fi |
|
|
556 | fi |
| 457 | |
557 | |
| 458 | # Upstream specifically requests that InnoDB always be built. |
558 | # Upstream specifically requests that InnoDB always be built: |
| 459 | plugins="${plugins},innobase" |
559 | # - innobase, innodb_plugin |
|
|
560 | # Build falcon if available for 6.x series. |
|
|
561 | for i in innobase innodb_plugin falcon ; do |
|
|
562 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
563 | done |
| 460 | |
564 | |
| 461 | # like configuration=max-no-ndb |
565 | # like configuration=max-no-ndb |
| 462 | if use cluster ; then |
566 | if use cluster ; then |
| 463 | plugins="${plugins},ndbcluster" |
567 | plugins="${plugins},ndbcluster" |
| 464 | myconf="${myconf} --with-ndb-binlog" |
568 | myconf="${myconf} --with-ndb-binlog" |
| 465 | fi |
569 | fi |
| 466 | |
570 | |
| 467 | if mysql_version_is_at_least "5.2" ; then |
571 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
572 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
573 | # caught above. |
|
|
574 | plugins="${plugins},maria,innobase" |
|
|
575 | if use pbxt ; then |
| 468 | plugins="${plugins},falcon" |
576 | plugins="${plugins},pbxt" |
|
|
577 | else |
|
|
578 | myconf="${myconf} --without-plugin-pbxt" |
|
|
579 | fi |
|
|
580 | myconf="${myconf} $(use_with libevent)" |
|
|
581 | # This is not optional, without it several upstream testcases fail. |
|
|
582 | # Also strongly recommended by upstream. |
|
|
583 | myconf="${myconf} --with-maria-tmp-tables" |
| 469 | fi |
584 | fi |
| 470 | |
585 | |
| 471 | myconf="${myconf} --with-plugins=${plugins}" |
586 | myconf="${myconf} --with-plugins=${plugins}" |
| 472 | } |
587 | } |
| 473 | |
588 | |
| … | |
… | |
| 478 | |
593 | |
| 479 | einfo "Reconfiguring dir '${PWD}'" |
594 | einfo "Reconfiguring dir '${PWD}'" |
| 480 | AT_GNUCONF_UPDATE="yes" eautoreconf |
595 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 481 | |
596 | |
| 482 | local myconf="" |
597 | local myconf="" |
| 483 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
598 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
| 484 | use debug && myconf="${myconf} --with-debug=full" |
599 | use debug && myconf="${myconf} --with-debug=full" |
| 485 | # TODO: is it safe/needed to use econf here ? |
|
|
| 486 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
600 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
| 487 | } |
601 | } |
| 488 | |
602 | |
| 489 | pbxt_src_compile() { |
603 | pbxt_src_compile() { |
| 490 | # Be backwards compatible for now |
604 | # Be backwards compatible for now |
| 491 | if [[ $EAPI != 2 ]]; then |
605 | if [[ $EAPI != 2 ]]; then |
| … | |
… | |
| 498 | # TODO: modify test suite for PBXT |
612 | # TODO: modify test suite for PBXT |
| 499 | } |
613 | } |
| 500 | |
614 | |
| 501 | pbxt_src_install() { |
615 | pbxt_src_install() { |
| 502 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
616 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 503 | make install || die "Failed to install PBXT" |
617 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
| 504 | popd |
618 | popd |
| 505 | } |
619 | } |
| 506 | |
620 | |
| 507 | # |
621 | # |
| 508 | # EBUILD FUNCTIONS |
622 | # EBUILD FUNCTIONS |
| … | |
… | |
| 542 | && use minimal ; then |
656 | && use minimal ; then |
| 543 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
657 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 544 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
658 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 545 | fi |
659 | fi |
| 546 | |
660 | |
|
|
661 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
662 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
663 | GCC_VER=$(gcc-version) |
|
|
664 | case ${GCC_VER} in |
|
|
665 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
666 | esac |
|
|
667 | fi |
|
|
668 | |
| 547 | # This should come after all of the die statements |
669 | # This should come after all of the die statements |
| 548 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
670 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 549 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
671 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 550 | |
672 | |
| 551 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
673 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 552 | && use berkdb \ |
674 | && use berkdb \ |
| 553 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
675 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
676 | |
|
|
677 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
678 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
679 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
680 | ewarn "future, it will be disabled from building." |
|
|
681 | ewarn "" |
|
|
682 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
683 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
684 | ewarn "development." |
|
|
685 | fi |
| 554 | } |
686 | } |
| 555 | |
687 | |
| 556 | # @FUNCTION: mysql_src_unpack |
688 | # @FUNCTION: mysql_src_unpack |
| 557 | # @DESCRIPTION: |
689 | # @DESCRIPTION: |
| 558 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
690 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| … | |
… | |
| 587 | # Now link in right patches |
719 | # Now link in right patches |
| 588 | mysql_mv_patches |
720 | mysql_mv_patches |
| 589 | # And apply |
721 | # And apply |
| 590 | epatch |
722 | epatch |
| 591 | |
723 | |
|
|
724 | # last -fPIC fixup, per bug #305873 |
|
|
725 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
726 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
727 | |
| 592 | # Additional checks, remove bundled zlib |
728 | # Additional checks, remove bundled zlib |
| 593 | rm -f "${S}/zlib/"*.[ch] |
729 | rm -f "${S}/zlib/"*.[ch] |
| 594 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
730 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 595 | rm -f "scripts/mysqlbug" |
731 | rm -f "scripts/mysqlbug" |
| 596 | |
732 | |
| … | |
… | |
| 598 | find . -name 'Makefile.am' \ |
734 | find . -name 'Makefile.am' \ |
| 599 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
735 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 600 | |
736 | |
| 601 | if mysql_version_is_at_least "4.1" ; then |
737 | if mysql_version_is_at_least "4.1" ; then |
| 602 | # Remove what needs to be recreated, so we're sure it's actually done |
738 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
739 | einfo "Cleaning up old buildscript files" |
| 603 | find . -name Makefile \ |
740 | find . -name Makefile \ |
| 604 | -o -name Makefile.in \ |
741 | -o -name Makefile.in \ |
| 605 | -o -name configure \ |
742 | -o -name configure \ |
| 606 | -exec rm -f {} \; |
743 | -exec rm -f {} \; |
| 607 | rm -f "ltmain.sh" |
744 | rm -f "ltmain.sh" |
| 608 | rm -f "scripts/mysqlbug" |
745 | rm -f "scripts/mysqlbug" |
| 609 | fi |
746 | fi |
| 610 | |
747 | |
| 611 | local rebuilddirlist d |
748 | local rebuilddirlist d |
| 612 | |
749 | |
|
|
750 | if xtradb_patch_available && use xtradb ; then |
|
|
751 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
752 | pushd "${S}"/storage |
|
|
753 | i="innobase" |
|
|
754 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
755 | # Have we been here already? |
|
|
756 | [ -d "${o}" ] && rm -f "${i}" |
|
|
757 | # Or maybe we haven't |
|
|
758 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
759 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
760 | popd |
|
|
761 | fi |
|
|
762 | |
| 613 | if mysql_version_is_at_least "5.1.12" ; then |
763 | if mysql_version_is_at_least "5.1.12" ; then |
| 614 | rebuilddirlist="." |
764 | rebuilddirlist="." |
|
|
765 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
766 | #einfo "Updating innobase cmake" |
| 615 | # TODO: check this with a cmake expert |
767 | ## TODO: check this with a cmake expert |
| 616 | cmake \ |
768 | #cmake \ |
| 617 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
769 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 618 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
770 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 619 | "storage/innobase" |
771 | # "storage/innobase" |
| 620 | else |
772 | else |
| 621 | rebuilddirlist=". innobase" |
773 | rebuilddirlist=". innobase" |
| 622 | fi |
774 | fi |
| 623 | |
775 | |
| 624 | for d in ${rebuilddirlist} ; do |
776 | for d in ${rebuilddirlist} ; do |
| … | |
… | |
| 628 | popd &>/dev/null |
780 | popd &>/dev/null |
| 629 | done |
781 | done |
| 630 | |
782 | |
| 631 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
783 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 632 | && use berkdb ; then |
784 | && use berkdb ; then |
|
|
785 | einfo "Fixing up berkdb buildsystem" |
| 633 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
786 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 634 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
787 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 635 | || die "Could not copy libtool.m4 to bdb/dist/" |
788 | || die "Could not copy libtool.m4 to bdb/dist/" |
| 636 | #These files exist only with libtool-2*, and need to be included. |
789 | #These files exist only with libtool-2*, and need to be included. |
| 637 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
790 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
| … | |
… | |
| 707 | find . -type f -name Makefile -print0 \ |
860 | find . -type f -name Makefile -print0 \ |
| 708 | | xargs -0 -n100 sed -i \ |
861 | | xargs -0 -n100 sed -i \ |
| 709 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
862 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 710 | |
863 | |
| 711 | if [[ $EAPI == 2 ]]; then |
864 | if [[ $EAPI == 2 ]]; then |
| 712 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
865 | pbxt_patch_available && use pbxt && pbxt_src_configure |
| 713 | fi |
866 | fi |
| 714 | } |
867 | } |
| 715 | |
868 | |
| 716 | # @FUNCTION: mysql_src_compile |
869 | # @FUNCTION: mysql_src_compile |
| 717 | # @DESCRIPTION: |
870 | # @DESCRIPTION: |
| 718 | # Compile the mysql code. |
871 | # Compile the mysql code. |
| 719 | mysql_src_compile() { |
872 | mysql_src_compile() { |
| 720 | # Be backwards compatible for now |
873 | # Be backwards compatible for now |
| 721 | case ${EAPI:-0} in |
874 | case ${EAPI:-0} in |
| 722 | 2) : ;; |
875 | 2) : ;; |
| 723 | 0 | 1) mysql_src_configure ;; |
876 | 0 | 1) mysql_src_configure ;; |
| 724 | esac |
877 | esac |
| 725 | |
878 | |
| 726 | emake || die "emake failed" |
879 | emake || die "emake failed" |
| 727 | |
880 | |
| 728 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
881 | pbxt_patch_available && use pbxt && pbxt_src_compile |
| 729 | } |
882 | } |
| 730 | |
883 | |
| 731 | # @FUNCTION: mysql_src_install |
884 | # @FUNCTION: mysql_src_install |
| 732 | # @DESCRIPTION: |
885 | # @DESCRIPTION: |
| 733 | # Install mysql. |
886 | # Install mysql. |
| 734 | mysql_src_install() { |
887 | mysql_src_install() { |
| 735 | # Make sure the vars are correctly initialized |
888 | # Make sure the vars are correctly initialized |
| 736 | mysql_init_vars |
889 | mysql_init_vars |
| 737 | |
890 | |
| 738 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
891 | emake install \ |
|
|
892 | DESTDIR="${D}" \ |
|
|
893 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
894 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
895 | || die "emake install failed" |
| 739 | |
896 | |
| 740 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
897 | pbxt_patch_available && use pbxt && pbxt_src_install |
| 741 | |
898 | |
| 742 | # Convenience links |
899 | # Convenience links |
| 743 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
900 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 744 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
901 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 745 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
902 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| … | |
… | |
| 749 | einfo "Removing duplicate /usr/share/mysql files" |
906 | einfo "Removing duplicate /usr/share/mysql files" |
| 750 | rm -Rf "${D}/usr/share/info" |
907 | rm -Rf "${D}/usr/share/info" |
| 751 | for removeme in "mysql-log-rotate" mysql.server* \ |
908 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 752 | binary-configure* my-*.cnf mi_test_all* |
909 | binary-configure* my-*.cnf mi_test_all* |
| 753 | do |
910 | do |
| 754 | rm -f "${D}"/usr/share/mysql/${removeme} |
911 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 755 | done |
912 | done |
| 756 | |
913 | |
| 757 | # Clean up stuff for a minimal build |
914 | # Clean up stuff for a minimal build |
| 758 | if use minimal ; then |
915 | if use minimal ; then |
| 759 | einfo "Remove all extra content for minimal build" |
916 | einfo "Remove all extra content for minimal build" |
| … | |
… | |
| 761 | 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} |
918 | 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} |
| 762 | rm -f "${D}/usr/sbin/mysqld" |
919 | rm -f "${D}/usr/sbin/mysqld" |
| 763 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
920 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 764 | fi |
921 | fi |
| 765 | |
922 | |
|
|
923 | # Unless they explicitly specific USE=test, then do not install the |
|
|
924 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
925 | # validation of your database configuration after tuning it. |
|
|
926 | if use !test ; then |
|
|
927 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
|
|
928 | fi |
|
|
929 | |
| 766 | # Configuration stuff |
930 | # Configuration stuff |
|
|
931 | if mysql_version_is_at_least "5.1" ; then |
|
|
932 | mysql_mycnf_version="5.1" |
| 767 | if mysql_version_is_at_least "4.1" ; then |
933 | elif mysql_version_is_at_least "4.1" ; then |
| 768 | mysql_mycnf_version="4.1" |
934 | mysql_mycnf_version="4.1" |
| 769 | else |
935 | else |
| 770 | mysql_mycnf_version="4.0" |
936 | mysql_mycnf_version="4.0" |
| 771 | fi |
937 | fi |
| 772 | einfo "Building default my.cnf" |
938 | einfo "Building default my.cnf" |
| … | |
… | |
| 774 | doins scripts/mysqlaccess.conf |
940 | doins scripts/mysqlaccess.conf |
| 775 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
941 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 776 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
942 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 777 | > "${TMPDIR}/my.cnf.ok" |
943 | > "${TMPDIR}/my.cnf.ok" |
| 778 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
944 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 779 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
945 | sed -i \ |
|
|
946 | -e "/character-set/s|utf8|latin1|g" \ |
|
|
947 | "${TMPDIR}/my.cnf.ok" |
| 780 | fi |
948 | fi |
| 781 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
949 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 782 | |
950 | |
| 783 | # Minimal builds don't have the MySQL server |
951 | # Minimal builds don't have the MySQL server |
| 784 | if ! use minimal ; then |
952 | if ! use minimal ; then |
| … | |
… | |
| 799 | done |
967 | done |
| 800 | fi |
968 | fi |
| 801 | |
969 | |
| 802 | # Docs |
970 | # Docs |
| 803 | einfo "Installing docs" |
971 | einfo "Installing docs" |
| 804 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
972 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 805 | doinfo "${S}"/Docs/mysql.info |
973 | doinfo "${S}"/Docs/mysql.info |
| 806 | |
974 | |
| 807 | # Minimal builds don't have the MySQL server |
975 | # Minimal builds don't have the MySQL server |
| 808 | if ! use minimal ; then |
976 | if ! use minimal ; then |
| 809 | einfo "Including support files and sample configurations" |
977 | einfo "Including support files and sample configurations" |
| … | |
… | |
| 811 | for script in \ |
979 | for script in \ |
| 812 | "${S}"/support-files/my-*.cnf \ |
980 | "${S}"/support-files/my-*.cnf \ |
| 813 | "${S}"/support-files/magic \ |
981 | "${S}"/support-files/magic \ |
| 814 | "${S}"/support-files/ndb-config-2-node.ini |
982 | "${S}"/support-files/ndb-config-2-node.ini |
| 815 | do |
983 | do |
| 816 | dodoc "${script}" |
984 | [[ -f "$script" ]] && dodoc "${script}" |
| 817 | done |
985 | done |
| 818 | |
986 | |
| 819 | docinto "scripts" |
987 | docinto "scripts" |
| 820 | for script in "${S}"/scripts/mysql* ; do |
988 | for script in "${S}"/scripts/mysql* ; do |
| 821 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
989 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 822 | done |
990 | done |
| 823 | |
991 | |
| 824 | fi |
992 | fi |
| 825 | |
993 | |
| 826 | mysql_lib_symlinks "${D}" |
994 | mysql_lib_symlinks "${D}" |
| … | |
… | |
| 860 | for script in \ |
1028 | for script in \ |
| 861 | support-files/my-*.cnf \ |
1029 | support-files/my-*.cnf \ |
| 862 | support-files/magic \ |
1030 | support-files/magic \ |
| 863 | support-files/ndb-config-2-node.ini |
1031 | support-files/ndb-config-2-node.ini |
| 864 | do |
1032 | do |
|
|
1033 | [[ -f "${script}" ]] \ |
| 865 | dodoc "${script}" |
1034 | && dodoc "${script}" |
| 866 | done |
1035 | done |
| 867 | |
1036 | |
| 868 | docinto "scripts" |
1037 | docinto "scripts" |
| 869 | for script in scripts/mysql* ; do |
1038 | for script in scripts/mysql* ; do |
|
|
1039 | [[ -f "${script}" ]] \ |
| 870 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1040 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1041 | && dodoc "${script}" |
| 871 | done |
1042 | done |
| 872 | |
1043 | |
| 873 | einfo |
1044 | einfo |
| 874 | elog "You might want to run:" |
1045 | elog "You might want to run:" |
| 875 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1046 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 876 | elog "if this is a new install." |
1047 | elog "if this is a new install." |
| 877 | einfo |
1048 | einfo |
| 878 | fi |
1049 | fi |
| 879 | |
1050 | |
| 880 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
1051 | if pbxt_available && use pbxt ; then |
| 881 | # TODO: explain it better |
1052 | # TODO: explain it better |
| 882 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
1053 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 883 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
1054 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 884 | elog "if, after that, you cannot start the MySQL server," |
1055 | elog "if, after that, you cannot start the MySQL server," |
| 885 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
1056 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| … | |
… | |
| 936 | fi |
1107 | fi |
| 937 | fi |
1108 | fi |
| 938 | |
1109 | |
| 939 | local pwd1="a" |
1110 | local pwd1="a" |
| 940 | local pwd2="b" |
1111 | local pwd2="b" |
|
|
1112 | local MYSQL_ROOT_PASSWORD='' |
| 941 | local maxtry=5 |
1113 | local maxtry=15 |
|
|
1114 | |
|
|
1115 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then |
|
|
1116 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")" |
|
|
1117 | fi |
| 942 | |
1118 | |
| 943 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
1119 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 944 | ewarn "You have already a MySQL database in place." |
1120 | ewarn "You have already a MySQL database in place." |
| 945 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1121 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 946 | ewarn "Please rename or delete it if you wish to replace it." |
1122 | ewarn "Please rename or delete it if you wish to replace it." |
| … | |
… | |
| 949 | |
1125 | |
| 950 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
1126 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 951 | # localhost. Also causes weird failures. |
1127 | # localhost. Also causes weird failures. |
| 952 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
1128 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 953 | |
1129 | |
| 954 | einfo "Creating the mysql database and setting proper" |
1130 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
| 955 | einfo "permissions on it ..." |
|
|
| 956 | |
1131 | |
| 957 | einfo "Insert a password for the mysql 'root' user" |
1132 | einfo "Please provide a password for the mysql 'root' user now," |
|
|
1133 | einfo "or in the MYSQL_ROOT_PASSWORD env var." |
| 958 | ewarn "Avoid [\"'\\_%] characters in the password" |
1134 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 959 | read -rsp " >" pwd1 ; echo |
1135 | read -rsp " >" pwd1 ; echo |
| 960 | |
1136 | |
| 961 | einfo "Retype the password" |
1137 | einfo "Retype the password" |
| 962 | read -rsp " >" pwd2 ; echo |
1138 | read -rsp " >" pwd2 ; echo |
| 963 | |
1139 | |
| 964 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1140 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 965 | die "Passwords are not the same" |
1141 | die "Passwords are not the same" |
|
|
1142 | fi |
|
|
1143 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1144 | unset pwd1 pwd2 |
| 966 | fi |
1145 | fi |
| 967 | |
1146 | |
| 968 | local options="" |
1147 | local options="" |
| 969 | local sqltmp="$(emktemp)" |
1148 | local sqltmp="$(emktemp)" |
| 970 | |
1149 | |
| … | |
… | |
| 984 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
1163 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 985 | || die "MySQL databases not installed" |
1164 | || die "MySQL databases not installed" |
| 986 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1165 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 987 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1166 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 988 | |
1167 | |
|
|
1168 | # Figure out which options we need to disable to do the setup |
|
|
1169 | helpfile="${TMPDIR}/mysqld-help" |
|
|
1170 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
|
|
1171 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
|
|
1172 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1173 | ; do |
|
|
1174 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
|
|
1175 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
|
|
1176 | done |
|
|
1177 | # But some options changed names |
|
|
1178 | egrep -sq external-locking "${helpfile}" && \ |
|
|
1179 | options="${options/skip-locking/skip-external-locking}" |
|
|
1180 | |
| 989 | if mysql_version_is_at_least "4.1.3" ; then |
1181 | if mysql_version_is_at_least "4.1.3" ; then |
| 990 | options="--skip-ndbcluster" |
|
|
| 991 | |
|
|
| 992 | # Filling timezones, see |
1182 | # Filling timezones, see |
| 993 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1183 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 994 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
1184 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 995 | |
1185 | |
| 996 | if [[ -r "${help_tables}" ]] ; then |
1186 | if [[ -r "${help_tables}" ]] ; then |
| 997 | cat "${help_tables}" >> "${sqltmp}" |
1187 | cat "${help_tables}" >> "${sqltmp}" |
| 998 | fi |
1188 | fi |
| 999 | fi |
1189 | fi |
|
|
1190 | |
|
|
1191 | einfo "Creating the mysql database and setting proper" |
|
|
1192 | einfo "permissions on it ..." |
| 1000 | |
1193 | |
| 1001 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1194 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 1002 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1195 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 1003 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1196 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 1004 | ${options} \ |
1197 | ${options} \ |
| 1005 | --user=mysql \ |
1198 | --user=mysql \ |
| 1006 | --skip-grant-tables \ |
|
|
| 1007 | --basedir=${ROOT}/usr \ |
1199 | --basedir=${ROOT}/usr \ |
| 1008 | --datadir=${ROOT}/${MY_DATADIR} \ |
1200 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 1009 | --skip-innodb \ |
|
|
| 1010 | --skip-bdb \ |
|
|
| 1011 | --skip-networking \ |
|
|
| 1012 | --max_allowed_packet=8M \ |
1201 | --max_allowed_packet=8M \ |
| 1013 | --net_buffer_length=16K \ |
1202 | --net_buffer_length=16K \ |
| 1014 | --socket=${socket} \ |
1203 | --socket=${socket} \ |
| 1015 | --pid-file=${pidfile}" |
1204 | --pid-file=${pidfile}" |
|
|
1205 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1206 | ebegin "Starting mysqld" |
| 1016 | ${mysqld} & |
1207 | ${mysqld} & |
|
|
1208 | rc=$? |
| 1017 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1209 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 1018 | maxtry=$((${maxtry}-1)) |
1210 | maxtry=$((${maxtry}-1)) |
| 1019 | echo -n "." |
1211 | echo -n "." |
| 1020 | sleep 1 |
1212 | sleep 1 |
| 1021 | done |
1213 | done |
|
|
1214 | eend $rc |
| 1022 | |
1215 | |
|
|
1216 | if ! [[ -S "${socket}" ]]; then |
|
|
1217 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1218 | fi |
|
|
1219 | |
|
|
1220 | ebegin "Setting root password" |
| 1023 | # Do this from memory, as we don't want clear text passwords in temp files |
1221 | # Do this from memory, as we don't want clear text passwords in temp files |
| 1024 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1222 | local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'" |
| 1025 | "${ROOT}/usr/bin/mysql" \ |
1223 | "${ROOT}/usr/bin/mysql" \ |
| 1026 | --socket=${socket} \ |
1224 | --socket=${socket} \ |
| 1027 | -hlocalhost \ |
1225 | -hlocalhost \ |
| 1028 | -e "${sql}" |
1226 | -e "${sql}" |
|
|
1227 | eend $? |
| 1029 | |
1228 | |
| 1030 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1229 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 1031 | |
|
|
| 1032 | "${ROOT}/usr/bin/mysql" \ |
1230 | "${ROOT}/usr/bin/mysql" \ |
| 1033 | --socket=${socket} \ |
1231 | --socket=${socket} \ |
| 1034 | -hlocalhost \ |
1232 | -hlocalhost \ |
| 1035 | -uroot \ |
1233 | -uroot \ |
| 1036 | -p"${pwd1}" \ |
1234 | -p"${MYSQL_ROOT_PASSWORD}" \ |
| 1037 | mysql < "${sqltmp}" |
1235 | mysql < "${sqltmp}" |
|
|
1236 | rc=$? |
|
|
1237 | eend $? |
|
|
1238 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
| 1038 | |
1239 | |
| 1039 | # Stop the server and cleanup |
1240 | # Stop the server and cleanup |
|
|
1241 | einfo "Stopping the server ..." |
| 1040 | kill $(< "${pidfile}" ) |
1242 | kill $(< "${pidfile}" ) |
| 1041 | rm -f "${sqltmp}" |
1243 | rm -f "${sqltmp}" |
| 1042 | einfo "Stopping the server ..." |
|
|
| 1043 | wait %1 |
1244 | wait %1 |
| 1044 | einfo "Done" |
1245 | einfo "Done" |
| 1045 | } |
1246 | } |
| 1046 | |
1247 | |
| 1047 | # @FUNCTION: mysql_pkg_postrm |
1248 | # @FUNCTION: mysql_pkg_postrm |