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