| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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.72 2007/03/16 22:47:29 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.106 2009/02/11 11:29:48 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
|
|
| 9 | # Note that MYSQL_VERSION_ID must be empty! |
|
|
| 10 | |
9 | |
| 11 | WANT_AUTOCONF="latest" |
10 | WANT_AUTOCONF="latest" |
| 12 | WANT_AUTOMAKE="latest" |
11 | WANT_AUTOMAKE="latest" |
| 13 | |
12 | |
| 14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
| 15 | |
14 | |
| 16 | # Shorten the path because the socket path length must be shorter than 107 chars |
15 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 17 | # and we will run a mysql server during test phase |
16 | # and we will run a mysql server during test phase |
| 18 | S="${WORKDIR}/mysql" |
17 | S="${WORKDIR}/mysql" |
| 19 | |
18 | |
| 20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
|
|
20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
21 | EGIT_PROJECT=mysql-extras |
|
|
22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
23 | inherit git |
|
|
24 | fi |
| 21 | |
25 | |
| 22 | if [[ ${PR#r} -lt 60 ]] ; then |
26 | if [[ ${PR#r} -lt 60 ]] ; then |
| 23 | IS_BITKEEPER=0 |
27 | IS_BITKEEPER=0 |
| 24 | elif [[ ${PR#r} -lt 90 ]] ; then |
28 | elif [[ ${PR#r} -lt 90 ]] ; then |
| 25 | IS_BITKEEPER=60 |
29 | IS_BITKEEPER=60 |
| … | |
… | |
| 30 | # MYSQL_VERSION_ID will be: |
34 | # MYSQL_VERSION_ID will be: |
| 31 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
35 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 32 | # This is an important part, because many of the choices the MySQL ebuild will do |
36 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 33 | # depend on this variable. |
37 | # depend on this variable. |
| 34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
38 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
39 | # We also strip off upstream's trailing letter that they use to respin tarballs |
| 35 | |
40 | |
| 36 | MYSQL_VERSION_ID="" |
41 | MYSQL_VERSION_ID="" |
|
|
42 | tpv="${PV%[a-z]}" |
| 37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
43 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 38 | for vatom in 0 1 2 3 ; do |
44 | for vatom in 0 1 2 3 ; do |
| 39 | # pad to length 2 |
45 | # pad to length 2 |
| 40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
46 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
47 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 42 | done |
48 | done |
| 43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
49 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 45 | |
51 | |
| 46 | # Be warned, *DEPEND are version-dependant |
52 | # Be warned, *DEPEND are version-dependant |
|
|
53 | # These are used for both runtime and compiletime |
| 47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 48 | userland_GNU? ( sys-process/procps ) |
55 | userland_GNU? ( sys-process/procps ) |
| 49 | >=sys-apps/sed-4 |
56 | >=sys-apps/sed-4 |
| 50 | >=sys-apps/texinfo-4.7-r1 |
57 | >=sys-apps/texinfo-4.7-r1 |
| 51 | >=sys-libs/readline-4.1 |
58 | >=sys-libs/readline-4.1 |
| … | |
… | |
| 55 | for i in "" "-community" ; do |
62 | for i in "" "-community" ; do |
| 56 | [[ "${i}" == ${PN#mysql} ]] || |
63 | [[ "${i}" == ${PN#mysql} ]] || |
| 57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
64 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 58 | done |
65 | done |
| 59 | |
66 | |
|
|
67 | RDEPEND="${DEPEND} |
|
|
68 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
69 | selinux? ( sec-policy/selinux-mysql )" |
|
|
70 | |
|
|
71 | # compile-time-only |
| 60 | mysql_version_is_at_least "5.1" \ |
72 | mysql_version_is_at_least "5.1" \ |
| 61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
73 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 62 | |
74 | |
|
|
75 | # compile-time-only |
| 63 | mysql_version_is_at_least "5.1.12" \ |
76 | mysql_version_is_at_least "5.1.12" \ |
| 64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
77 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
| 65 | |
78 | |
|
|
79 | # BitKeeper dependency, compile-time only |
|
|
80 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
81 | |
|
|
82 | |
| 66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
83 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
85 | |
| 69 | # BitKeeper dependency, compile-time only |
86 | # For other stuff to bring us in |
| 70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
87 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
|
|
88 | |
|
|
89 | # Work out the default SERVER_URI correctly |
|
|
90 | if [ -z "${SERVER_URI}" ]; then |
|
|
91 | # The community build is on the mirrors |
|
|
92 | if [ "${PN}" == "mysql-community" ]; then |
|
|
93 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
94 | # The enterprise source is on the primary site only |
|
|
95 | elif [ "${PN}" == "mysql" ]; then |
|
|
96 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
97 | fi |
|
|
98 | fi |
| 71 | |
99 | |
| 72 | # Define correct SRC_URIs |
100 | # Define correct SRC_URIs |
| 73 | SRC_URI="${SERVER_URI} |
101 | SRC_URI="${SERVER_URI}" |
|
|
102 | |
|
|
103 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
|
|
104 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 74 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
105 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 75 | mysql_version_is_at_least "5.1.12" \ |
106 | mysql_version_is_at_least "5.1.12" \ |
| 76 | && [[ -n "${PBXT_VERSION}" ]] \ |
107 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 77 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
108 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 78 | |
109 | |
| 79 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
110 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 80 | HOMEPAGE="http://www.mysql.com/" |
111 | HOMEPAGE="http://www.mysql.com/" |
| 81 | LICENSE="GPL-2" |
112 | LICENSE="GPL-2" |
| 82 | SLOT="0" |
113 | SLOT="0" |
| 83 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
114 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 84 | RESTRICT="confcache" |
|
|
| 85 | |
115 | |
| 86 | mysql_version_is_at_least "4.1" \ |
116 | mysql_version_is_at_least "4.1" \ |
| 87 | && IUSE="${IUSE} latin1" |
117 | && IUSE="${IUSE} latin1" |
| 88 | |
118 | |
| 89 | mysql_version_is_at_least "4.1.3" \ |
119 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 101 | mysql_version_is_at_least "5.1" \ |
131 | mysql_version_is_at_least "5.1" \ |
| 102 | || IUSE="${IUSE} berkdb" |
132 | || IUSE="${IUSE} berkdb" |
| 103 | |
133 | |
| 104 | mysql_version_is_at_least "5.1.12" \ |
134 | mysql_version_is_at_least "5.1.12" \ |
| 105 | && IUSE="${IUSE} pbxt" |
135 | && IUSE="${IUSE} pbxt" |
| 106 | |
|
|
| 107 | RDEPEND="${DEPEND} |
|
|
| 108 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
| 109 | selinux? ( sec-policy/selinux-mysql )" |
|
|
| 110 | |
136 | |
| 111 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
137 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 112 | pkg_postinst pkg_config pkg_postrm |
138 | pkg_postinst pkg_config pkg_postrm |
| 113 | |
139 | |
| 114 | # |
140 | # |
| … | |
… | |
| 197 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
223 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 198 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
224 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 199 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
225 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 200 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
226 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 201 | |
227 | |
| 202 | if [[ -z "${DATADIR}" ]] ; then |
228 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 203 | DATADIR="" |
229 | MY_DATADIR="" |
| 204 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
230 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 205 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
231 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 206 | | sed -ne '/datadir/s|^--datadir=||p' \ |
232 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 207 | | tail -n1` |
233 | | tail -n1` |
| 208 | if [[ -z "${DATADIR}" ]] ; then |
234 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 209 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
235 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 210 | | sed -e 's/.*=\s*//'` |
236 | | sed -e 's/.*=\s*//' \ |
|
|
237 | | tail -n1` |
| 211 | fi |
238 | fi |
| 212 | fi |
239 | fi |
| 213 | if [[ -z "${DATADIR}" ]] ; then |
240 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 214 | DATADIR="${MY_LOCALSTATEDIR}" |
241 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 215 | einfo "Using default DATADIR" |
242 | einfo "Using default MY_DATADIR" |
| 216 | fi |
243 | fi |
| 217 | elog "MySQL DATADIR is ${DATADIR}" |
244 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 218 | |
245 | |
| 219 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
246 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 220 | if [[ -e "${DATADIR}" ]] ; then |
247 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 221 | elog "Previous datadir found, it's YOUR job to change" |
248 | # If you get this and you're wondering about it, see bug #207636 |
| 222 | elog "ownership and take care of it" |
249 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
250 | elog "A new one will not be created." |
| 223 | PREVIOUS_DATADIR="yes" |
251 | PREVIOUS_DATADIR="yes" |
| 224 | else |
252 | else |
| 225 | PREVIOUS_DATADIR="no" |
253 | PREVIOUS_DATADIR="no" |
| 226 | fi |
254 | fi |
| 227 | export PREVIOUS_DATADIR |
255 | export PREVIOUS_DATADIR |
| … | |
… | |
| 231 | MY_SOURCEDIR=${SERVER_URI##*/} |
259 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 232 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
260 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 233 | |
261 | |
| 234 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
262 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 235 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
263 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 236 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
264 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 237 | } |
265 | } |
| 238 | |
266 | |
| 239 | configure_minimal() { |
267 | configure_minimal() { |
| 240 | # These are things we exclude from a minimal build, please |
268 | # These are things we exclude from a minimal build, please |
| 241 | # note that the server actually does get built and installed, |
269 | # note that the server actually does get built and installed, |
| 242 | # but we then delete it before packaging. |
270 | # but we then delete it before packaging. |
| 243 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
271 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 244 | |
272 | |
| 245 | for i in ${minimal_exclude_list} ; do |
273 | for i in ${minimal_exclude_list} ; do |
| 246 | myconf="${myconf} --without-${i}" |
274 | myconf="${myconf} --without-${i}" |
| 247 | done |
275 | done |
| 248 | myconf="${myconf} --with-extra-charsets=none" |
276 | myconf="${myconf} --with-extra-charsets=none" |
| 249 | myconf="${myconf} --enable-local-infile" |
277 | myconf="${myconf} --enable-local-infile" |
| 250 | |
278 | |
| 251 | if use static ; then |
279 | if use static ; then |
| 252 | myconf="${myconf} --with-client-ldflags=-all-static" |
280 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 253 | myconf="${myconf} --disable-shared" |
281 | myconf="${myconf} --disable-shared --with-pic" |
| 254 | else |
282 | else |
| 255 | myconf="${myconf} --enable-shared --enable-static" |
283 | myconf="${myconf} --enable-shared --enable-static" |
| 256 | fi |
284 | fi |
| 257 | |
285 | |
| 258 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
286 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| … | |
… | |
| 274 | myconf="${myconf} --without-libwrap" |
302 | myconf="${myconf} --without-libwrap" |
| 275 | |
303 | |
| 276 | if use static ; then |
304 | if use static ; then |
| 277 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
305 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 278 | myconf="${myconf} --with-client-ldflags=-all-static" |
306 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 279 | myconf="${myconf} --disable-shared" |
307 | myconf="${myconf} --disable-shared --with-pic" |
| 280 | else |
308 | else |
| 281 | myconf="${myconf} --enable-shared --enable-static" |
309 | myconf="${myconf} --enable-shared --enable-static" |
| 282 | fi |
310 | fi |
| 283 | |
311 | |
| 284 | if use debug ; then |
312 | if use debug ; then |
| … | |
… | |
| 288 | mysql_version_is_at_least "4.1.3" \ |
316 | mysql_version_is_at_least "4.1.3" \ |
| 289 | && use cluster \ |
317 | && use cluster \ |
| 290 | && myconf="${myconf} --without-ndb-debug" |
318 | && myconf="${myconf} --without-ndb-debug" |
| 291 | fi |
319 | fi |
| 292 | |
320 | |
|
|
321 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
322 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
323 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
324 | ewarn "You MUST file bugs without these variables set." |
|
|
325 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
326 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 293 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
327 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 294 | myconf="${myconf} --with-charset=utf8" |
328 | myconf="${myconf} --with-charset=utf8" |
| 295 | myconf="${myconf} --with-collation=utf8_general_ci" |
329 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 296 | else |
330 | else |
| 297 | myconf="${myconf} --with-charset=latin1" |
331 | myconf="${myconf} --with-charset=latin1" |
| 298 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
332 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 299 | fi |
333 | fi |
| 300 | |
334 | |
| 301 | if use embedded ; then |
335 | if use embedded ; then |
| 302 | myconf="${myconf} --with-embedded-privilege-control" |
336 | myconf="${myconf} --with-embedded-privilege-control" |
| 303 | myconf="${myconf} --with-embedded-server" |
337 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 326 | myconf="${myconf} $(use_with ssl)" |
360 | myconf="${myconf} $(use_with ssl)" |
| 327 | else |
361 | else |
| 328 | myconf="${myconf} $(use_with ssl openssl)" |
362 | myconf="${myconf} $(use_with ssl openssl)" |
| 329 | fi |
363 | fi |
| 330 | |
364 | |
|
|
365 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
366 | if use berkdb ; then |
|
|
367 | elog "Berkeley DB support was disabled due to build failures" |
|
|
368 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
369 | elog "if you want it again. Gentoo bug #224067." |
|
|
370 | fi |
|
|
371 | myconf="${myconf} --without-berkeley-db" |
|
|
372 | elif use berkdb ; then |
| 331 | # The following fix is due to a bug with bdb on SPARC's. See: |
373 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 332 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
374 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 333 | # It comes down to non-64-bit safety problems. |
375 | # It comes down to non-64-bit safety problems. |
| 334 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
376 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 335 | elog "Berkeley DB support was disabled due to incompatible arch" |
377 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
378 | myconf="${myconf} --without-berkeley-db" |
|
|
379 | else |
|
|
380 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
381 | fi |
|
|
382 | else |
| 336 | myconf="${myconf} --without-berkeley-db" |
383 | myconf="${myconf} --without-berkeley-db" |
| 337 | else |
|
|
| 338 | if use berkdb ; then |
|
|
| 339 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 340 | else |
|
|
| 341 | myconf="${myconf} --without-berkeley-db" |
|
|
| 342 | fi |
|
|
| 343 | fi |
384 | fi |
| 344 | |
385 | |
| 345 | if mysql_version_is_at_least "4.1.3" ; then |
386 | if mysql_version_is_at_least "4.1.3" ; then |
| 346 | myconf="${myconf} --with-geometry" |
387 | myconf="${myconf} --with-geometry" |
| 347 | myconf="${myconf} $(use_with cluster ndbcluster)" |
388 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 363 | if mysql_version_is_at_least "5.0.3" ; then |
404 | if mysql_version_is_at_least "5.0.3" ; then |
| 364 | elog "Before using the Federated storage engine, please be sure to read" |
405 | elog "Before using the Federated storage engine, please be sure to read" |
| 365 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
406 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 366 | myconf="${myconf} --with-federated-storage-engine" |
407 | myconf="${myconf} --with-federated-storage-engine" |
| 367 | fi |
408 | fi |
|
|
409 | fi |
|
|
410 | |
|
|
411 | if [ "${PN}" == "mysql-community" ]; then |
|
|
412 | myconf="${myconf} --enable-community-features" |
| 368 | fi |
413 | fi |
| 369 | |
414 | |
| 370 | mysql_version_is_at_least "5.0.18" \ |
415 | mysql_version_is_at_least "5.0.18" \ |
| 371 | && use max-idx-128 \ |
416 | && use max-idx-128 \ |
| 372 | && myconf="${myconf} --with-max-indexes=128" |
417 | && myconf="${myconf} --with-max-indexes=128" |
| … | |
… | |
| 440 | } |
485 | } |
| 441 | |
486 | |
| 442 | # |
487 | # |
| 443 | # EBUILD FUNCTIONS |
488 | # EBUILD FUNCTIONS |
| 444 | # |
489 | # |
| 445 | |
|
|
| 446 | mysql_pkg_setup() { |
490 | mysql_pkg_setup() { |
| 447 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
491 | if hasq test ${FEATURES} ; then |
| 448 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
492 | if ! use minimal ; then |
|
|
493 | if [[ $UID -eq 0 ]]; then |
|
|
494 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
495 | fi |
|
|
496 | fi |
|
|
497 | fi |
| 449 | |
498 | |
| 450 | # Check for USE flag problems in pkg_setup |
499 | # Check for USE flag problems in pkg_setup |
| 451 | if use static && use ssl ; then |
500 | if use static && use ssl ; then |
| 452 | eerror "MySQL does not support being built statically with SSL support enabled!" |
501 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 453 | die "MySQL does not support being built statically with SSL support enabled!" |
502 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 466 | && use minimal ; then |
515 | && use minimal ; then |
| 467 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
516 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 468 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
517 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 469 | fi |
518 | fi |
| 470 | |
519 | |
|
|
520 | # This should come after all of the die statements |
|
|
521 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
522 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
523 | |
| 471 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
524 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 472 | && use berkdb \ |
525 | && use berkdb \ |
| 473 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
526 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 474 | } |
527 | } |
| 475 | |
528 | |
| 476 | mysql_src_unpack() { |
529 | mysql_src_unpack() { |
| 477 | # Initialize the proper variables first |
530 | # Initialize the proper variables first |
| 478 | mysql_init_vars |
531 | mysql_init_vars |
| 479 | |
532 | |
| 480 | unpack ${A} |
533 | unpack ${A} |
|
|
534 | # Grab the patches |
|
|
535 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
|
|
536 | # Bitkeeper checkout support |
| 481 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
537 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
| 482 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
538 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
| 483 | bitkeeper_fetch "mysql-5.1-ndb" |
539 | bitkeeper_fetch "mysql-5.1-ndb" |
| 484 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
540 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
| 485 | bitkeeper_fetch "mysql-5.2-falcon" |
541 | bitkeeper_fetch "mysql-5.2-falcon" |
| … | |
… | |
| 495 | fi |
551 | fi |
| 496 | |
552 | |
| 497 | # Apply the patches for this MySQL version |
553 | # Apply the patches for this MySQL version |
| 498 | EPATCH_SUFFIX="patch" |
554 | EPATCH_SUFFIX="patch" |
| 499 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
555 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
556 | # Clean out old items |
|
|
557 | rm -f "${EPATCH_SOURCE}"/* |
|
|
558 | # Now link in right patches |
| 500 | mysql_mv_patches |
559 | mysql_mv_patches |
|
|
560 | # And apply |
| 501 | epatch |
561 | epatch |
| 502 | |
562 | |
| 503 | # Additional checks, remove bundled zlib |
563 | # Additional checks, remove bundled zlib |
| 504 | rm -f "${S}/zlib/"*.[ch] |
564 | rm -f "${S}/zlib/"*.[ch] |
| 505 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
565 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| … | |
… | |
| 521 | |
581 | |
| 522 | local rebuilddirlist d |
582 | local rebuilddirlist d |
| 523 | |
583 | |
| 524 | if mysql_version_is_at_least "5.1.12" ; then |
584 | if mysql_version_is_at_least "5.1.12" ; then |
| 525 | rebuilddirlist="." |
585 | rebuilddirlist="." |
| 526 | # TODO: check this with a cmake expert |
586 | # TODO: check this with a cmake expert |
| 527 | use innodb \ |
587 | use innodb \ |
| 528 | && cmake \ |
588 | && cmake \ |
| 529 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
589 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 530 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
590 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 531 | "storage/innobase" |
591 | "storage/innobase" |
| 532 | else |
592 | else |
| 533 | rebuilddirlist=". innobase" |
593 | rebuilddirlist=". innobase" |
| 534 | fi |
594 | fi |
| 535 | |
595 | |
| … | |
… | |
| 543 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
603 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 544 | && use berkdb ; then |
604 | && use berkdb ; then |
| 545 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
605 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 546 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
606 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 547 | || die "Could not copy libtool.m4 to bdb/dist/" |
607 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
608 | #These files exist only with libtool-2*, and need to be included. |
|
|
609 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
610 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
611 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
612 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
613 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
614 | fi |
| 548 | pushd "bdb/dist" &>/dev/null |
615 | pushd "bdb/dist" &>/dev/null |
| 549 | sh s_all \ |
616 | sh s_all \ |
| 550 | || die "Failed bdb reconfigure" |
617 | || die "Failed bdb reconfigure" |
| 551 | popd &>/dev/null |
618 | popd &>/dev/null |
| 552 | fi |
619 | fi |
| … | |
… | |
| 573 | # Bug #114895, bug #110149 |
640 | # Bug #114895, bug #110149 |
| 574 | filter-flags "-O" "-O[01]" |
641 | filter-flags "-O" "-O[01]" |
| 575 | |
642 | |
| 576 | # glib-2.3.2_pre fix, bug #16496 |
643 | # glib-2.3.2_pre fix, bug #16496 |
| 577 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
644 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
|
|
645 | |
|
|
646 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
647 | # fail badly during cluster startup. |
|
|
648 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
649 | filter-flags "-fstack-protector-all" |
|
|
650 | fi |
| 578 | |
651 | |
| 579 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
652 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 580 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
653 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 581 | mysql_version_is_at_least "5.0" \ |
654 | mysql_version_is_at_least "5.0" \ |
| 582 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
655 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| … | |
… | |
| 612 | |
685 | |
| 613 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
686 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 614 | |
687 | |
| 615 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
688 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 616 | |
689 | |
| 617 | insinto "${MY_INCLUDEDIR}" |
|
|
| 618 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 619 | |
|
|
| 620 | # Convenience links |
690 | # Convenience links |
|
|
691 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 621 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
692 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 622 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
693 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 623 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
694 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 624 | |
695 | |
| 625 | # Various junk (my-*.cnf moved elsewhere) |
696 | # Various junk (my-*.cnf moved elsewhere) |
|
|
697 | einfo "Removing duplicate /usr/share/mysql files" |
| 626 | rm -Rf "${D}/usr/share/info" |
698 | rm -Rf "${D}/usr/share/info" |
| 627 | for removeme in "mysql-log-rotate" mysql.server* \ |
699 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 628 | binary-configure* my-*.cnf mi_test_all* |
700 | binary-configure* my-*.cnf mi_test_all* |
| 629 | do |
701 | do |
| 630 | rm -f "${D}"/usr/share/mysql/${removeme} |
702 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 631 | done |
703 | done |
| 632 | |
704 | |
| 633 | # Clean up stuff for a minimal build |
705 | # Clean up stuff for a minimal build |
| 634 | if use minimal ; then |
706 | if use minimal ; then |
|
|
707 | einfo "Remove all extra content for minimal build" |
| 635 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
708 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 636 | 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} |
709 | 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} |
| 637 | rm -f "${D}/usr/sbin/mysqld" |
710 | rm -f "${D}/usr/sbin/mysqld" |
| 638 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
711 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 639 | fi |
712 | fi |
| … | |
… | |
| 642 | if mysql_version_is_at_least "4.1" ; then |
715 | if mysql_version_is_at_least "4.1" ; then |
| 643 | mysql_mycnf_version="4.1" |
716 | mysql_mycnf_version="4.1" |
| 644 | else |
717 | else |
| 645 | mysql_mycnf_version="4.0" |
718 | mysql_mycnf_version="4.0" |
| 646 | fi |
719 | fi |
|
|
720 | einfo "Building default my.cnf" |
| 647 | insinto "${MY_SYSCONFDIR}" |
721 | insinto "${MY_SYSCONFDIR}" |
| 648 | doins scripts/mysqlaccess.conf |
722 | doins scripts/mysqlaccess.conf |
| 649 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
723 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 650 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
724 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 651 | > "${TMPDIR}/my.cnf.ok" |
725 | > "${TMPDIR}/my.cnf.ok" |
| 652 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
726 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 653 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
727 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 654 | fi |
728 | fi |
| 655 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
729 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 656 | |
730 | |
| 657 | # Minimal builds don't have the MySQL server |
731 | # Minimal builds don't have the MySQL server |
| 658 | if ! use minimal ; then |
732 | if ! use minimal ; then |
|
|
733 | einfo "Creating initial directories" |
| 659 | # Empty directories ... |
734 | # Empty directories ... |
| 660 | diropts "-m0750" |
735 | diropts "-m0750" |
| 661 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
736 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 662 | dodir "${DATADIR}" |
737 | dodir "${MY_DATADIR}" |
| 663 | keepdir "${DATADIR}" |
738 | keepdir "${MY_DATADIR}" |
| 664 | chown -R mysql:mysql "${D}/${DATADIR}" |
739 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 665 | fi |
740 | fi |
| 666 | |
741 | |
| 667 | diropts "-m0755" |
742 | diropts "-m0755" |
| 668 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
743 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 669 | dodir "${folder}" |
744 | dodir "${folder}" |
| … | |
… | |
| 671 | chown -R mysql:mysql "${D}/${folder}" |
746 | chown -R mysql:mysql "${D}/${folder}" |
| 672 | done |
747 | done |
| 673 | fi |
748 | fi |
| 674 | |
749 | |
| 675 | # Docs |
750 | # Docs |
|
|
751 | einfo "Installing docs" |
| 676 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
752 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
753 | doinfo "${S}"/Docs/mysql.info |
| 677 | |
754 | |
| 678 | # Minimal builds don't have the MySQL server |
755 | # Minimal builds don't have the MySQL server |
| 679 | if ! use minimal ; then |
756 | if ! use minimal ; then |
|
|
757 | einfo "Including support files and sample configurations" |
| 680 | docinto "support-files" |
758 | docinto "support-files" |
| 681 | for script in \ |
759 | for script in \ |
| 682 | support-files/my-*.cnf \ |
760 | "${S}"/support-files/my-*.cnf \ |
| 683 | support-files/magic \ |
761 | "${S}"/support-files/magic \ |
| 684 | support-files/ndb-config-2-node.ini |
762 | "${S}"/support-files/ndb-config-2-node.ini |
| 685 | do |
763 | do |
| 686 | dodoc "${script}" |
764 | dodoc "${script}" |
| 687 | done |
765 | done |
| 688 | |
766 | |
| 689 | docinto "scripts" |
767 | docinto "scripts" |
| 690 | for script in scripts/mysql* ; do |
768 | for script in "${S}"/scripts/mysql* ; do |
| 691 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
769 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 692 | done |
770 | done |
|
|
771 | |
| 693 | fi |
772 | fi |
| 694 | |
773 | |
| 695 | mysql_lib_symlinks "${D}" |
774 | mysql_lib_symlinks "${D}" |
| 696 | } |
775 | } |
| 697 | |
776 | |
| … | |
… | |
| 757 | |
836 | |
| 758 | mysql_pkg_config() { |
837 | mysql_pkg_config() { |
| 759 | # Make sure the vars are correctly initialized |
838 | # Make sure the vars are correctly initialized |
| 760 | mysql_init_vars |
839 | mysql_init_vars |
| 761 | |
840 | |
| 762 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
841 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 763 | |
842 | |
| 764 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
843 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 765 | die "Minimal builds do NOT include the MySQL server" |
844 | die "Minimal builds do NOT include the MySQL server" |
| 766 | fi |
845 | fi |
| 767 | |
846 | |
| 768 | local pwd1="a" |
847 | local pwd1="a" |
| 769 | local pwd2="b" |
848 | local pwd2="b" |
| 770 | local maxtry=5 |
849 | local maxtry=5 |
| 771 | |
850 | |
| 772 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
851 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 773 | ewarn "You have already a MySQL database in place." |
852 | ewarn "You have already a MySQL database in place." |
| 774 | ewarn "(${ROOT}/${DATADIR}/*)" |
853 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 775 | ewarn "Please rename or delete it if you wish to replace it." |
854 | ewarn "Please rename or delete it if you wish to replace it." |
| 776 | die "MySQL database already exists!" |
855 | die "MySQL database already exists!" |
| 777 | fi |
856 | fi |
|
|
857 | |
|
|
858 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
859 | # localhost. Also causes weird failures. |
|
|
860 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 778 | |
861 | |
| 779 | einfo "Creating the mysql database and setting proper" |
862 | einfo "Creating the mysql database and setting proper" |
| 780 | einfo "permissions on it ..." |
863 | einfo "permissions on it ..." |
| 781 | |
864 | |
| 782 | einfo "Insert a password for the mysql 'root' user" |
865 | einfo "Insert a password for the mysql 'root' user" |
| … | |
… | |
| 798 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
881 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 799 | || touch "${TMPDIR}/fill_help_tables.sql" |
882 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 800 | help_tables="${TMPDIR}/fill_help_tables.sql" |
883 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 801 | |
884 | |
| 802 | pushd "${TMPDIR}" &>/dev/null |
885 | pushd "${TMPDIR}" &>/dev/null |
| 803 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
886 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
887 | if [ $? -ne 0 ]; then |
|
|
888 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
889 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
890 | fi |
| 804 | popd &>/dev/null |
891 | popd &>/dev/null |
| 805 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
892 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 806 | || die "MySQL databases not installed" |
893 | || die "MySQL databases not installed" |
| 807 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
894 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 808 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
895 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 809 | |
896 | |
| 810 | if mysql_version_is_at_least "4.1.3" ; then |
897 | if mysql_version_is_at_least "4.1.3" ; then |
| 811 | options="--skip-ndbcluster" |
898 | options="--skip-ndbcluster" |
| 812 | |
899 | |
| 813 | # Filling timezones, see |
900 | # Filling timezones, see |
| … | |
… | |
| 824 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
911 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 825 | ${options} \ |
912 | ${options} \ |
| 826 | --user=mysql \ |
913 | --user=mysql \ |
| 827 | --skip-grant-tables \ |
914 | --skip-grant-tables \ |
| 828 | --basedir=${ROOT}/usr \ |
915 | --basedir=${ROOT}/usr \ |
| 829 | --datadir=${ROOT}/${DATADIR} \ |
916 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 830 | --skip-innodb \ |
917 | --skip-innodb \ |
| 831 | --skip-bdb \ |
918 | --skip-bdb \ |
| 832 | --skip-networking \ |
919 | --skip-networking \ |
| 833 | --max_allowed_packet=8M \ |
920 | --max_allowed_packet=8M \ |
| 834 | --net_buffer_length=16K \ |
921 | --net_buffer_length=16K \ |