| 1 |
# Copyright 1999-2007 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.115 2009/09/08 05:28:03 robbat2 Exp $ |
| 4 |
|
| 5 |
# Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 |
# Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 7 |
# - Luca Longinotti <chtekk@gentoo.org> |
| 8 |
# - Robin H. Johnson <robbat2@gentoo.org> |
| 9 |
|
| 10 |
WANT_AUTOCONF="latest" |
| 11 |
WANT_AUTOMAKE="latest" |
| 12 |
|
| 13 |
inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
| 14 |
|
| 15 |
case "${EAPI:-0}" in |
| 16 |
2) |
| 17 |
EXPORT_FUNCTIONS pkg_setup \ |
| 18 |
src_unpack src_prepare \ |
| 19 |
src_configure src_compile \ |
| 20 |
src_install \ |
| 21 |
pkg_preinst pkg_postinst \ |
| 22 |
pkg_config pkg_postrm |
| 23 |
IUSE_DEFAULT_ON='+' |
| 24 |
;; |
| 25 |
*) |
| 26 |
EXPORT_FUNCTIONS pkg_setup \ |
| 27 |
src_unpack \ |
| 28 |
src_compile \ |
| 29 |
src_install \ |
| 30 |
pkg_preinst pkg_postinst \ |
| 31 |
pkg_config pkg_postrm |
| 32 |
;; |
| 33 |
esac |
| 34 |
|
| 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: |
| 47 |
# 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 |
| 49 |
# depend on this variable. |
| 50 |
# In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
| 51 |
# We also strip off upstream's trailing letter that they use to respin tarballs |
| 52 |
|
| 53 |
MYSQL_VERSION_ID="" |
| 54 |
tpv="${PV%[a-z]}" |
| 55 |
tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 56 |
for vatom in 0 1 2 3 ; do |
| 57 |
# pad to length 2 |
| 58 |
tpv[${vatom}]="00${tpv[${vatom}]}" |
| 59 |
MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 60 |
done |
| 61 |
# strip leading "0" (otherwise it's considered an octal number by BASH) |
| 62 |
MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 63 |
|
| 64 |
# Community features are available in mysql-community |
| 65 |
# AND in the re-merged mysql-5.0.82 and newer |
| 66 |
if [ "${PN}" == "mysql-community" ]; then |
| 67 |
MYSQL_COMMUNITY_FEATURES=1 |
| 68 |
elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
| 69 |
MYSQL_COMMUNITY_FEATURES=1 |
| 70 |
else |
| 71 |
MYSQL_COMMUNITY_FEATURES=0 |
| 72 |
fi |
| 73 |
|
| 74 |
# Be warned, *DEPEND are version-dependant |
| 75 |
# These are used for both runtime and compiletime |
| 76 |
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 77 |
userland_GNU? ( sys-process/procps ) |
| 78 |
>=sys-apps/sed-4 |
| 79 |
>=sys-apps/texinfo-4.7-r1 |
| 80 |
>=sys-libs/readline-4.1 |
| 81 |
>=sys-libs/zlib-1.2.3" |
| 82 |
|
| 83 |
# Having different flavours at the same time is not a good idea |
| 84 |
for i in "" "-community" ; do |
| 85 |
[[ "${i}" == ${PN#mysql} ]] || |
| 86 |
DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 87 |
done |
| 88 |
|
| 89 |
RDEPEND="${DEPEND} |
| 90 |
!minimal? ( dev-db/mysql-init-scripts ) |
| 91 |
selinux? ( sec-policy/selinux-mysql )" |
| 92 |
|
| 93 |
# compile-time-only |
| 94 |
mysql_version_is_at_least "5.1" \ |
| 95 |
|| DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 96 |
|
| 97 |
# compile-time-only |
| 98 |
mysql_version_is_at_least "5.1.12" \ |
| 99 |
&& DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 100 |
|
| 101 |
# dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 102 |
PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 103 |
|
| 104 |
# For other stuff to bring us in |
| 105 |
PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 106 |
|
| 107 |
# Work out the default SERVER_URI correctly |
| 108 |
if [ -z "${SERVER_URI}" ]; then |
| 109 |
# The community build is on the mirrors |
| 110 |
if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 111 |
SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
| 112 |
# The (old) enterprise source is on the primary site only |
| 113 |
elif [ "${PN}" == "mysql" ]; then |
| 114 |
SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
| 115 |
fi |
| 116 |
fi |
| 117 |
|
| 118 |
# Define correct SRC_URIs |
| 119 |
SRC_URI="${SERVER_URI}" |
| 120 |
|
| 121 |
[[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
| 122 |
mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 123 |
http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 124 |
mysql_version_is_at_least "5.1.12" \ |
| 125 |
&& [[ -n "${PBXT_VERSION}" ]] \ |
| 126 |
&& SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 127 |
|
| 128 |
DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 129 |
HOMEPAGE="http://www.mysql.com/" |
| 130 |
LICENSE="GPL-2" |
| 131 |
SLOT="0" |
| 132 |
IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
| 133 |
|
| 134 |
mysql_version_is_at_least "4.1" \ |
| 135 |
&& IUSE="${IUSE} latin1" |
| 136 |
|
| 137 |
mysql_version_is_at_least "4.1.3" \ |
| 138 |
&& IUSE="${IUSE} cluster extraengine" |
| 139 |
|
| 140 |
mysql_version_is_at_least "5.0" \ |
| 141 |
|| IUSE="${IUSE} raid" |
| 142 |
|
| 143 |
mysql_version_is_at_least "5.0.18" \ |
| 144 |
&& IUSE="${IUSE} max-idx-128" |
| 145 |
|
| 146 |
mysql_version_is_at_least "5.1" \ |
| 147 |
|| IUSE="${IUSE} berkdb" |
| 148 |
|
| 149 |
mysql_version_is_at_least "5.1.12" \ |
| 150 |
&& IUSE="${IUSE} pbxt" |
| 151 |
|
| 152 |
[ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 153 |
&& IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 154 |
|
| 155 |
# |
| 156 |
# HELPER FUNCTIONS: |
| 157 |
# |
| 158 |
|
| 159 |
mysql_disable_test() { |
| 160 |
local testname="${1}" ; shift |
| 161 |
local reason="${@}" |
| 162 |
local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 163 |
echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 164 |
ewarn "test '${testname}' disabled: '${reason}'" |
| 165 |
} |
| 166 |
|
| 167 |
# void mysql_init_vars() |
| 168 |
# |
| 169 |
# Initialize global variables |
| 170 |
# 2005-11-19 <vivo@gentoo.org> |
| 171 |
|
| 172 |
mysql_init_vars() { |
| 173 |
MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 174 |
MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 175 |
MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 176 |
MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 177 |
MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 178 |
MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 179 |
|
| 180 |
if [[ -z "${MY_DATADIR}" ]] ; then |
| 181 |
MY_DATADIR="" |
| 182 |
if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 183 |
MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 184 |
| sed -ne '/datadir/s|^--datadir=||p' \ |
| 185 |
| tail -n1` |
| 186 |
if [[ -z "${MY_DATADIR}" ]] ; then |
| 187 |
MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 188 |
| sed -e 's/.*=\s*//' \ |
| 189 |
| tail -n1` |
| 190 |
fi |
| 191 |
fi |
| 192 |
if [[ -z "${MY_DATADIR}" ]] ; then |
| 193 |
MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 194 |
einfo "Using default MY_DATADIR" |
| 195 |
fi |
| 196 |
elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 197 |
|
| 198 |
if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 199 |
if [[ -e "${MY_DATADIR}" ]] ; then |
| 200 |
# If you get this and you're wondering about it, see bug #207636 |
| 201 |
elog "MySQL datadir found in ${MY_DATADIR}" |
| 202 |
elog "A new one will not be created." |
| 203 |
PREVIOUS_DATADIR="yes" |
| 204 |
else |
| 205 |
PREVIOUS_DATADIR="no" |
| 206 |
fi |
| 207 |
export PREVIOUS_DATADIR |
| 208 |
fi |
| 209 |
else |
| 210 |
if [[ ${EBUILD_PHASE} == "config" ]]; then |
| 211 |
local new_MY_DATADIR |
| 212 |
new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 213 |
| sed -ne '/datadir/s|^--datadir=||p' \ |
| 214 |
| tail -n1` |
| 215 |
|
| 216 |
if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
| 217 |
ewarn "MySQL MY_DATADIR has changed" |
| 218 |
ewarn "from ${MY_DATADIR}" |
| 219 |
ewarn "to ${new_MY_DATADIR}" |
| 220 |
MY_DATADIR="${new_MY_DATADIR}" |
| 221 |
fi |
| 222 |
fi |
| 223 |
fi |
| 224 |
|
| 225 |
MY_SOURCEDIR=${SERVER_URI##*/} |
| 226 |
MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 227 |
|
| 228 |
export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 229 |
export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 230 |
export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 231 |
} |
| 232 |
|
| 233 |
configure_minimal() { |
| 234 |
# These are things we exclude from a minimal build, please |
| 235 |
# note that the server actually does get built and installed, |
| 236 |
# but we then delete it before packaging. |
| 237 |
local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 238 |
|
| 239 |
for i in ${minimal_exclude_list} ; do |
| 240 |
myconf="${myconf} --without-${i}" |
| 241 |
done |
| 242 |
myconf="${myconf} --with-extra-charsets=none" |
| 243 |
myconf="${myconf} --enable-local-infile" |
| 244 |
|
| 245 |
if use static ; then |
| 246 |
myconf="${myconf} --with-client-ldflags=-all-static" |
| 247 |
myconf="${myconf} --disable-shared --with-pic" |
| 248 |
else |
| 249 |
myconf="${myconf} --enable-shared --enable-static" |
| 250 |
fi |
| 251 |
|
| 252 |
if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 253 |
myconf="${myconf} --with-charset=utf8" |
| 254 |
myconf="${myconf} --with-collation=utf8_general_ci" |
| 255 |
else |
| 256 |
myconf="${myconf} --with-charset=latin1" |
| 257 |
myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 258 |
fi |
| 259 |
} |
| 260 |
|
| 261 |
configure_common() { |
| 262 |
myconf="${myconf} $(use_with big-tables)" |
| 263 |
myconf="${myconf} --enable-local-infile" |
| 264 |
myconf="${myconf} --with-extra-charsets=all" |
| 265 |
myconf="${myconf} --with-mysqld-user=mysql" |
| 266 |
myconf="${myconf} --with-server" |
| 267 |
myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
| 268 |
myconf="${myconf} --without-libwrap" |
| 269 |
|
| 270 |
if use static ; then |
| 271 |
myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 272 |
myconf="${myconf} --with-client-ldflags=-all-static" |
| 273 |
myconf="${myconf} --disable-shared --with-pic" |
| 274 |
else |
| 275 |
myconf="${myconf} --enable-shared --enable-static" |
| 276 |
fi |
| 277 |
|
| 278 |
if use debug ; then |
| 279 |
myconf="${myconf} --with-debug=full" |
| 280 |
else |
| 281 |
myconf="${myconf} --without-debug" |
| 282 |
mysql_version_is_at_least "4.1.3" \ |
| 283 |
&& use cluster \ |
| 284 |
&& myconf="${myconf} --without-ndb-debug" |
| 285 |
fi |
| 286 |
|
| 287 |
if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
| 288 |
ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
| 289 |
ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
| 290 |
ewarn "You MUST file bugs without these variables set." |
| 291 |
myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
| 292 |
myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 293 |
elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 294 |
myconf="${myconf} --with-charset=utf8" |
| 295 |
myconf="${myconf} --with-collation=utf8_general_ci" |
| 296 |
else |
| 297 |
myconf="${myconf} --with-charset=latin1" |
| 298 |
myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 299 |
fi |
| 300 |
|
| 301 |
if use embedded ; then |
| 302 |
myconf="${myconf} --with-embedded-privilege-control" |
| 303 |
myconf="${myconf} --with-embedded-server" |
| 304 |
else |
| 305 |
myconf="${myconf} --without-embedded-privilege-control" |
| 306 |
myconf="${myconf} --without-embedded-server" |
| 307 |
fi |
| 308 |
|
| 309 |
} |
| 310 |
|
| 311 |
configure_40_41_50() { |
| 312 |
myconf="${myconf} $(use_with perl bench)" |
| 313 |
myconf="${myconf} --enable-assembler" |
| 314 |
myconf="${myconf} --with-extra-tools" |
| 315 |
myconf="${myconf} --with-innodb" |
| 316 |
myconf="${myconf} --without-readline" |
| 317 |
mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 318 |
|
| 319 |
# --with-vio is not needed anymore, it's on by default and |
| 320 |
# has been removed from configure |
| 321 |
if use ssl ; then |
| 322 |
mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 323 |
fi |
| 324 |
|
| 325 |
if mysql_version_is_at_least "5.1.11" ; then |
| 326 |
myconf="${myconf} $(use_with ssl)" |
| 327 |
else |
| 328 |
myconf="${myconf} $(use_with ssl openssl)" |
| 329 |
fi |
| 330 |
|
| 331 |
if mysql_version_is_at_least "5.0.60" ; then |
| 332 |
if use berkdb ; then |
| 333 |
elog "Berkeley DB support was disabled due to build failures" |
| 334 |
elog "on multiple arches, go to a version earlier than 5.0.60" |
| 335 |
elog "if you want it again. Gentoo bug #224067." |
| 336 |
fi |
| 337 |
myconf="${myconf} --without-berkeley-db" |
| 338 |
elif use berkdb ; then |
| 339 |
# The following fix is due to a bug with bdb on SPARC's. See: |
| 340 |
# http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 341 |
# It comes down to non-64-bit safety problems. |
| 342 |
if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 343 |
elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
| 344 |
myconf="${myconf} --without-berkeley-db" |
| 345 |
else |
| 346 |
myconf="${myconf} --with-berkeley-db=./bdb" |
| 347 |
fi |
| 348 |
else |
| 349 |
myconf="${myconf} --without-berkeley-db" |
| 350 |
fi |
| 351 |
|
| 352 |
if mysql_version_is_at_least "4.1.3" ; then |
| 353 |
myconf="${myconf} --with-geometry" |
| 354 |
myconf="${myconf} $(use_with cluster ndbcluster)" |
| 355 |
fi |
| 356 |
|
| 357 |
if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 358 |
# http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 359 |
myconf="${myconf} --with-archive-storage-engine" |
| 360 |
|
| 361 |
# http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 362 |
myconf="${myconf} --with-csv-storage-engine" |
| 363 |
|
| 364 |
# http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
| 365 |
myconf="${myconf} --with-blackhole-storage-engine" |
| 366 |
|
| 367 |
# http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 368 |
# http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 369 |
# http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 370 |
if mysql_version_is_at_least "5.0.3" ; then |
| 371 |
elog "Before using the Federated storage engine, please be sure to read" |
| 372 |
elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 373 |
myconf="${myconf} --with-federated-storage-engine" |
| 374 |
fi |
| 375 |
fi |
| 376 |
|
| 377 |
if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 378 |
myconf="${myconf} `use_enable community community-features`" |
| 379 |
if use community; then |
| 380 |
myconf="${myconf} `use_enable profiling`" |
| 381 |
else |
| 382 |
myconf="${myconf} --disable-profiling" |
| 383 |
fi |
| 384 |
fi |
| 385 |
|
| 386 |
mysql_version_is_at_least "5.0.18" \ |
| 387 |
&& use max-idx-128 \ |
| 388 |
&& myconf="${myconf} --with-max-indexes=128" |
| 389 |
} |
| 390 |
|
| 391 |
configure_51() { |
| 392 |
# TODO: !!!! readd --without-readline |
| 393 |
# the failure depend upon config/ac-macros/readline.m4 checking into |
| 394 |
# readline.h instead of history.h |
| 395 |
myconf="${myconf} $(use_with ssl)" |
| 396 |
myconf="${myconf} --enable-assembler" |
| 397 |
myconf="${myconf} --with-geometry" |
| 398 |
myconf="${myconf} --with-readline" |
| 399 |
myconf="${myconf} --with-row-based-replication" |
| 400 |
myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
| 401 |
myconf="${myconf} --without-pstack" |
| 402 |
use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 403 |
|
| 404 |
# 5.1 introduces a new way to manage storage engines (plugins) |
| 405 |
# like configuration=none |
| 406 |
local plugins="csv,myisam,myisammrg,heap" |
| 407 |
if use extraengine ; then |
| 408 |
# like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 409 |
plugins="${plugins},archive,blackhole,example,federated,partition" |
| 410 |
|
| 411 |
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" |
| 413 |
fi |
| 414 |
|
| 415 |
# Upstream specifically requests that InnoDB always be built. |
| 416 |
plugins="${plugins},innobase" |
| 417 |
|
| 418 |
# like configuration=max-no-ndb |
| 419 |
if use cluster ; then |
| 420 |
plugins="${plugins},ndbcluster" |
| 421 |
myconf="${myconf} --with-ndb-binlog" |
| 422 |
fi |
| 423 |
|
| 424 |
if mysql_version_is_at_least "5.2" ; then |
| 425 |
plugins="${plugins},falcon" |
| 426 |
fi |
| 427 |
|
| 428 |
myconf="${myconf} --with-plugins=${plugins}" |
| 429 |
} |
| 430 |
|
| 431 |
pbxt_src_configure() { |
| 432 |
mysql_init_vars |
| 433 |
|
| 434 |
pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 435 |
|
| 436 |
einfo "Reconfiguring dir '${PWD}'" |
| 437 |
AT_GNUCONF_UPDATE="yes" eautoreconf |
| 438 |
|
| 439 |
local myconf="" |
| 440 |
myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 441 |
use debug && myconf="${myconf} --with-debug=full" |
| 442 |
# TODO: is it safe/needed to use econf here ? |
| 443 |
./configure ${myconf} || die "Problem configuring PBXT storage engine" |
| 444 |
} |
| 445 |
|
| 446 |
pbxt_src_compile() { |
| 447 |
# Be backwards compatible for now |
| 448 |
if [[ $EAPI != 2 ]]; then |
| 449 |
pbxt_src_configure |
| 450 |
fi |
| 451 |
# TODO: is it safe/needed to use emake here ? |
| 452 |
make || die "Problem making PBXT storage engine (${myconf})" |
| 453 |
|
| 454 |
popd |
| 455 |
# TODO: modify test suite for PBXT |
| 456 |
} |
| 457 |
|
| 458 |
pbxt_src_install() { |
| 459 |
pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 460 |
make install || die "Failed to install PBXT" |
| 461 |
popd |
| 462 |
} |
| 463 |
|
| 464 |
# |
| 465 |
# EBUILD FUNCTIONS |
| 466 |
# |
| 467 |
mysql_pkg_setup() { |
| 468 |
if hasq test ${FEATURES} ; then |
| 469 |
if ! use minimal ; then |
| 470 |
if [[ $UID -eq 0 ]]; then |
| 471 |
eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 472 |
fi |
| 473 |
fi |
| 474 |
fi |
| 475 |
|
| 476 |
# Check for USE flag problems in pkg_setup |
| 477 |
if use static && use ssl ; then |
| 478 |
eerror "MySQL does not support being built statically with SSL support enabled!" |
| 479 |
die "MySQL does not support being built statically with SSL support enabled!" |
| 480 |
fi |
| 481 |
|
| 482 |
if ! mysql_version_is_at_least "5.0" \ |
| 483 |
&& use raid \ |
| 484 |
&& use static ; then |
| 485 |
eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 486 |
eerror "with RAID support enabled." |
| 487 |
die "USE flags 'raid' and 'static' conflict!" |
| 488 |
fi |
| 489 |
|
| 490 |
if mysql_version_is_at_least "4.1.3" \ |
| 491 |
&& ( use cluster || use extraengine ) \ |
| 492 |
&& use minimal ; then |
| 493 |
eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 494 |
die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 495 |
fi |
| 496 |
|
| 497 |
# This should come after all of the die statements |
| 498 |
enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 499 |
enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 500 |
|
| 501 |
mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 502 |
&& use berkdb \ |
| 503 |
&& elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 504 |
} |
| 505 |
|
| 506 |
mysql_src_unpack() { |
| 507 |
# Initialize the proper variables first |
| 508 |
mysql_init_vars |
| 509 |
|
| 510 |
unpack ${A} |
| 511 |
# Grab the patches |
| 512 |
[[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 513 |
|
| 514 |
mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
| 515 |
|
| 516 |
# Be backwards compatible for now |
| 517 |
if [[ $EAPI != 2 ]]; then |
| 518 |
mysql_src_prepare |
| 519 |
fi |
| 520 |
} |
| 521 |
|
| 522 |
mysql_src_prepare() { |
| 523 |
cd "${S}" |
| 524 |
|
| 525 |
# Apply the patches for this MySQL version |
| 526 |
EPATCH_SUFFIX="patch" |
| 527 |
mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 528 |
# Clean out old items |
| 529 |
rm -f "${EPATCH_SOURCE}"/* |
| 530 |
# Now link in right patches |
| 531 |
mysql_mv_patches |
| 532 |
# And apply |
| 533 |
epatch |
| 534 |
|
| 535 |
# Additional checks, remove bundled zlib |
| 536 |
rm -f "${S}/zlib/"*.[ch] |
| 537 |
sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 538 |
rm -f "scripts/mysqlbug" |
| 539 |
|
| 540 |
# Make charsets install in the right place |
| 541 |
find . -name 'Makefile.am' \ |
| 542 |
-exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 543 |
|
| 544 |
if mysql_version_is_at_least "4.1" ; then |
| 545 |
# Remove what needs to be recreated, so we're sure it's actually done |
| 546 |
find . -name Makefile \ |
| 547 |
-o -name Makefile.in \ |
| 548 |
-o -name configure \ |
| 549 |
-exec rm -f {} \; |
| 550 |
rm -f "ltmain.sh" |
| 551 |
rm -f "scripts/mysqlbug" |
| 552 |
fi |
| 553 |
|
| 554 |
local rebuilddirlist d |
| 555 |
|
| 556 |
if mysql_version_is_at_least "5.1.12" ; then |
| 557 |
rebuilddirlist="." |
| 558 |
# TODO: check this with a cmake expert |
| 559 |
cmake \ |
| 560 |
-DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 561 |
-DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 562 |
"storage/innobase" |
| 563 |
else |
| 564 |
rebuilddirlist=". innobase" |
| 565 |
fi |
| 566 |
|
| 567 |
for d in ${rebuilddirlist} ; do |
| 568 |
einfo "Reconfiguring dir '${d}'" |
| 569 |
pushd "${d}" &>/dev/null |
| 570 |
AT_GNUCONF_UPDATE="yes" eautoreconf |
| 571 |
popd &>/dev/null |
| 572 |
done |
| 573 |
|
| 574 |
if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 575 |
&& use berkdb ; then |
| 576 |
[[ -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" \ |
| 578 |
|| die "Could not copy libtool.m4 to bdb/dist/" |
| 579 |
#These files exist only with libtool-2*, and need to be included. |
| 580 |
if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
| 581 |
cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 582 |
cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 583 |
cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 584 |
cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
| 585 |
fi |
| 586 |
pushd "bdb/dist" &>/dev/null |
| 587 |
sh s_all \ |
| 588 |
|| die "Failed bdb reconfigure" |
| 589 |
popd &>/dev/null |
| 590 |
fi |
| 591 |
} |
| 592 |
|
| 593 |
mysql_src_configure() { |
| 594 |
# Make sure the vars are correctly initialized |
| 595 |
mysql_init_vars |
| 596 |
|
| 597 |
# $myconf is modified by the configure_* functions |
| 598 |
local myconf="" |
| 599 |
|
| 600 |
if use minimal ; then |
| 601 |
configure_minimal |
| 602 |
else |
| 603 |
configure_common |
| 604 |
if mysql_version_is_at_least "5.1.10" ; then |
| 605 |
configure_51 |
| 606 |
else |
| 607 |
configure_40_41_50 |
| 608 |
fi |
| 609 |
fi |
| 610 |
|
| 611 |
# Bug #114895, bug #110149 |
| 612 |
filter-flags "-O" "-O[01]" |
| 613 |
|
| 614 |
# glib-2.3.2_pre fix, bug #16496 |
| 615 |
append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 616 |
|
| 617 |
# As discovered by bug #246652, doing a double-level of SSP causes NDB to |
| 618 |
# fail badly during cluster startup. |
| 619 |
if [[ $(gcc-major-version) -lt 4 ]]; then |
| 620 |
filter-flags "-fstack-protector-all" |
| 621 |
fi |
| 622 |
|
| 623 |
CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 624 |
CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 625 |
mysql_version_is_at_least "5.0" \ |
| 626 |
&& CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 627 |
export CXXFLAGS |
| 628 |
|
| 629 |
# bug #283926, with GCC4.4, this is required to get correct behavior. |
| 630 |
append-flags -fno-strict-aliasing |
| 631 |
|
| 632 |
econf \ |
| 633 |
--libexecdir="/usr/sbin" \ |
| 634 |
--sysconfdir="${MY_SYSCONFDIR}" \ |
| 635 |
--localstatedir="${MY_LOCALSTATEDIR}" \ |
| 636 |
--sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 637 |
--libdir="${MY_LIBDIR}" \ |
| 638 |
--includedir="${MY_INCLUDEDIR}" \ |
| 639 |
--with-low-memory \ |
| 640 |
--with-client-ldflags=-lstdc++ \ |
| 641 |
--enable-thread-safe-client \ |
| 642 |
--with-comment="Gentoo Linux ${PF}" \ |
| 643 |
--without-docs \ |
| 644 |
${myconf} || die "econf failed" |
| 645 |
|
| 646 |
# TODO: Move this before autoreconf !!! |
| 647 |
find . -type f -name Makefile -print0 \ |
| 648 |
| xargs -0 -n100 sed -i \ |
| 649 |
-e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 650 |
|
| 651 |
if [[ $EAPI == 2 ]]; then |
| 652 |
mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
| 653 |
fi |
| 654 |
} |
| 655 |
|
| 656 |
mysql_src_compile() { |
| 657 |
# Be backwards compatible for now |
| 658 |
if [[ $EAPI != 2 ]]; then |
| 659 |
mysql_src_configure |
| 660 |
fi |
| 661 |
|
| 662 |
emake || die "emake failed" |
| 663 |
|
| 664 |
mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 665 |
} |
| 666 |
|
| 667 |
mysql_src_install() { |
| 668 |
# Make sure the vars are correctly initialized |
| 669 |
mysql_init_vars |
| 670 |
|
| 671 |
emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 672 |
|
| 673 |
mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 674 |
|
| 675 |
# Convenience links |
| 676 |
einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 677 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 678 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 679 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 680 |
|
| 681 |
# Various junk (my-*.cnf moved elsewhere) |
| 682 |
einfo "Removing duplicate /usr/share/mysql files" |
| 683 |
rm -Rf "${D}/usr/share/info" |
| 684 |
for removeme in "mysql-log-rotate" mysql.server* \ |
| 685 |
binary-configure* my-*.cnf mi_test_all* |
| 686 |
do |
| 687 |
rm -f "${D}"/usr/share/mysql/${removeme} |
| 688 |
done |
| 689 |
|
| 690 |
# Clean up stuff for a minimal build |
| 691 |
if use minimal ; then |
| 692 |
einfo "Remove all extra content for minimal build" |
| 693 |
rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 694 |
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} |
| 695 |
rm -f "${D}/usr/sbin/mysqld" |
| 696 |
rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 697 |
fi |
| 698 |
|
| 699 |
# Configuration stuff |
| 700 |
if mysql_version_is_at_least "4.1" ; then |
| 701 |
mysql_mycnf_version="4.1" |
| 702 |
else |
| 703 |
mysql_mycnf_version="4.0" |
| 704 |
fi |
| 705 |
einfo "Building default my.cnf" |
| 706 |
insinto "${MY_SYSCONFDIR}" |
| 707 |
doins scripts/mysqlaccess.conf |
| 708 |
sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 709 |
"${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 710 |
> "${TMPDIR}/my.cnf.ok" |
| 711 |
if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 712 |
sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 713 |
fi |
| 714 |
newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 715 |
|
| 716 |
# Minimal builds don't have the MySQL server |
| 717 |
if ! use minimal ; then |
| 718 |
einfo "Creating initial directories" |
| 719 |
# Empty directories ... |
| 720 |
diropts "-m0750" |
| 721 |
if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 722 |
dodir "${MY_DATADIR}" |
| 723 |
keepdir "${MY_DATADIR}" |
| 724 |
chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 725 |
fi |
| 726 |
|
| 727 |
diropts "-m0755" |
| 728 |
for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 729 |
dodir "${folder}" |
| 730 |
keepdir "${folder}" |
| 731 |
chown -R mysql:mysql "${D}/${folder}" |
| 732 |
done |
| 733 |
fi |
| 734 |
|
| 735 |
# Docs |
| 736 |
einfo "Installing docs" |
| 737 |
dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 738 |
doinfo "${S}"/Docs/mysql.info |
| 739 |
|
| 740 |
# Minimal builds don't have the MySQL server |
| 741 |
if ! use minimal ; then |
| 742 |
einfo "Including support files and sample configurations" |
| 743 |
docinto "support-files" |
| 744 |
for script in \ |
| 745 |
"${S}"/support-files/my-*.cnf \ |
| 746 |
"${S}"/support-files/magic \ |
| 747 |
"${S}"/support-files/ndb-config-2-node.ini |
| 748 |
do |
| 749 |
dodoc "${script}" |
| 750 |
done |
| 751 |
|
| 752 |
docinto "scripts" |
| 753 |
for script in "${S}"/scripts/mysql* ; do |
| 754 |
[[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 755 |
done |
| 756 |
|
| 757 |
fi |
| 758 |
|
| 759 |
mysql_lib_symlinks "${D}" |
| 760 |
} |
| 761 |
|
| 762 |
mysql_pkg_preinst() { |
| 763 |
enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 764 |
enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 765 |
} |
| 766 |
|
| 767 |
mysql_pkg_postinst() { |
| 768 |
# Make sure the vars are correctly initialized |
| 769 |
mysql_init_vars |
| 770 |
|
| 771 |
# Check FEATURES="collision-protect" before removing this |
| 772 |
[[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
| 773 |
|
| 774 |
# Secure the logfiles |
| 775 |
touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 776 |
chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 777 |
chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 778 |
|
| 779 |
# Minimal builds don't have the MySQL server |
| 780 |
if ! use minimal ; then |
| 781 |
docinto "support-files" |
| 782 |
for script in \ |
| 783 |
support-files/my-*.cnf \ |
| 784 |
support-files/magic \ |
| 785 |
support-files/ndb-config-2-node.ini |
| 786 |
do |
| 787 |
dodoc "${script}" |
| 788 |
done |
| 789 |
|
| 790 |
docinto "scripts" |
| 791 |
for script in scripts/mysql* ; do |
| 792 |
[[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 793 |
done |
| 794 |
|
| 795 |
einfo |
| 796 |
elog "You might want to run:" |
| 797 |
elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 798 |
elog "if this is a new install." |
| 799 |
einfo |
| 800 |
fi |
| 801 |
|
| 802 |
if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
| 803 |
# TODO: explain it better |
| 804 |
elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 805 |
elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 806 |
elog "if, after that, you cannot start the MySQL server," |
| 807 |
elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| 808 |
elog "use the MySQL upgrade script to restore the table" |
| 809 |
elog "or execute the following SQL command:" |
| 810 |
elog " CREATE TABLE IF NOT EXISTS plugin (" |
| 811 |
elog " name char(64) binary DEFAULT '' NOT NULL," |
| 812 |
elog " dl char(128) DEFAULT '' NOT NULL," |
| 813 |
elog " PRIMARY KEY (name)" |
| 814 |
elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
| 815 |
fi |
| 816 |
|
| 817 |
mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 818 |
&& use berkdb \ |
| 819 |
&& elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 820 |
} |
| 821 |
|
| 822 |
mysql_pkg_config() { |
| 823 |
local old_MY_DATADIR="${MY_DATADIR}" |
| 824 |
|
| 825 |
# Make sure the vars are correctly initialized |
| 826 |
mysql_init_vars |
| 827 |
|
| 828 |
[[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 829 |
|
| 830 |
if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 831 |
die "Minimal builds do NOT include the MySQL server" |
| 832 |
fi |
| 833 |
|
| 834 |
if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
| 835 |
local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
| 836 |
local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
| 837 |
|
| 838 |
if [[ -d "${old_MY_DATADIR_s}" ]]; then |
| 839 |
if [[ -d "${MY_DATADIR_s}" ]]; then |
| 840 |
ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
| 841 |
ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
| 842 |
else |
| 843 |
elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
| 844 |
mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
| 845 |
|| die "Moving MY_DATADIR failed" |
| 846 |
fi |
| 847 |
else |
| 848 |
ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
| 849 |
if [[ -d "${MY_DATADIR_s}" ]]; then |
| 850 |
ewarn "Attempting to use ${MY_DATADIR_s}" |
| 851 |
else |
| 852 |
eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
| 853 |
die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
| 854 |
fi |
| 855 |
fi |
| 856 |
fi |
| 857 |
|
| 858 |
local pwd1="a" |
| 859 |
local pwd2="b" |
| 860 |
local maxtry=5 |
| 861 |
|
| 862 |
if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 863 |
ewarn "You have already a MySQL database in place." |
| 864 |
ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 865 |
ewarn "Please rename or delete it if you wish to replace it." |
| 866 |
die "MySQL database already exists!" |
| 867 |
fi |
| 868 |
|
| 869 |
# Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 870 |
# localhost. Also causes weird failures. |
| 871 |
[[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 872 |
|
| 873 |
einfo "Creating the mysql database and setting proper" |
| 874 |
einfo "permissions on it ..." |
| 875 |
|
| 876 |
einfo "Insert a password for the mysql 'root' user" |
| 877 |
ewarn "Avoid [\"'\\_%] characters in the password" |
| 878 |
read -rsp " >" pwd1 ; echo |
| 879 |
|
| 880 |
einfo "Retype the password" |
| 881 |
read -rsp " >" pwd2 ; echo |
| 882 |
|
| 883 |
if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 884 |
die "Passwords are not the same" |
| 885 |
fi |
| 886 |
|
| 887 |
local options="" |
| 888 |
local sqltmp="$(emktemp)" |
| 889 |
|
| 890 |
local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
| 891 |
[[ -r "${help_tables}" ]] \ |
| 892 |
&& cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 893 |
|| touch "${TMPDIR}/fill_help_tables.sql" |
| 894 |
help_tables="${TMPDIR}/fill_help_tables.sql" |
| 895 |
|
| 896 |
pushd "${TMPDIR}" &>/dev/null |
| 897 |
"${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
| 898 |
if [ $? -ne 0 ]; then |
| 899 |
grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
| 900 |
die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
| 901 |
fi |
| 902 |
popd &>/dev/null |
| 903 |
[[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 904 |
|| die "MySQL databases not installed" |
| 905 |
chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 906 |
chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 907 |
|
| 908 |
if mysql_version_is_at_least "4.1.3" ; then |
| 909 |
options="--skip-ndbcluster" |
| 910 |
|
| 911 |
# Filling timezones, see |
| 912 |
# http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 913 |
"${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 914 |
|
| 915 |
if [[ -r "${help_tables}" ]] ; then |
| 916 |
cat "${help_tables}" >> "${sqltmp}" |
| 917 |
fi |
| 918 |
fi |
| 919 |
|
| 920 |
local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 921 |
local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 922 |
local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 923 |
${options} \ |
| 924 |
--user=mysql \ |
| 925 |
--skip-grant-tables \ |
| 926 |
--basedir=${ROOT}/usr \ |
| 927 |
--datadir=${ROOT}/${MY_DATADIR} \ |
| 928 |
--skip-innodb \ |
| 929 |
--skip-bdb \ |
| 930 |
--skip-networking \ |
| 931 |
--max_allowed_packet=8M \ |
| 932 |
--net_buffer_length=16K \ |
| 933 |
--socket=${socket} \ |
| 934 |
--pid-file=${pidfile}" |
| 935 |
${mysqld} & |
| 936 |
while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 937 |
maxtry=$((${maxtry}-1)) |
| 938 |
echo -n "." |
| 939 |
sleep 1 |
| 940 |
done |
| 941 |
|
| 942 |
# Do this from memory, as we don't want clear text passwords in temp files |
| 943 |
local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
| 944 |
"${ROOT}/usr/bin/mysql" \ |
| 945 |
--socket=${socket} \ |
| 946 |
-hlocalhost \ |
| 947 |
-e "${sql}" |
| 948 |
|
| 949 |
einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 950 |
|
| 951 |
"${ROOT}/usr/bin/mysql" \ |
| 952 |
--socket=${socket} \ |
| 953 |
-hlocalhost \ |
| 954 |
-uroot \ |
| 955 |
-p"${pwd1}" \ |
| 956 |
mysql < "${sqltmp}" |
| 957 |
|
| 958 |
# Stop the server and cleanup |
| 959 |
kill $(< "${pidfile}" ) |
| 960 |
rm -f "${sqltmp}" |
| 961 |
einfo "Stopping the server ..." |
| 962 |
wait %1 |
| 963 |
einfo "Done" |
| 964 |
} |
| 965 |
|
| 966 |
mysql_pkg_postrm() { |
| 967 |
: # mysql_lib_symlinks "${D}" |
| 968 |
} |