| 1 |
# Copyright 1999-2009 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.147 2010/08/08 23:31:05 robbat2 Exp $
|
| 4 |
|
| 5 |
# @ECLASS: mysql.eclass
|
| 6 |
# @MAINTAINER:
|
| 7 |
# Author: Francesco Riosa (Retired) <vivo@gentoo.org>
|
| 8 |
# Maintainers: MySQL Team <mysql-bugs@gentoo.org>
|
| 9 |
# - Luca Longinotti <chtekk@gentoo.org>
|
| 10 |
# - Robin H. Johnson <robbat2@gentoo.org>
|
| 11 |
# @BLURB: This eclass provides most of the functions for mysql ebuilds
|
| 12 |
# @DESCRIPTION:
|
| 13 |
# The mysql.eclass provides almost all the code to build the mysql ebuilds
|
| 14 |
# including the src_unpack, src_prepare, src_configure, src_compile,
|
| 15 |
# scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm
|
| 16 |
# phase hooks.
|
| 17 |
|
| 18 |
WANT_AUTOCONF="latest"
|
| 19 |
WANT_AUTOMAKE="latest"
|
| 20 |
|
| 21 |
inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs
|
| 22 |
|
| 23 |
# Shorten the path because the socket path length must be shorter than 107 chars
|
| 24 |
# and we will run a mysql server during test phase
|
| 25 |
S="${WORKDIR}/mysql"
|
| 26 |
|
| 27 |
[[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z"
|
| 28 |
if [[ "${MY_EXTRAS_VER}" == "live" ]]; then
|
| 29 |
EGIT_PROJECT=mysql-extras
|
| 30 |
EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git"
|
| 31 |
inherit git
|
| 32 |
fi
|
| 33 |
|
| 34 |
case "${EAPI:-0}" in
|
| 35 |
2)
|
| 36 |
EXPORT_FUNCTIONS pkg_setup \
|
| 37 |
src_unpack src_prepare \
|
| 38 |
src_configure src_compile \
|
| 39 |
src_install \
|
| 40 |
pkg_preinst pkg_postinst \
|
| 41 |
pkg_config pkg_postrm
|
| 42 |
IUSE_DEFAULT_ON='+'
|
| 43 |
;;
|
| 44 |
0 | 1)
|
| 45 |
EXPORT_FUNCTIONS pkg_setup \
|
| 46 |
src_unpack \
|
| 47 |
src_compile \
|
| 48 |
src_install \
|
| 49 |
pkg_preinst pkg_postinst \
|
| 50 |
pkg_config pkg_postrm
|
| 51 |
;;
|
| 52 |
*)
|
| 53 |
die "Unsupported EAPI: ${EAPI}" ;;
|
| 54 |
esac
|
| 55 |
|
| 56 |
|
| 57 |
# @ECLASS-VARIABLE: MYSQL_PV_MAJOR
|
| 58 |
# @DESCRIPTION:
|
| 59 |
# Upstream MySQL considers the first two parts of the version number to be the
|
| 60 |
# major version. Upgrades that change major version should always run
|
| 61 |
# mysql_upgrade.
|
| 62 |
MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})"
|
| 63 |
|
| 64 |
# Cluster is a special case...
|
| 65 |
if [[ "${PN}" == "mysql-cluster" ]]; then
|
| 66 |
case $PV in
|
| 67 |
6.1*|7.0*|7.1*) MYSQL_PV_MAJOR=5.1 ;;
|
| 68 |
esac
|
| 69 |
fi
|
| 70 |
|
| 71 |
|
| 72 |
# @ECLASS-VARIABLE: MYSQL_VERSION_ID
|
| 73 |
# @DESCRIPTION:
|
| 74 |
# MYSQL_VERSION_ID will be:
|
| 75 |
# major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99]
|
| 76 |
# This is an important part, because many of the choices the MySQL ebuild will do
|
| 77 |
# depend on this variable.
|
| 78 |
# In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803"
|
| 79 |
# We also strip off upstream's trailing letter that they use to respin tarballs
|
| 80 |
|
| 81 |
MYSQL_VERSION_ID=""
|
| 82 |
tpv="${PV%[a-z]}"
|
| 83 |
tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}"
|
| 84 |
for vatom in 0 1 2 3 ; do
|
| 85 |
# pad to length 2
|
| 86 |
tpv[${vatom}]="00${tpv[${vatom}]}"
|
| 87 |
MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}"
|
| 88 |
done
|
| 89 |
# strip leading "0" (otherwise it's considered an octal number by BASH)
|
| 90 |
MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"}
|
| 91 |
|
| 92 |
# @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES
|
| 93 |
# @DESCRIPTION:
|
| 94 |
# Specifiy if community features are available. Possible values are 1 (yes)
|
| 95 |
# and 0 (no).
|
| 96 |
# Community features are available in mysql-community
|
| 97 |
# AND in the re-merged mysql-5.0.82 and newer
|
| 98 |
if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then
|
| 99 |
MYSQL_COMMUNITY_FEATURES=1
|
| 100 |
elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then
|
| 101 |
MYSQL_COMMUNITY_FEATURES=1
|
| 102 |
elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then
|
| 103 |
MYSQL_COMMUNITY_FEATURES=1
|
| 104 |
elif [ "${PV#5.4}" != "${PV}" ] ; then
|
| 105 |
MYSQL_COMMUNITY_FEATURES=1
|
| 106 |
elif [ "${PV#5.5}" != "${PV}" ] ; then
|
| 107 |
MYSQL_COMMUNITY_FEATURES=1
|
| 108 |
elif [ "${PV#6}" != "${PV}" ] ; then
|
| 109 |
MYSQL_COMMUNITY_FEATURES=1
|
| 110 |
elif [ "${PV#7}" != "${PV}" ] ; then
|
| 111 |
MYSQL_COMMUNITY_FEATURES=1
|
| 112 |
else
|
| 113 |
MYSQL_COMMUNITY_FEATURES=0
|
| 114 |
fi
|
| 115 |
|
| 116 |
# @ECLASS-VARIABLE: XTRADB_VER
|
| 117 |
# @DESCRIPTION:
|
| 118 |
# Version of the XTRADB storage engine
|
| 119 |
XTRADB_VER="${XTRADB_VER}"
|
| 120 |
|
| 121 |
# @ECLASS-VARIABLE: PERCONA_VER
|
| 122 |
# @DESCRIPTION:
|
| 123 |
# Designation by PERCONA for a MySQL version to apply an XTRADB release
|
| 124 |
PERCONA_VER="${PERCONA_VER}"
|
| 125 |
|
| 126 |
# Be warned, *DEPEND are version-dependant
|
| 127 |
# These are used for both runtime and compiletime
|
| 128 |
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )
|
| 129 |
userland_GNU? ( sys-process/procps )
|
| 130 |
>=sys-apps/sed-4
|
| 131 |
>=sys-apps/texinfo-4.7-r1
|
| 132 |
>=sys-libs/readline-4.1
|
| 133 |
>=sys-libs/zlib-1.2.3"
|
| 134 |
|
| 135 |
[[ "${PN}" == "mariadb" ]] \
|
| 136 |
&& DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )"
|
| 137 |
|
| 138 |
# Having different flavours at the same time is not a good idea
|
| 139 |
for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do
|
| 140 |
[[ "${i}" == ${PN} ]] ||
|
| 141 |
DEPEND="${DEPEND} !dev-db/${i}"
|
| 142 |
done
|
| 143 |
|
| 144 |
RDEPEND="${DEPEND}
|
| 145 |
!minimal? ( dev-db/mysql-init-scripts )
|
| 146 |
selinux? ( sec-policy/selinux-mysql )"
|
| 147 |
|
| 148 |
# compile-time-only
|
| 149 |
mysql_version_is_at_least "5.1" \
|
| 150 |
|| DEPEND="${DEPEND} berkdb? ( sys-apps/ed )"
|
| 151 |
|
| 152 |
# compile-time-only
|
| 153 |
mysql_version_is_at_least "5.1.12" \
|
| 154 |
&& DEPEND="${DEPEND} >=dev-util/cmake-2.4.3"
|
| 155 |
|
| 156 |
# dev-perl/DBD-mysql is needed by some scripts installed by MySQL
|
| 157 |
PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )"
|
| 158 |
|
| 159 |
# For other stuff to bring us in
|
| 160 |
PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}"
|
| 161 |
|
| 162 |
# Work out the default SERVER_URI correctly
|
| 163 |
if [ -z "${SERVER_URI}" ]; then
|
| 164 |
[ -z "${MY_PV}" ] && MY_PV="${PV//_/-}"
|
| 165 |
if [ "${PN}" == "mariadb" ]; then
|
| 166 |
MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})"
|
| 167 |
MARIA_FULL_P="${PN}-${MARIA_FULL_PV}"
|
| 168 |
SERVER_URI="
|
| 169 |
http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz
|
| 170 |
http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz
|
| 171 |
http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz
|
| 172 |
"
|
| 173 |
# The community and cluster builds are on the mirrors
|
| 174 |
elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then
|
| 175 |
if [[ "${PN}" == "mysql-cluster" ]] ; then
|
| 176 |
URI_DIR="MySQL-Cluster"
|
| 177 |
URI_FILE="mysql-cluster-gpl"
|
| 178 |
else
|
| 179 |
URI_DIR="MySQL"
|
| 180 |
URI_FILE="mysql"
|
| 181 |
fi
|
| 182 |
URI_A="${URI_FILE}-${MY_PV}.tar.gz"
|
| 183 |
MIRROR_PV=$(get_version_component_range 1-2 ${PV})
|
| 184 |
# Recently upstream switched to an archive site, and not on mirrors
|
| 185 |
SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A}
|
| 186 |
mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}"
|
| 187 |
# The (old) enterprise source is on the primary site only
|
| 188 |
elif [ "${PN}" == "mysql" ]; then
|
| 189 |
SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz"
|
| 190 |
fi
|
| 191 |
fi
|
| 192 |
|
| 193 |
# Define correct SRC_URIs
|
| 194 |
SRC_URI="${SERVER_URI}"
|
| 195 |
|
| 196 |
# Gentoo patches to MySQL
|
| 197 |
[[ ${MY_EXTRAS_VER} != live ]] \
|
| 198 |
&& SRC_URI="${SRC_URI}
|
| 199 |
mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
|
| 200 |
http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
|
| 201 |
http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
|
| 202 |
|
| 203 |
DESCRIPTION="A fast, multi-threaded, multi-user SQL database server."
|
| 204 |
HOMEPAGE="http://www.mysql.com/"
|
| 205 |
if [[ "${PN}" == "mariadb" ]]; then
|
| 206 |
HOMEPAGE="http://askmonty.org/"
|
| 207 |
DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged."
|
| 208 |
fi
|
| 209 |
if [[ "${PN}" == "mysql-community" ]]; then
|
| 210 |
DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)"
|
| 211 |
fi
|
| 212 |
LICENSE="GPL-2"
|
| 213 |
SLOT="0"
|
| 214 |
IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test"
|
| 215 |
|
| 216 |
mysql_version_is_at_least "4.1" \
|
| 217 |
&& IUSE="${IUSE} latin1"
|
| 218 |
|
| 219 |
if mysql_version_is_at_least "4.1.3" ; then
|
| 220 |
IUSE="${IUSE} extraengine"
|
| 221 |
if [[ "${PN}" != "mysql-cluster" ]] ; then
|
| 222 |
IUSE="${IUSE} cluster"
|
| 223 |
fi
|
| 224 |
fi
|
| 225 |
|
| 226 |
mysql_version_is_at_least "5.0" \
|
| 227 |
|| IUSE="${IUSE} raid"
|
| 228 |
|
| 229 |
mysql_version_is_at_least "5.0.18" \
|
| 230 |
&& IUSE="${IUSE} max-idx-128"
|
| 231 |
|
| 232 |
mysql_version_is_at_least "5.1" \
|
| 233 |
|| IUSE="${IUSE} berkdb"
|
| 234 |
|
| 235 |
[ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \
|
| 236 |
&& IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling"
|
| 237 |
|
| 238 |
[[ "${PN}" == "mariadb" ]] \
|
| 239 |
&& IUSE="${IUSE} libevent"
|
| 240 |
|
| 241 |
# MariaDB has integrated PBXT
|
| 242 |
# PBXT_VERSION means that we have a PBXT patch for this PV
|
| 243 |
# PBXT was only introduced after 5.1.12
|
| 244 |
pbxt_patch_available() {
|
| 245 |
[[ "${PN}" != "mariadb" ]] \
|
| 246 |
&& mysql_version_is_at_least "5.1.12" \
|
| 247 |
&& [[ -n "${PBXT_VERSION}" ]]
|
| 248 |
return $?
|
| 249 |
}
|
| 250 |
|
| 251 |
pbxt_available() {
|
| 252 |
pbxt_patch_available || [[ "${PN}" == "mariadb" ]]
|
| 253 |
return $?
|
| 254 |
}
|
| 255 |
|
| 256 |
# Get the percona tarball if XTRADB_VER and PERCONA_VER are both set
|
| 257 |
# MariaDB has integrated XtraDB
|
| 258 |
# XTRADB_VERS means that we have a XTRADB patch for this PV
|
| 259 |
# XTRADB was only introduced after 5.1.26
|
| 260 |
xtradb_patch_available() {
|
| 261 |
[[ "${PN}" != "mariadb" ]] \
|
| 262 |
&& mysql_version_is_at_least "5.1.26" \
|
| 263 |
&& [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]]
|
| 264 |
return $?
|
| 265 |
}
|
| 266 |
|
| 267 |
|
| 268 |
pbxt_patch_available \
|
| 269 |
&& PBXT_P="pbxt-${PBXT_VERSION}" \
|
| 270 |
&& PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \
|
| 271 |
&& SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \
|
| 272 |
|
| 273 |
# PBXT_NEWSTYLE means pbxt is in storage/ and gets enabled as other plugins
|
| 274 |
# vs. built outside the dir
|
| 275 |
pbxt_available \
|
| 276 |
&& IUSE="${IUSE} pbxt" \
|
| 277 |
&& mysql_version_is_at_least "5.1.40" \
|
| 278 |
&& PBXT_NEWSTYLE=1
|
| 279 |
|
| 280 |
xtradb_patch_available \
|
| 281 |
&& XTRADB_P="percona-xtradb-${XTRADB_VER}" \
|
| 282 |
&& XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \
|
| 283 |
&& XTRADB_SRC_B1="http://www.percona.com/" \
|
| 284 |
&& XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \
|
| 285 |
&& XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \
|
| 286 |
&& XTRADB_SRC_URI2="${XTRADB_SRC_B2}/xtradb/${XTRADB_SRC_URI_COMMON}" \
|
| 287 |
&& XTRADB_SRC_URI3="${XTRADB_SRC_B1}/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \
|
| 288 |
&& SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} ${XTRADB_SRC_URI3} )" \
|
| 289 |
&& IUSE="${IUSE} xtradb"
|
| 290 |
|
| 291 |
#
|
| 292 |
# HELPER FUNCTIONS:
|
| 293 |
#
|
| 294 |
|
| 295 |
# @FUNCTION: mysql_disable_test
|
| 296 |
# @DESCRIPTION:
|
| 297 |
# Helper function to disable specific tests.
|
| 298 |
mysql_disable_test() {
|
| 299 |
local rawtestname testname testsuite reason mysql_disable_file
|
| 300 |
rawtestname="${1}" ; shift
|
| 301 |
reason="${@}"
|
| 302 |
ewarn "test '${rawtestname}' disabled: '${reason}'"
|
| 303 |
|
| 304 |
testsuite="${rawtestname/.*}"
|
| 305 |
testname="${rawtestname/*.}"
|
| 306 |
mysql_disable_file="${S}/mysql-test/t/disabled.def"
|
| 307 |
#einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}"
|
| 308 |
echo ${testname} : ${reason} >> "${mysql_disable_file}"
|
| 309 |
|
| 310 |
# ${S}/mysql-tests/t/disabled.def
|
| 311 |
#
|
| 312 |
# ${S}/mysql-tests/suite/federated/disabled.def
|
| 313 |
#
|
| 314 |
# ${S}/mysql-tests/suite/jp/t/disabled.def
|
| 315 |
# ${S}/mysql-tests/suite/ndb/t/disabled.def
|
| 316 |
# ${S}/mysql-tests/suite/rpl/t/disabled.def
|
| 317 |
# ${S}/mysql-tests/suite/parts/t/disabled.def
|
| 318 |
# ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def
|
| 319 |
# ${S}/mysql-tests/suite/ndb_team/t/disabled.def
|
| 320 |
# ${S}/mysql-tests/suite/binlog/t/disabled.def
|
| 321 |
# ${S}/mysql-tests/suite/innodb/t/disabled.def
|
| 322 |
if [ -n "${testsuite}" ]; then
|
| 323 |
for mysql_disable_file in \
|
| 324 |
${S}/mysql-test/suite/${testsuite}/disabled.def \
|
| 325 |
${S}/mysql-test/suite/${testsuite}/t/disabled.def \
|
| 326 |
FAILED ; do
|
| 327 |
[ -f "${mysql_disable_file}" ] && break
|
| 328 |
done
|
| 329 |
if [ "${mysql_disabled_file}" != "FAILED" ]; then
|
| 330 |
echo "${testname} : ${reason}" >> "${mysql_disable_file}"
|
| 331 |
else
|
| 332 |
ewarn "Could not find testsuite disabled.def location for ${rawtestname}"
|
| 333 |
fi
|
| 334 |
fi
|
| 335 |
}
|
| 336 |
|
| 337 |
# @FUNCTION: mysql_init_vars
|
| 338 |
# @DESCRIPTION:
|
| 339 |
# void mysql_init_vars()
|
| 340 |
# Initialize global variables
|
| 341 |
# 2005-11-19 <vivo@gentoo.org>
|
| 342 |
mysql_init_vars() {
|
| 343 |
MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"}
|
| 344 |
MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"}
|
| 345 |
MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"}
|
| 346 |
MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"}
|
| 347 |
MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"}
|
| 348 |
MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"}
|
| 349 |
|
| 350 |
if [[ -z "${MY_DATADIR}" ]] ; then
|
| 351 |
MY_DATADIR=""
|
| 352 |
if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then
|
| 353 |
MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \
|
| 354 |
| sed -ne '/datadir/s|^--datadir=||p' \
|
| 355 |
| tail -n1`
|
| 356 |
if [[ -z "${MY_DATADIR}" ]] ; then
|
| 357 |
MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \
|
| 358 |
| sed -e 's/.*=\s*//' \
|
| 359 |
| tail -n1`
|
| 360 |
fi
|
| 361 |
fi
|
| 362 |
if [[ -z "${MY_DATADIR}" ]] ; then
|
| 363 |
MY_DATADIR="${MY_LOCALSTATEDIR}"
|
| 364 |
einfo "Using default MY_DATADIR"
|
| 365 |
fi
|
| 366 |
elog "MySQL MY_DATADIR is ${MY_DATADIR}"
|
| 367 |
|
| 368 |
if [[ -z "${PREVIOUS_DATADIR}" ]] ; then
|
| 369 |
if [[ -e "${MY_DATADIR}" ]] ; then
|
| 370 |
# If you get this and you're wondering about it, see bug #207636
|
| 371 |
elog "MySQL datadir found in ${MY_DATADIR}"
|
| 372 |
elog "A new one will not be created."
|
| 373 |
PREVIOUS_DATADIR="yes"
|
| 374 |
else
|
| 375 |
PREVIOUS_DATADIR="no"
|
| 376 |
fi
|
| 377 |
export PREVIOUS_DATADIR
|
| 378 |
fi
|
| 379 |
else
|
| 380 |
if [[ ${EBUILD_PHASE} == "config" ]]; then
|
| 381 |
local new_MY_DATADIR
|
| 382 |
new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \
|
| 383 |
| sed -ne '/datadir/s|^--datadir=||p' \
|
| 384 |
| tail -n1`
|
| 385 |
|
| 386 |
if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then
|
| 387 |
ewarn "MySQL MY_DATADIR has changed"
|
| 388 |
ewarn "from ${MY_DATADIR}"
|
| 389 |
ewarn "to ${new_MY_DATADIR}"
|
| 390 |
MY_DATADIR="${new_MY_DATADIR}"
|
| 391 |
fi
|
| 392 |
fi
|
| 393 |
fi
|
| 394 |
|
| 395 |
if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then
|
| 396 |
MY_SOURCEDIR=${SERVER_URI##*/}
|
| 397 |
MY_SOURCEDIR=${MY_SOURCEDIR%.tar*}
|
| 398 |
fi
|
| 399 |
|
| 400 |
export MY_SHAREDSTATEDIR MY_SYSCONFDIR
|
| 401 |
export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR
|
| 402 |
export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR
|
| 403 |
}
|
| 404 |
|
| 405 |
configure_minimal() {
|
| 406 |
# These are things we exclude from a minimal build, please
|
| 407 |
# note that the server actually does get built and installed,
|
| 408 |
# but we then delete it before packaging.
|
| 409 |
local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline"
|
| 410 |
|
| 411 |
for i in ${minimal_exclude_list} ; do
|
| 412 |
myconf="${myconf} --without-${i}"
|
| 413 |
done
|
| 414 |
myconf="${myconf} --with-extra-charsets=none"
|
| 415 |
myconf="${myconf} --enable-local-infile"
|
| 416 |
|
| 417 |
if use static ; then
|
| 418 |
myconf="${myconf} --with-client-ldflags=-all-static"
|
| 419 |
myconf="${myconf} --disable-shared --with-pic"
|
| 420 |
else
|
| 421 |
myconf="${myconf} --enable-shared --enable-static"
|
| 422 |
fi
|
| 423 |
|
| 424 |
if mysql_version_is_at_least "4.1" && ! use latin1 ; then
|
| 425 |
myconf="${myconf} --with-charset=utf8"
|
| 426 |
myconf="${myconf} --with-collation=utf8_general_ci"
|
| 427 |
else
|
| 428 |
myconf="${myconf} --with-charset=latin1"
|
| 429 |
myconf="${myconf} --with-collation=latin1_swedish_ci"
|
| 430 |
fi
|
| 431 |
}
|
| 432 |
|
| 433 |
configure_common() {
|
| 434 |
myconf="${myconf} $(use_with big-tables)"
|
| 435 |
myconf="${myconf} --enable-local-infile"
|
| 436 |
myconf="${myconf} --with-extra-charsets=all"
|
| 437 |
myconf="${myconf} --with-mysqld-user=mysql"
|
| 438 |
myconf="${myconf} --with-server"
|
| 439 |
myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock"
|
| 440 |
myconf="${myconf} --without-libwrap"
|
| 441 |
|
| 442 |
if use static ; then
|
| 443 |
myconf="${myconf} --with-mysqld-ldflags=-all-static"
|
| 444 |
myconf="${myconf} --with-client-ldflags=-all-static"
|
| 445 |
myconf="${myconf} --disable-shared --with-pic"
|
| 446 |
else
|
| 447 |
myconf="${myconf} --enable-shared --enable-static"
|
| 448 |
fi
|
| 449 |
|
| 450 |
if use debug ; then
|
| 451 |
myconf="${myconf} --with-debug=full"
|
| 452 |
else
|
| 453 |
myconf="${myconf} --without-debug"
|
| 454 |
mysql_version_is_at_least "4.1.3" \
|
| 455 |
&& ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \
|
| 456 |
&& myconf="${myconf} --without-ndb-debug"
|
| 457 |
fi
|
| 458 |
|
| 459 |
if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then
|
| 460 |
ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}"
|
| 461 |
ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}."
|
| 462 |
ewarn "You MUST file bugs without these variables set."
|
| 463 |
myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}"
|
| 464 |
myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}"
|
| 465 |
elif mysql_version_is_at_least "4.1" && ! use latin1 ; then
|
| 466 |
myconf="${myconf} --with-charset=utf8"
|
| 467 |
myconf="${myconf} --with-collation=utf8_general_ci"
|
| 468 |
else
|
| 469 |
myconf="${myconf} --with-charset=latin1"
|
| 470 |
myconf="${myconf} --with-collation=latin1_swedish_ci"
|
| 471 |
fi
|
| 472 |
|
| 473 |
if use embedded ; then
|
| 474 |
myconf="${myconf} --with-embedded-privilege-control"
|
| 475 |
myconf="${myconf} --with-embedded-server"
|
| 476 |
else
|
| 477 |
myconf="${myconf} --without-embedded-privilege-control"
|
| 478 |
myconf="${myconf} --without-embedded-server"
|
| 479 |
fi
|
| 480 |
|
| 481 |
}
|
| 482 |
|
| 483 |
configure_40_41_50() {
|
| 484 |
myconf="${myconf} $(use_with perl bench)"
|
| 485 |
myconf="${myconf} --enable-assembler"
|
| 486 |
myconf="${myconf} --with-extra-tools"
|
| 487 |
myconf="${myconf} --with-innodb"
|
| 488 |
myconf="${myconf} --without-readline"
|
| 489 |
myconf="${myconf} $(use_with ssl openssl)"
|
| 490 |
mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)"
|
| 491 |
|
| 492 |
# --with-vio is not needed anymore, it's on by default and
|
| 493 |
# has been removed from configure
|
| 494 |
# Apply to 4.x and 5.0.[0-3]
|
| 495 |
if use ssl ; then
|
| 496 |
mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio"
|
| 497 |
fi
|
| 498 |
|
| 499 |
if mysql_version_is_at_least "5.0.60" ; then
|
| 500 |
if use berkdb ; then
|
| 501 |
elog "Berkeley DB support was disabled due to build failures"
|
| 502 |
elog "on multiple arches, go to a version earlier than 5.0.60"
|
| 503 |
elog "if you want it again. Gentoo bug #224067."
|
| 504 |
fi
|
| 505 |
myconf="${myconf} --without-berkeley-db"
|
| 506 |
elif use berkdb ; then
|
| 507 |
# The following fix is due to a bug with bdb on SPARC's. See:
|
| 508 |
# http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8
|
| 509 |
# It comes down to non-64-bit safety problems.
|
| 510 |
if use alpha || use amd64 || use hppa || use mips || use sparc ; then
|
| 511 |
elog "Berkeley DB support was disabled due to compatibility issues on this arch"
|
| 512 |
myconf="${myconf} --without-berkeley-db"
|
| 513 |
else
|
| 514 |
myconf="${myconf} --with-berkeley-db=./bdb"
|
| 515 |
fi
|
| 516 |
else
|
| 517 |
myconf="${myconf} --without-berkeley-db"
|
| 518 |
fi
|
| 519 |
|
| 520 |
if mysql_version_is_at_least "4.1.3" ; then
|
| 521 |
myconf="${myconf} --with-geometry"
|
| 522 |
if [[ "${PN}" != "mysql-cluster" ]] ; then
|
| 523 |
myconf="${myconf} $(use_with cluster ndbcluster)"
|
| 524 |
fi
|
| 525 |
fi
|
| 526 |
|
| 527 |
if mysql_version_is_at_least "4.1.3" && use extraengine ; then
|
| 528 |
# http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html
|
| 529 |
myconf="${myconf} --with-archive-storage-engine"
|
| 530 |
|
| 531 |
# http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html
|
| 532 |
myconf="${myconf} --with-csv-storage-engine"
|
| 533 |
|
| 534 |
# http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html
|
| 535 |
myconf="${myconf} --with-blackhole-storage-engine"
|
| 536 |
|
| 537 |
# http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html
|
| 538 |
# http://dev.mysql.com/doc/mysql/en/federated-description.html
|
| 539 |
# http://dev.mysql.com/doc/mysql/en/federated-limitations.html
|
| 540 |
if mysql_version_is_at_least "5.0.3" ; then
|
| 541 |
elog "Before using the Federated storage engine, please be sure to read"
|
| 542 |
elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html"
|
| 543 |
myconf="${myconf} --with-federated-storage-engine"
|
| 544 |
fi
|
| 545 |
fi
|
| 546 |
|
| 547 |
if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then
|
| 548 |
myconf="${myconf} `use_enable community community-features`"
|
| 549 |
if use community; then
|
| 550 |
myconf="${myconf} `use_enable profiling`"
|
| 551 |
else
|
| 552 |
myconf="${myconf} --disable-profiling"
|
| 553 |
fi
|
| 554 |
fi
|
| 555 |
|
| 556 |
mysql_version_is_at_least "5.0.18" \
|
| 557 |
&& use max-idx-128 \
|
| 558 |
&& myconf="${myconf} --with-max-indexes=128"
|
| 559 |
}
|
| 560 |
|
| 561 |
configure_51() {
|
| 562 |
# TODO: !!!! readd --without-readline
|
| 563 |
# the failure depend upon config/ac-macros/readline.m4 checking into
|
| 564 |
# readline.h instead of history.h
|
| 565 |
myconf="${myconf} $(use_with ssl ssl /usr)"
|
| 566 |
myconf="${myconf} --enable-assembler"
|
| 567 |
myconf="${myconf} --with-geometry"
|
| 568 |
myconf="${myconf} --with-readline"
|
| 569 |
myconf="${myconf} --with-zlib-dir=/usr/"
|
| 570 |
myconf="${myconf} --without-pstack"
|
| 571 |
myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin"
|
| 572 |
|
| 573 |
use max-idx-128 && myconf="${myconf} --with-max-indexes=128"
|
| 574 |
if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then
|
| 575 |
myconf="${myconf} $(use_enable community community-features)"
|
| 576 |
if use community; then
|
| 577 |
myconf="${myconf} $(use_enable profiling)"
|
| 578 |
else
|
| 579 |
myconf="${myconf} --disable-profiling"
|
| 580 |
fi
|
| 581 |
fi
|
| 582 |
|
| 583 |
# Scan for all available plugins
|
| 584 |
local plugins_avail="$(
|
| 585 |
LANG=C \
|
| 586 |
find "${S}" \
|
| 587 |
\( \
|
| 588 |
-name 'plug.in' \
|
| 589 |
-o -iname 'configure.in' \
|
| 590 |
-o -iname 'configure.ac' \
|
| 591 |
\) \
|
| 592 |
-print0 \
|
| 593 |
| xargs -0 sed -r -n \
|
| 594 |
-e '/^MYSQL_STORAGE_ENGINE/{
|
| 595 |
s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ;
|
| 596 |
s~^([^ ]+).*~\1~gp;
|
| 597 |
}' \
|
| 598 |
| tr -s '\n' ' '
|
| 599 |
)"
|
| 600 |
|
| 601 |
# 5.1 introduces a new way to manage storage engines (plugins)
|
| 602 |
# like configuration=none
|
| 603 |
# This base set are required, and will always be statically built.
|
| 604 |
local plugins_sta="csv myisam myisammrg heap"
|
| 605 |
local plugins_dyn=""
|
| 606 |
local plugins_dis="example ibmdb2i"
|
| 607 |
|
| 608 |
# These aren't actually required by the base set, but are really useful:
|
| 609 |
plugins_sta="${plugins_sta} archive blackhole"
|
| 610 |
|
| 611 |
# default in 5.5.4
|
| 612 |
if mysql_version_is_at_least "5.5.4" ; then
|
| 613 |
plugins_sta="${plugins_sta} partition"
|
| 614 |
fi
|
| 615 |
# Now the extras
|
| 616 |
if use extraengine ; then
|
| 617 |
# like configuration=max-no-ndb, archive and example removed in 5.1.11
|
| 618 |
# not added yet: ibmdb2i
|
| 619 |
# Not supporting as examples: example,daemon_example,ftexample
|
| 620 |
plugins_sta="${plugins_sta} partition"
|
| 621 |
plugins_dyn="${plugins_sta} federated"
|
| 622 |
|
| 623 |
if [[ "${PN}" != "mariadb" ]] ; then
|
| 624 |
elog "Before using the Federated storage engine, please be sure to read"
|
| 625 |
elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html"
|
| 626 |
else
|
| 627 |
elog "MariaDB includes the FederatedX engine. Be sure to read"
|
| 628 |
elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine"
|
| 629 |
fi
|
| 630 |
else
|
| 631 |
plugins_dis="${plugins_dis} partition federated"
|
| 632 |
fi
|
| 633 |
|
| 634 |
# Upstream specifically requests that InnoDB always be built:
|
| 635 |
# - innobase, innodb_plugin
|
| 636 |
# Build falcon if available for 6.x series.
|
| 637 |
for i in innobase falcon ; do
|
| 638 |
[ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}"
|
| 639 |
done
|
| 640 |
for i in innodb_plugin ; do
|
| 641 |
[ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}"
|
| 642 |
done
|
| 643 |
|
| 644 |
# like configuration=max-no-ndb
|
| 645 |
if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then
|
| 646 |
plugins_sta="${plugins_sta} ndbcluster partition"
|
| 647 |
plugins_dis="${plugins_dis//partition}"
|
| 648 |
myconf="${myconf} --with-ndb-binlog"
|
| 649 |
else
|
| 650 |
plugins_dis="${plugins_dis} ndbcluster"
|
| 651 |
fi
|
| 652 |
|
| 653 |
if [[ "${PN}" == "mariadb" ]] ; then
|
| 654 |
# In MariaDB, InnoDB is packaged in the xtradb directory, so it's not
|
| 655 |
# caught above.
|
| 656 |
plugins_sta="${plugins_sta} maria innobase"
|
| 657 |
myconf="${myconf} $(use_with libevent)"
|
| 658 |
# This is not optional, without it several upstream testcases fail.
|
| 659 |
# Also strongly recommended by upstream.
|
| 660 |
myconf="${myconf} --with-maria-tmp-tables"
|
| 661 |
fi
|
| 662 |
|
| 663 |
if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then
|
| 664 |
use pbxt \
|
| 665 |
&& plugins_dyn="${plugins_dyn} pbxt" \
|
| 666 |
|| plugins_dis="${plugins_dis} pbxt"
|
| 667 |
fi
|
| 668 |
|
| 669 |
use static && \
|
| 670 |
plugins_sta="${plugins_sta} ${plugins_dyn}" && \
|
| 671 |
plugins_dyn=""
|
| 672 |
|
| 673 |
einfo "Available plugins: ${plugins_avail}"
|
| 674 |
einfo "Dynamic plugins: ${plugins_dyn}"
|
| 675 |
einfo "Static plugins: ${plugins_sta}"
|
| 676 |
einfo "Disabled plugins: ${plugins_dis}"
|
| 677 |
|
| 678 |
# These are the static plugins
|
| 679 |
myconf="${myconf} --with-plugins=${plugins_sta// /,}"
|
| 680 |
# And the disabled ones
|
| 681 |
for i in ${plugins_dis} ; do
|
| 682 |
myconf="${myconf} --without-plugin-${i}"
|
| 683 |
done
|
| 684 |
}
|
| 685 |
|
| 686 |
pbxt_src_configure() {
|
| 687 |
mysql_init_vars
|
| 688 |
|
| 689 |
pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null
|
| 690 |
|
| 691 |
einfo "Reconfiguring dir '${PWD}'"
|
| 692 |
AT_GNUCONF_UPDATE="yes" eautoreconf
|
| 693 |
|
| 694 |
local myconf=""
|
| 695 |
myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)"
|
| 696 |
use debug && myconf="${myconf} --with-debug=full"
|
| 697 |
econf ${myconf} || die "Problem configuring PBXT storage engine"
|
| 698 |
}
|
| 699 |
|
| 700 |
pbxt_src_compile() {
|
| 701 |
|
| 702 |
# Be backwards compatible for now
|
| 703 |
if [[ $EAPI != 2 ]]; then
|
| 704 |
pbxt_src_configure
|
| 705 |
fi
|
| 706 |
# TODO: is it safe/needed to use emake here ?
|
| 707 |
make || die "Problem making PBXT storage engine (${myconf})"
|
| 708 |
|
| 709 |
popd
|
| 710 |
# TODO: modify test suite for PBXT
|
| 711 |
}
|
| 712 |
|
| 713 |
pbxt_src_install() {
|
| 714 |
pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null
|
| 715 |
emake install DESTDIR="${D}" || die "Failed to install PBXT"
|
| 716 |
popd
|
| 717 |
}
|
| 718 |
|
| 719 |
#
|
| 720 |
# EBUILD FUNCTIONS
|
| 721 |
#
|
| 722 |
# @FUNCTION: mysql_pkg_setup
|
| 723 |
# @DESCRIPTION:
|
| 724 |
# Perform some basic tests and tasks during pkg_setup phase:
|
| 725 |
# die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv"
|
| 726 |
# check for conflicting use flags
|
| 727 |
# create new user and group for mysql
|
| 728 |
# warn about deprecated features
|
| 729 |
mysql_pkg_setup() {
|
| 730 |
if hasq test ${FEATURES} ; then
|
| 731 |
if ! use minimal ; then
|
| 732 |
if [[ $UID -eq 0 ]]; then
|
| 733 |
eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root."
|
| 734 |
fi
|
| 735 |
fi
|
| 736 |
fi
|
| 737 |
|
| 738 |
# Check for USE flag problems in pkg_setup
|
| 739 |
if use static && use ssl ; then
|
| 740 |
M="MySQL does not support being built statically with SSL support enabled!"
|
| 741 |
eerror "${M}"
|
| 742 |
die "${M}"
|
| 743 |
fi
|
| 744 |
|
| 745 |
if ! mysql_version_is_at_least "5.0" \
|
| 746 |
&& use raid \
|
| 747 |
&& use static ; then
|
| 748 |
eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically"
|
| 749 |
eerror "with RAID support enabled."
|
| 750 |
die "USE flags 'raid' and 'static' conflict!"
|
| 751 |
fi
|
| 752 |
|
| 753 |
if mysql_version_is_at_least "4.1.3" \
|
| 754 |
&& ( use cluster || use extraengine || use embedded ) \
|
| 755 |
&& use minimal ; then
|
| 756 |
M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!"
|
| 757 |
eerror "${M}"
|
| 758 |
die "${M}"
|
| 759 |
fi
|
| 760 |
|
| 761 |
if mysql_version_is_at_least "5.1" \
|
| 762 |
&& xtradb_patch_available \
|
| 763 |
&& use xtradb \
|
| 764 |
&& use embedded ; then
|
| 765 |
M="USE flags 'xtradb' and 'embedded' conflict and cause build failures"
|
| 766 |
eerror "${M}"
|
| 767 |
die "${M}"
|
| 768 |
fi
|
| 769 |
|
| 770 |
# Bug #290570, 284946, 307251
|
| 771 |
# Upstream changes made us need a fairly new GCC4.
|
| 772 |
# But only for 5.0.8[3-6]!
|
| 773 |
if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then
|
| 774 |
GCC_VER=$(gcc-version)
|
| 775 |
case ${GCC_VER} in
|
| 776 |
2*|3*|4.0|4.1|4.2)
|
| 777 |
eerror "Some releases of MySQL required a very new GCC, and then"
|
| 778 |
eerror "later release relaxed that requirement again. Either pick a"
|
| 779 |
eerror "MySQL >=5.0.87, or use a newer GCC."
|
| 780 |
die "Active GCC too old!" ;;
|
| 781 |
esac
|
| 782 |
fi
|
| 783 |
|
| 784 |
# This should come after all of the die statements
|
| 785 |
enewgroup mysql 60 || die "problem adding 'mysql' group"
|
| 786 |
enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user"
|
| 787 |
|
| 788 |
mysql_check_version_range "4.0 to 5.0.99.99" \
|
| 789 |
&& use berkdb \
|
| 790 |
&& elog "Berkeley DB support is deprecated and will be removed in future versions!"
|
| 791 |
|
| 792 |
if [ "${PN}" != "mysql-cluster" ] && use cluster; then
|
| 793 |
ewarn "Upstream has noted that the NDB cluster support in the 5.0 and"
|
| 794 |
ewarn "5.1 series should NOT be put into production. In the near"
|
| 795 |
ewarn "future, it will be disabled from building."
|
| 796 |
ewarn ""
|
| 797 |
ewarn "If you need NDB support, you should instead move to the new"
|
| 798 |
ewarn "mysql-cluster package that represents that upstream NDB"
|
| 799 |
ewarn "development."
|
| 800 |
fi
|
| 801 |
}
|
| 802 |
|
| 803 |
# @FUNCTION: mysql_src_unpack
|
| 804 |
# @DESCRIPTION:
|
| 805 |
# Unpack the source code and call mysql_src_prepare for EAPI < 2.
|
| 806 |
mysql_src_unpack() {
|
| 807 |
# Initialize the proper variables first
|
| 808 |
mysql_init_vars
|
| 809 |
|
| 810 |
unpack ${A}
|
| 811 |
# Grab the patches
|
| 812 |
[[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack
|
| 813 |
|
| 814 |
mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}"
|
| 815 |
|
| 816 |
# Be backwards compatible for now
|
| 817 |
case ${EAPI:-0} in
|
| 818 |
2) : ;;
|
| 819 |
0 | 1) mysql_src_prepare ;;
|
| 820 |
esac
|
| 821 |
}
|
| 822 |
|
| 823 |
# @FUNCTION: mysql_src_prepare
|
| 824 |
# @DESCRIPTION:
|
| 825 |
# Apply patches to the source code and remove unneeded bundled libs.
|
| 826 |
mysql_src_prepare() {
|
| 827 |
cd "${S}"
|
| 828 |
|
| 829 |
# Apply the patches for this MySQL version
|
| 830 |
EPATCH_SUFFIX="patch"
|
| 831 |
mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory"
|
| 832 |
# Clean out old items
|
| 833 |
rm -f "${EPATCH_SOURCE}"/*
|
| 834 |
# Now link in right patches
|
| 835 |
mysql_mv_patches
|
| 836 |
# And apply
|
| 837 |
epatch
|
| 838 |
|
| 839 |
# last -fPIC fixup, per bug #305873
|
| 840 |
i="${S}"/storage/innodb_plugin/plug.in
|
| 841 |
[ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}"
|
| 842 |
|
| 843 |
# Additional checks, remove bundled zlib (Cluster needs this, for static
|
| 844 |
# memory management in zlib, leave available for Cluster)
|
| 845 |
if [[ "${PN}" != "mysql-cluster" ]] ; then
|
| 846 |
rm -f "${S}/zlib/"*.[ch]
|
| 847 |
sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in"
|
| 848 |
fi
|
| 849 |
rm -f "scripts/mysqlbug"
|
| 850 |
|
| 851 |
# Make charsets install in the right place
|
| 852 |
find . -name 'Makefile.am' \
|
| 853 |
-exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \;
|
| 854 |
|
| 855 |
if mysql_version_is_at_least "4.1" ; then
|
| 856 |
# Remove what needs to be recreated, so we're sure it's actually done
|
| 857 |
einfo "Cleaning up old buildscript files"
|
| 858 |
find . -name Makefile \
|
| 859 |
-o -name Makefile.in \
|
| 860 |
-o -name configure \
|
| 861 |
-exec rm -f {} \;
|
| 862 |
rm -f "ltmain.sh"
|
| 863 |
rm -f "scripts/mysqlbug"
|
| 864 |
fi
|
| 865 |
|
| 866 |
local rebuilddirlist d
|
| 867 |
|
| 868 |
if xtradb_patch_available && use xtradb ; then
|
| 869 |
einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)"
|
| 870 |
pushd "${S}"/storage >/dev/null
|
| 871 |
i="innobase"
|
| 872 |
o="${WORKDIR}/storage-${i}.mysql-upstream"
|
| 873 |
# Have we been here already?
|
| 874 |
[ -d "${o}" ] && rm -f "${i}"
|
| 875 |
# Or maybe we haven't
|
| 876 |
[ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}"
|
| 877 |
cp -ral "${WORKDIR}/${XTRADB_P}" "${i}"
|
| 878 |
popd >/dev/null
|
| 879 |
fi
|
| 880 |
|
| 881 |
if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then
|
| 882 |
einfo "Adding storage engine: PBXT"
|
| 883 |
pushd "${S}"/storage >/dev/null
|
| 884 |
i='pbxt'
|
| 885 |
[ -d "${i}" ] && rm -rf "${i}"
|
| 886 |
cp -ral "${WORKDIR}/${PBXT_P}" "${i}"
|
| 887 |
popd >/dev/null
|
| 888 |
fi
|
| 889 |
|
| 890 |
if mysql_version_is_at_least "5.1.12" ; then
|
| 891 |
rebuilddirlist="."
|
| 892 |
# This does not seem to be needed presently. robbat2 2010/02/23
|
| 893 |
#einfo "Updating innobase cmake"
|
| 894 |
## TODO: check this with a cmake expert
|
| 895 |
#cmake \
|
| 896 |
# -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \
|
| 897 |
# -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \
|
| 898 |
# "storage/innobase"
|
| 899 |
else
|
| 900 |
rebuilddirlist=". innobase"
|
| 901 |
fi
|
| 902 |
|
| 903 |
for d in ${rebuilddirlist} ; do
|
| 904 |
einfo "Reconfiguring dir '${d}'"
|
| 905 |
pushd "${d}" &>/dev/null
|
| 906 |
AT_GNUCONF_UPDATE="yes" eautoreconf
|
| 907 |
popd &>/dev/null
|
| 908 |
done
|
| 909 |
|
| 910 |
if mysql_check_version_range "4.1 to 5.0.99.99" \
|
| 911 |
&& use berkdb ; then
|
| 912 |
einfo "Fixing up berkdb buildsystem"
|
| 913 |
[[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh"
|
| 914 |
cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \
|
| 915 |
|| die "Could not copy libtool.m4 to bdb/dist/"
|
| 916 |
#These files exist only with libtool-2*, and need to be included.
|
| 917 |
if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then
|
| 918 |
cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac"
|
| 919 |
cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac"
|
| 920 |
cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac"
|
| 921 |
cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac"
|
| 922 |
fi
|
| 923 |
pushd "bdb/dist" &>/dev/null
|
| 924 |
sh s_all \
|
| 925 |
|| die "Failed bdb reconfigure"
|
| 926 |
popd &>/dev/null
|
| 927 |
fi
|
| 928 |
}
|
| 929 |
|
| 930 |
# @FUNCTION: mysql_src_configure
|
| 931 |
# @DESCRIPTION:
|
| 932 |
# Configure mysql to build the code for Gentoo respecting the use flags.
|
| 933 |
mysql_src_configure() {
|
| 934 |
# Make sure the vars are correctly initialized
|
| 935 |
mysql_init_vars
|
| 936 |
|
| 937 |
# $myconf is modified by the configure_* functions
|
| 938 |
local myconf=""
|
| 939 |
|
| 940 |
if use minimal ; then
|
| 941 |
configure_minimal
|
| 942 |
else
|
| 943 |
configure_common
|
| 944 |
if mysql_version_is_at_least "5.1.10" ; then
|
| 945 |
configure_51
|
| 946 |
else
|
| 947 |
configure_40_41_50
|
| 948 |
fi
|
| 949 |
fi
|
| 950 |
|
| 951 |
# Bug #114895, bug #110149
|
| 952 |
filter-flags "-O" "-O[01]"
|
| 953 |
|
| 954 |
# glib-2.3.2_pre fix, bug #16496
|
| 955 |
append-flags "-DHAVE_ERRNO_AS_DEFINE=1"
|
| 956 |
|
| 957 |
# As discovered by bug #246652, doing a double-level of SSP causes NDB to
|
| 958 |
# fail badly during cluster startup.
|
| 959 |
if [[ $(gcc-major-version) -lt 4 ]]; then
|
| 960 |
filter-flags "-fstack-protector-all"
|
| 961 |
fi
|
| 962 |
|
| 963 |
CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing"
|
| 964 |
CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti"
|
| 965 |
mysql_version_is_at_least "5.0" \
|
| 966 |
&& CXXFLAGS="${CXXFLAGS} -fno-implicit-templates"
|
| 967 |
export CXXFLAGS
|
| 968 |
|
| 969 |
# bug #283926, with GCC4.4, this is required to get correct behavior.
|
| 970 |
append-flags -fno-strict-aliasing
|
| 971 |
|
| 972 |
econf \
|
| 973 |
--libexecdir="/usr/sbin" \
|
| 974 |
--sysconfdir="${MY_SYSCONFDIR}" \
|
| 975 |
--localstatedir="${MY_LOCALSTATEDIR}" \
|
| 976 |
--sharedstatedir="${MY_SHAREDSTATEDIR}" \
|
| 977 |
--libdir="${MY_LIBDIR}" \
|
| 978 |
--includedir="${MY_INCLUDEDIR}" \
|
| 979 |
--with-low-memory \
|
| 980 |
--with-client-ldflags=-lstdc++ \
|
| 981 |
--enable-thread-safe-client \
|
| 982 |
--with-comment="Gentoo Linux ${PF}" \
|
| 983 |
--without-docs \
|
| 984 |
${myconf} || die "econf failed"
|
| 985 |
|
| 986 |
# TODO: Move this before autoreconf !!!
|
| 987 |
find . -type f -name Makefile -print0 \
|
| 988 |
| xargs -0 -n100 sed -i \
|
| 989 |
-e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|'
|
| 990 |
|
| 991 |
if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then
|
| 992 |
pbxt_patch_available && use pbxt && pbxt_src_configure
|
| 993 |
fi
|
| 994 |
}
|
| 995 |
|
| 996 |
# @FUNCTION: mysql_src_compile
|
| 997 |
# @DESCRIPTION:
|
| 998 |
# Compile the mysql code.
|
| 999 |
mysql_src_compile() {
|
| 1000 |
# Be backwards compatible for now
|
| 1001 |
case ${EAPI:-0} in
|
| 1002 |
2) : ;;
|
| 1003 |
0 | 1) mysql_src_configure ;;
|
| 1004 |
esac
|
| 1005 |
|
| 1006 |
emake || die "emake failed"
|
| 1007 |
|
| 1008 |
if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then
|
| 1009 |
pbxt_patch_available && use pbxt && pbxt_src_compile
|
| 1010 |
fi
|
| 1011 |
}
|
| 1012 |
|
| 1013 |
# @FUNCTION: mysql_src_install
|
| 1014 |
# @DESCRIPTION:
|
| 1015 |
# Install mysql.
|
| 1016 |
mysql_src_install() {
|
| 1017 |
# Make sure the vars are correctly initialized
|
| 1018 |
mysql_init_vars
|
| 1019 |
|
| 1020 |
emake install \
|
| 1021 |
DESTDIR="${D}" \
|
| 1022 |
benchdir_root="${MY_SHAREDSTATEDIR}" \
|
| 1023 |
testroot="${MY_SHAREDSTATEDIR}" \
|
| 1024 |
|| die "emake install failed"
|
| 1025 |
|
| 1026 |
if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then
|
| 1027 |
pbxt_patch_available && use pbxt && pbxt_src_install
|
| 1028 |
fi
|
| 1029 |
|
| 1030 |
# Convenience links
|
| 1031 |
einfo "Making Convenience links for mysqlcheck multi-call binary"
|
| 1032 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze"
|
| 1033 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair"
|
| 1034 |
dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize"
|
| 1035 |
|
| 1036 |
# Various junk (my-*.cnf moved elsewhere)
|
| 1037 |
einfo "Removing duplicate /usr/share/mysql files"
|
| 1038 |
rm -Rf "${D}/usr/share/info"
|
| 1039 |
for removeme in "mysql-log-rotate" mysql.server* \
|
| 1040 |
binary-configure* my-*.cnf mi_test_all*
|
| 1041 |
do
|
| 1042 |
rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme}
|
| 1043 |
done
|
| 1044 |
|
| 1045 |
# Clean up stuff for a minimal build
|
| 1046 |
if use minimal ; then
|
| 1047 |
einfo "Remove all extra content for minimal build"
|
| 1048 |
rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench}
|
| 1049 |
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}
|
| 1050 |
rm -f "${D}/usr/sbin/mysqld"
|
| 1051 |
rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a
|
| 1052 |
fi
|
| 1053 |
|
| 1054 |
# Unless they explicitly specific USE=test, then do not install the
|
| 1055 |
# testsuite. It DOES have a use to be installed, esp. when you want to do a
|
| 1056 |
# validation of your database configuration after tuning it.
|
| 1057 |
if use !test ; then
|
| 1058 |
rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test
|
| 1059 |
fi
|
| 1060 |
|
| 1061 |
# Configuration stuff
|
| 1062 |
if mysql_version_is_at_least "5.1" ; then
|
| 1063 |
mysql_mycnf_version="5.1"
|
| 1064 |
elif mysql_version_is_at_least "4.1" ; then
|
| 1065 |
mysql_mycnf_version="4.1"
|
| 1066 |
else
|
| 1067 |
mysql_mycnf_version="4.0"
|
| 1068 |
fi
|
| 1069 |
einfo "Building default my.cnf"
|
| 1070 |
insinto "${MY_SYSCONFDIR}"
|
| 1071 |
doins scripts/mysqlaccess.conf
|
| 1072 |
sed -e "s!@DATADIR@!${MY_DATADIR}!g" \
|
| 1073 |
"${FILESDIR}/my.cnf-${mysql_mycnf_version}" \
|
| 1074 |
> "${TMPDIR}/my.cnf.ok"
|
| 1075 |
if mysql_version_is_at_least "4.1" && use latin1 ; then
|
| 1076 |
sed -i \
|
| 1077 |
-e "/character-set/s|utf8|latin1|g" \
|
| 1078 |
"${TMPDIR}/my.cnf.ok"
|
| 1079 |
fi
|
| 1080 |
newins "${TMPDIR}/my.cnf.ok" my.cnf
|
| 1081 |
|
| 1082 |
# Minimal builds don't have the MySQL server
|
| 1083 |
if ! use minimal ; then
|
| 1084 |
einfo "Creating initial directories"
|
| 1085 |
# Empty directories ...
|
| 1086 |
diropts "-m0750"
|
| 1087 |
if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then
|
| 1088 |
dodir "${MY_DATADIR}"
|
| 1089 |
keepdir "${MY_DATADIR}"
|
| 1090 |
chown -R mysql:mysql "${D}/${MY_DATADIR}"
|
| 1091 |
fi
|
| 1092 |
|
| 1093 |
diropts "-m0755"
|
| 1094 |
for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do
|
| 1095 |
dodir "${folder}"
|
| 1096 |
keepdir "${folder}"
|
| 1097 |
chown -R mysql:mysql "${D}/${folder}"
|
| 1098 |
done
|
| 1099 |
fi
|
| 1100 |
|
| 1101 |
# Docs
|
| 1102 |
einfo "Installing docs"
|
| 1103 |
dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE
|
| 1104 |
doinfo "${S}"/Docs/mysql.info
|
| 1105 |
|
| 1106 |
# Minimal builds don't have the MySQL server
|
| 1107 |
if ! use minimal ; then
|
| 1108 |
einfo "Including support files and sample configurations"
|
| 1109 |
docinto "support-files"
|
| 1110 |
for script in \
|
| 1111 |
"${S}"/support-files/my-*.cnf \
|
| 1112 |
"${S}"/support-files/magic \
|
| 1113 |
"${S}"/support-files/ndb-config-2-node.ini
|
| 1114 |
do
|
| 1115 |
[[ -f "$script" ]] && dodoc "${script}"
|
| 1116 |
done
|
| 1117 |
|
| 1118 |
docinto "scripts"
|
| 1119 |
for script in "${S}"/scripts/mysql* ; do
|
| 1120 |
[[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}"
|
| 1121 |
done
|
| 1122 |
|
| 1123 |
fi
|
| 1124 |
|
| 1125 |
mysql_lib_symlinks "${D}"
|
| 1126 |
}
|
| 1127 |
|
| 1128 |
# @FUNCTION: mysql_pkg_preinst
|
| 1129 |
# @DESCRIPTION:
|
| 1130 |
# Create the user and groups for mysql - die if that fails.
|
| 1131 |
mysql_pkg_preinst() {
|
| 1132 |
enewgroup mysql 60 || die "problem adding 'mysql' group"
|
| 1133 |
enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user"
|
| 1134 |
}
|
| 1135 |
|
| 1136 |
# @FUNCTION: mysql_pkg_postinst
|
| 1137 |
# @DESCRIPTION:
|
| 1138 |
# Run post-installation tasks:
|
| 1139 |
# create the dir for logfiles if non-existant
|
| 1140 |
# touch the logfiles and secure them
|
| 1141 |
# install scripts
|
| 1142 |
# issue required steps for optional features
|
| 1143 |
# issue deprecation warnings
|
| 1144 |
mysql_pkg_postinst() {
|
| 1145 |
# Make sure the vars are correctly initialized
|
| 1146 |
mysql_init_vars
|
| 1147 |
|
| 1148 |
# Check FEATURES="collision-protect" before removing this
|
| 1149 |
[[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}"
|
| 1150 |
|
| 1151 |
# Secure the logfiles
|
| 1152 |
touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err}
|
| 1153 |
chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql*
|
| 1154 |
chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql*
|
| 1155 |
|
| 1156 |
# Minimal builds don't have the MySQL server
|
| 1157 |
if ! use minimal ; then
|
| 1158 |
docinto "support-files"
|
| 1159 |
for script in \
|
| 1160 |
support-files/my-*.cnf \
|
| 1161 |
support-files/magic \
|
| 1162 |
support-files/ndb-config-2-node.ini
|
| 1163 |
do
|
| 1164 |
[[ -f "${script}" ]] \
|
| 1165 |
&& dodoc "${script}"
|
| 1166 |
done
|
| 1167 |
|
| 1168 |
docinto "scripts"
|
| 1169 |
for script in scripts/mysql* ; do
|
| 1170 |
[[ -f "${script}" ]] \
|
| 1171 |
&& [[ "${script%.sh}" == "${script}" ]] \
|
| 1172 |
&& dodoc "${script}"
|
| 1173 |
done
|
| 1174 |
|
| 1175 |
einfo
|
| 1176 |
elog "You might want to run:"
|
| 1177 |
elog "\"emerge --config =${CATEGORY}/${PF}\""
|
| 1178 |
elog "if this is a new install."
|
| 1179 |
einfo
|
| 1180 |
fi
|
| 1181 |
|
| 1182 |
if pbxt_available && use pbxt ; then
|
| 1183 |
# TODO: explain it better
|
| 1184 |
elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';"
|
| 1185 |
elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;"
|
| 1186 |
elog "if, after that, you cannot start the MySQL server,"
|
| 1187 |
elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then"
|
| 1188 |
elog "use the MySQL upgrade script to restore the table"
|
| 1189 |
elog "or execute the following SQL command:"
|
| 1190 |
elog " CREATE TABLE IF NOT EXISTS plugin ("
|
| 1191 |
elog " name char(64) binary DEFAULT '' NOT NULL,"
|
| 1192 |
elog " dl char(128) DEFAULT '' NOT NULL,"
|
| 1193 |
elog " PRIMARY KEY (name)"
|
| 1194 |
elog " ) CHARACTER SET utf8 COLLATE utf8_bin;"
|
| 1195 |
fi
|
| 1196 |
|
| 1197 |
mysql_check_version_range "4.0 to 5.0.99.99" \
|
| 1198 |
&& use berkdb \
|
| 1199 |
&& elog "Berkeley DB support is deprecated and will be removed in future versions!"
|
| 1200 |
}
|
| 1201 |
|
| 1202 |
# @FUNCTION: mysql_pkg_config
|
| 1203 |
# @DESCRIPTION:
|
| 1204 |
# Configure mysql environment.
|
| 1205 |
mysql_pkg_config() {
|
| 1206 |
local old_MY_DATADIR="${MY_DATADIR}"
|
| 1207 |
|
| 1208 |
# Make sure the vars are correctly initialized
|
| 1209 |
mysql_init_vars
|
| 1210 |
|
| 1211 |
[[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR"
|
| 1212 |
|
| 1213 |
if built_with_use ${CATEGORY}/${PN} minimal ; then
|
| 1214 |
die "Minimal builds do NOT include the MySQL server"
|
| 1215 |
fi
|
| 1216 |
|
| 1217 |
if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then
|
| 1218 |
local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})"
|
| 1219 |
local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})"
|
| 1220 |
|
| 1221 |
if [[ -d "${old_MY_DATADIR_s}" ]]; then
|
| 1222 |
if [[ -d "${MY_DATADIR_s}" ]]; then
|
| 1223 |
ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist"
|
| 1224 |
ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}"
|
| 1225 |
else
|
| 1226 |
elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}"
|
| 1227 |
mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \
|
| 1228 |
|| die "Moving MY_DATADIR failed"
|
| 1229 |
fi
|
| 1230 |
else
|
| 1231 |
ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist"
|
| 1232 |
if [[ -d "${MY_DATADIR_s}" ]]; then
|
| 1233 |
ewarn "Attempting to use ${MY_DATADIR_s}"
|
| 1234 |
else
|
| 1235 |
eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist"
|
| 1236 |
die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}"
|
| 1237 |
fi
|
| 1238 |
fi
|
| 1239 |
fi
|
| 1240 |
|
| 1241 |
local pwd1="a"
|
| 1242 |
local pwd2="b"
|
| 1243 |
local MYSQL_ROOT_PASSWORD=''
|
| 1244 |
local maxtry=15
|
| 1245 |
|
| 1246 |
if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then
|
| 1247 |
MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")"
|
| 1248 |
fi
|
| 1249 |
|
| 1250 |
if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then
|
| 1251 |
ewarn "You have already a MySQL database in place."
|
| 1252 |
ewarn "(${ROOT}/${MY_DATADIR}/*)"
|
| 1253 |
ewarn "Please rename or delete it if you wish to replace it."
|
| 1254 |
die "MySQL database already exists!"
|
| 1255 |
fi
|
| 1256 |
|
| 1257 |
# Bug #213475 - MySQL _will_ object strenously if your machine is named
|
| 1258 |
# localhost. Also causes weird failures.
|
| 1259 |
[[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost"
|
| 1260 |
|
| 1261 |
if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then
|
| 1262 |
|
| 1263 |
einfo "Please provide a password for the mysql 'root' user now,"
|
| 1264 |
einfo "or in the MYSQL_ROOT_PASSWORD env var."
|
| 1265 |
ewarn "Avoid [\"'\\_%] characters in the password"
|
| 1266 |
read -rsp " >" pwd1 ; echo
|
| 1267 |
|
| 1268 |
einfo "Retype the password"
|
| 1269 |
read -rsp " >" pwd2 ; echo
|
| 1270 |
|
| 1271 |
if [[ "x$pwd1" != "x$pwd2" ]] ; then
|
| 1272 |
die "Passwords are not the same"
|
| 1273 |
fi
|
| 1274 |
MYSQL_ROOT_PASSWORD="${pwd1}"
|
| 1275 |
unset pwd1 pwd2
|
| 1276 |
fi
|
| 1277 |
|
| 1278 |
local options=""
|
| 1279 |
local sqltmp="$(emktemp)"
|
| 1280 |
|
| 1281 |
local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql"
|
| 1282 |
[[ -r "${help_tables}" ]] \
|
| 1283 |
&& cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \
|
| 1284 |
|| touch "${TMPDIR}/fill_help_tables.sql"
|
| 1285 |
help_tables="${TMPDIR}/fill_help_tables.sql"
|
| 1286 |
|
| 1287 |
pushd "${TMPDIR}" &>/dev/null
|
| 1288 |
"${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1
|
| 1289 |
if [ $? -ne 0 ]; then
|
| 1290 |
grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2
|
| 1291 |
die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log"
|
| 1292 |
fi
|
| 1293 |
popd &>/dev/null
|
| 1294 |
[[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \
|
| 1295 |
|| die "MySQL databases not installed"
|
| 1296 |
chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null
|
| 1297 |
chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null
|
| 1298 |
|
| 1299 |
# Figure out which options we need to disable to do the setup
|
| 1300 |
helpfile="${TMPDIR}/mysqld-help"
|
| 1301 |
${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null
|
| 1302 |
for opt in grant-tables host-cache name-resolve networking slave-start bdb \
|
| 1303 |
federated innodb ssl log-bin relay-log slow-query-log external-locking \
|
| 1304 |
ndbcluster \
|
| 1305 |
; do
|
| 1306 |
optexp="--(skip-)?${opt}" optfull="--skip-${opt}"
|
| 1307 |
egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}"
|
| 1308 |
done
|
| 1309 |
# But some options changed names
|
| 1310 |
egrep -sq external-locking "${helpfile}" && \
|
| 1311 |
options="${options/skip-locking/skip-external-locking}"
|
| 1312 |
|
| 1313 |
if mysql_version_is_at_least "4.1.3" ; then
|
| 1314 |
# Filling timezones, see
|
| 1315 |
# http://dev.mysql.com/doc/mysql/en/time-zone-support.html
|
| 1316 |
"${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null
|
| 1317 |
|
| 1318 |
if [[ -r "${help_tables}" ]] ; then
|
| 1319 |
cat "${help_tables}" >> "${sqltmp}"
|
| 1320 |
fi
|
| 1321 |
fi
|
| 1322 |
|
| 1323 |
einfo "Creating the mysql database and setting proper"
|
| 1324 |
einfo "permissions on it ..."
|
| 1325 |
|
| 1326 |
local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock"
|
| 1327 |
local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid"
|
| 1328 |
local mysqld="${ROOT}/usr/sbin/mysqld \
|
| 1329 |
${options} \
|
| 1330 |
--user=mysql \
|
| 1331 |
--basedir=${ROOT}/usr \
|
| 1332 |
--datadir=${ROOT}/${MY_DATADIR} \
|
| 1333 |
--max_allowed_packet=8M \
|
| 1334 |
--net_buffer_length=16K \
|
| 1335 |
--default-storage-engine=MyISAM \
|
| 1336 |
--socket=${socket} \
|
| 1337 |
--pid-file=${pidfile}"
|
| 1338 |
#einfo "About to start mysqld: ${mysqld}"
|
| 1339 |
ebegin "Starting mysqld"
|
| 1340 |
${mysqld} &
|
| 1341 |
rc=$?
|
| 1342 |
while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do
|
| 1343 |
maxtry=$((${maxtry}-1))
|
| 1344 |
echo -n "."
|
| 1345 |
sleep 1
|
| 1346 |
done
|
| 1347 |
eend $rc
|
| 1348 |
|
| 1349 |
if ! [[ -S "${socket}" ]]; then
|
| 1350 |
die "Completely failed to start up mysqld with: ${mysqld}"
|
| 1351 |
fi
|
| 1352 |
|
| 1353 |
ebegin "Setting root password"
|
| 1354 |
# Do this from memory, as we don't want clear text passwords in temp files
|
| 1355 |
local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'"
|
| 1356 |
"${ROOT}/usr/bin/mysql" \
|
| 1357 |
--socket=${socket} \
|
| 1358 |
-hlocalhost \
|
| 1359 |
-e "${sql}"
|
| 1360 |
eend $?
|
| 1361 |
|
| 1362 |
ebegin "Loading \"zoneinfo\", this step may require a few seconds ..."
|
| 1363 |
"${ROOT}/usr/bin/mysql" \
|
| 1364 |
--socket=${socket} \
|
| 1365 |
-hlocalhost \
|
| 1366 |
-uroot \
|
| 1367 |
-p"${MYSQL_ROOT_PASSWORD}" \
|
| 1368 |
mysql < "${sqltmp}"
|
| 1369 |
rc=$?
|
| 1370 |
eend $?
|
| 1371 |
[ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!"
|
| 1372 |
|
| 1373 |
# Stop the server and cleanup
|
| 1374 |
einfo "Stopping the server ..."
|
| 1375 |
kill $(< "${pidfile}" )
|
| 1376 |
rm -f "${sqltmp}"
|
| 1377 |
wait %1
|
| 1378 |
einfo "Done"
|
| 1379 |
}
|
| 1380 |
|
| 1381 |
# @FUNCTION: mysql_pkg_postrm
|
| 1382 |
# @DESCRIPTION:
|
| 1383 |
# Remove mysql symlinks.
|
| 1384 |
mysql_pkg_postrm() {
|
| 1385 |
: # mysql_lib_symlinks "${D}"
|
| 1386 |
}
|