| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.73 2007/04/15 13:00:51 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.93 2008/05/29 05:28:54 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
|
|
| 9 | # Note that MYSQL_VERSION_ID must be empty! |
|
|
| 10 | |
9 | |
| 11 | WANT_AUTOCONF="latest" |
10 | WANT_AUTOCONF="latest" |
| 12 | WANT_AUTOMAKE="latest" |
11 | WANT_AUTOMAKE="latest" |
| 13 | |
12 | |
| 14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
| … | |
… | |
| 16 | # Shorten the path because the socket path length must be shorter than 107 chars |
15 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 17 | # and we will run a mysql server during test phase |
16 | # and we will run a mysql server during test phase |
| 18 | S="${WORKDIR}/mysql" |
17 | S="${WORKDIR}/mysql" |
| 19 | |
18 | |
| 20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
|
|
20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
21 | EGIT_PROJECT=mysql-extras |
|
|
22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
23 | inherit git |
|
|
24 | fi |
| 21 | |
25 | |
| 22 | if [[ ${PR#r} -lt 60 ]] ; then |
26 | if [[ ${PR#r} -lt 60 ]] ; then |
| 23 | IS_BITKEEPER=0 |
27 | IS_BITKEEPER=0 |
| 24 | elif [[ ${PR#r} -lt 90 ]] ; then |
28 | elif [[ ${PR#r} -lt 90 ]] ; then |
| 25 | IS_BITKEEPER=60 |
29 | IS_BITKEEPER=60 |
| … | |
… | |
| 30 | # MYSQL_VERSION_ID will be: |
34 | # MYSQL_VERSION_ID will be: |
| 31 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
35 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 32 | # This is an important part, because many of the choices the MySQL ebuild will do |
36 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 33 | # depend on this variable. |
37 | # depend on this variable. |
| 34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
38 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
39 | # We also strip off upstream's trailing letter that they use to respin tarballs |
| 35 | |
40 | |
| 36 | MYSQL_VERSION_ID="" |
41 | MYSQL_VERSION_ID="" |
|
|
42 | tpv="${PV%[a-z]}" |
| 37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
43 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 38 | for vatom in 0 1 2 3 ; do |
44 | for vatom in 0 1 2 3 ; do |
| 39 | # pad to length 2 |
45 | # pad to length 2 |
| 40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
46 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
47 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 42 | done |
48 | done |
| 43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
49 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 45 | |
51 | |
| 46 | # Be warned, *DEPEND are version-dependant |
52 | # Be warned, *DEPEND are version-dependant |
|
|
53 | # These are used for both runtime and compiletime |
| 47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 48 | userland_GNU? ( sys-process/procps ) |
55 | userland_GNU? ( sys-process/procps ) |
| 49 | >=sys-apps/sed-4 |
56 | >=sys-apps/sed-4 |
| 50 | >=sys-apps/texinfo-4.7-r1 |
57 | >=sys-apps/texinfo-4.7-r1 |
| 51 | >=sys-libs/readline-4.1 |
58 | >=sys-libs/readline-4.1 |
| … | |
… | |
| 55 | for i in "" "-community" ; do |
62 | for i in "" "-community" ; do |
| 56 | [[ "${i}" == ${PN#mysql} ]] || |
63 | [[ "${i}" == ${PN#mysql} ]] || |
| 57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
64 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 58 | done |
65 | done |
| 59 | |
66 | |
|
|
67 | RDEPEND="${DEPEND} |
|
|
68 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
69 | selinux? ( sec-policy/selinux-mysql )" |
|
|
70 | |
|
|
71 | # compile-time-only |
| 60 | mysql_version_is_at_least "5.1" \ |
72 | mysql_version_is_at_least "5.1" \ |
| 61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
73 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 62 | |
74 | |
|
|
75 | # compile-time-only |
| 63 | mysql_version_is_at_least "5.1.12" \ |
76 | mysql_version_is_at_least "5.1.12" \ |
| 64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
77 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
| 65 | |
78 | |
|
|
79 | # BitKeeper dependency, compile-time only |
|
|
80 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
81 | |
|
|
82 | |
| 66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
83 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
85 | |
| 69 | # BitKeeper dependency, compile-time only |
86 | # Work out the default SERVER_URI correctly |
| 70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
87 | if [ -z "${SERVER_URI}" ]; then |
|
|
88 | # The community build is on the mirrors |
|
|
89 | if [ "${PN}" == "mysql-community" ]; then |
|
|
90 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
91 | # The enterprise source is on the primary site only |
|
|
92 | elif [ "${PN}" == "mysql" ]; then |
|
|
93 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
94 | fi |
|
|
95 | fi |
| 71 | |
96 | |
| 72 | # Define correct SRC_URIs |
97 | # Define correct SRC_URIs |
| 73 | SRC_URI="${SERVER_URI} |
98 | SRC_URI="${SERVER_URI}" |
|
|
99 | |
|
|
100 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
| 74 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
101 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 75 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
102 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 76 | mysql_version_is_at_least "5.1.12" \ |
103 | mysql_version_is_at_least "5.1.12" \ |
| 77 | && [[ -n "${PBXT_VERSION}" ]] \ |
104 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 78 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
105 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| … | |
… | |
| 80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
107 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 81 | HOMEPAGE="http://www.mysql.com/" |
108 | HOMEPAGE="http://www.mysql.com/" |
| 82 | LICENSE="GPL-2" |
109 | LICENSE="GPL-2" |
| 83 | SLOT="0" |
110 | SLOT="0" |
| 84 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
111 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 85 | RESTRICT="confcache" |
|
|
| 86 | |
112 | |
| 87 | mysql_version_is_at_least "4.1" \ |
113 | mysql_version_is_at_least "4.1" \ |
| 88 | && IUSE="${IUSE} latin1" |
114 | && IUSE="${IUSE} latin1" |
| 89 | |
115 | |
| 90 | mysql_version_is_at_least "4.1.3" \ |
116 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 102 | mysql_version_is_at_least "5.1" \ |
128 | mysql_version_is_at_least "5.1" \ |
| 103 | || IUSE="${IUSE} berkdb" |
129 | || IUSE="${IUSE} berkdb" |
| 104 | |
130 | |
| 105 | mysql_version_is_at_least "5.1.12" \ |
131 | mysql_version_is_at_least "5.1.12" \ |
| 106 | && IUSE="${IUSE} pbxt" |
132 | && IUSE="${IUSE} pbxt" |
| 107 | |
|
|
| 108 | RDEPEND="${DEPEND} |
|
|
| 109 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
| 110 | selinux? ( sec-policy/selinux-mysql )" |
|
|
| 111 | |
133 | |
| 112 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 113 | pkg_postinst pkg_config pkg_postrm |
135 | pkg_postinst pkg_config pkg_postrm |
| 114 | |
136 | |
| 115 | # |
137 | # |
| … | |
… | |
| 198 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 199 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 200 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
222 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 201 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
223 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 202 | |
224 | |
| 203 | if [[ -z "${DATADIR}" ]] ; then |
225 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 204 | DATADIR="" |
226 | MY_DATADIR="" |
| 205 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
227 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 206 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
228 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 207 | | sed -ne '/datadir/s|^--datadir=||p' \ |
229 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 208 | | tail -n1` |
230 | | tail -n1` |
| 209 | if [[ -z "${DATADIR}" ]] ; then |
231 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 210 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
232 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 211 | | sed -e 's/.*=\s*//'` |
233 | | sed -e 's/.*=\s*//' \ |
|
|
234 | | tail -n1` |
| 212 | fi |
235 | fi |
| 213 | fi |
236 | fi |
| 214 | if [[ -z "${DATADIR}" ]] ; then |
237 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 215 | DATADIR="${MY_LOCALSTATEDIR}" |
238 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 216 | einfo "Using default DATADIR" |
239 | einfo "Using default MY_DATADIR" |
| 217 | fi |
240 | fi |
| 218 | elog "MySQL DATADIR is ${DATADIR}" |
241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 219 | |
242 | |
| 220 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 221 | if [[ -e "${DATADIR}" ]] ; then |
244 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 222 | elog "Previous datadir found, it's YOUR job to change" |
245 | elog "Previous datadir found, it's YOUR job to change" |
| 223 | elog "ownership and take care of it" |
246 | elog "ownership and take care of it" |
| 224 | PREVIOUS_DATADIR="yes" |
247 | PREVIOUS_DATADIR="yes" |
| 225 | else |
248 | else |
| 226 | PREVIOUS_DATADIR="no" |
249 | PREVIOUS_DATADIR="no" |
| … | |
… | |
| 232 | MY_SOURCEDIR=${SERVER_URI##*/} |
255 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 233 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
256 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 234 | |
257 | |
| 235 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
258 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 236 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
259 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 237 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
260 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 238 | } |
261 | } |
| 239 | |
262 | |
| 240 | configure_minimal() { |
263 | configure_minimal() { |
| 241 | # These are things we exclude from a minimal build, please |
264 | # These are things we exclude from a minimal build, please |
| 242 | # note that the server actually does get built and installed, |
265 | # note that the server actually does get built and installed, |
| 243 | # but we then delete it before packaging. |
266 | # but we then delete it before packaging. |
| 244 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
267 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 245 | |
268 | |
| 246 | for i in ${minimal_exclude_list} ; do |
269 | for i in ${minimal_exclude_list} ; do |
| 247 | myconf="${myconf} --without-${i}" |
270 | myconf="${myconf} --without-${i}" |
| 248 | done |
271 | done |
| 249 | myconf="${myconf} --with-extra-charsets=none" |
272 | myconf="${myconf} --with-extra-charsets=none" |
| 250 | myconf="${myconf} --enable-local-infile" |
273 | myconf="${myconf} --enable-local-infile" |
| 251 | |
274 | |
| 252 | if use static ; then |
275 | if use static ; then |
| 253 | myconf="${myconf} --with-client-ldflags=-all-static" |
276 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 254 | myconf="${myconf} --disable-shared" |
277 | myconf="${myconf} --disable-shared --with-pic" |
| 255 | else |
278 | else |
| 256 | myconf="${myconf} --enable-shared --enable-static" |
279 | myconf="${myconf} --enable-shared --enable-static" |
| 257 | fi |
280 | fi |
| 258 | |
281 | |
| 259 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
282 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| … | |
… | |
| 275 | myconf="${myconf} --without-libwrap" |
298 | myconf="${myconf} --without-libwrap" |
| 276 | |
299 | |
| 277 | if use static ; then |
300 | if use static ; then |
| 278 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
301 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 279 | myconf="${myconf} --with-client-ldflags=-all-static" |
302 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 280 | myconf="${myconf} --disable-shared" |
303 | myconf="${myconf} --disable-shared --with-pic" |
| 281 | else |
304 | else |
| 282 | myconf="${myconf} --enable-shared --enable-static" |
305 | myconf="${myconf} --enable-shared --enable-static" |
| 283 | fi |
306 | fi |
| 284 | |
307 | |
| 285 | if use debug ; then |
308 | if use debug ; then |
| … | |
… | |
| 327 | myconf="${myconf} $(use_with ssl)" |
350 | myconf="${myconf} $(use_with ssl)" |
| 328 | else |
351 | else |
| 329 | myconf="${myconf} $(use_with ssl openssl)" |
352 | myconf="${myconf} $(use_with ssl openssl)" |
| 330 | fi |
353 | fi |
| 331 | |
354 | |
|
|
355 | if use berkdb ; then |
| 332 | # The following fix is due to a bug with bdb on SPARC's. See: |
356 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 333 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
357 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 334 | # It comes down to non-64-bit safety problems. |
358 | # It comes down to non-64-bit safety problems. |
| 335 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
359 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 336 | elog "Berkeley DB support was disabled due to incompatible arch" |
360 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
361 | myconf="${myconf} --without-berkeley-db" |
|
|
362 | else |
|
|
363 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
364 | fi |
|
|
365 | else |
| 337 | myconf="${myconf} --without-berkeley-db" |
366 | myconf="${myconf} --without-berkeley-db" |
| 338 | else |
|
|
| 339 | if use berkdb ; then |
|
|
| 340 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 341 | else |
|
|
| 342 | myconf="${myconf} --without-berkeley-db" |
|
|
| 343 | fi |
|
|
| 344 | fi |
367 | fi |
| 345 | |
368 | |
| 346 | if mysql_version_is_at_least "4.1.3" ; then |
369 | if mysql_version_is_at_least "4.1.3" ; then |
| 347 | myconf="${myconf} --with-geometry" |
370 | myconf="${myconf} --with-geometry" |
| 348 | myconf="${myconf} $(use_with cluster ndbcluster)" |
371 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 441 | } |
464 | } |
| 442 | |
465 | |
| 443 | # |
466 | # |
| 444 | # EBUILD FUNCTIONS |
467 | # EBUILD FUNCTIONS |
| 445 | # |
468 | # |
| 446 | |
|
|
| 447 | mysql_pkg_setup() { |
469 | mysql_pkg_setup() { |
| 448 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
470 | if hasq test ${FEATURES} ; then |
| 449 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
471 | if ! use minimal ; then |
|
|
472 | if [[ $UID -eq 0 ]]; then |
|
|
473 | die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
474 | fi |
|
|
475 | fi |
|
|
476 | fi |
|
|
477 | |
|
|
478 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
479 | # localhost. Also causes weird failures. |
|
|
480 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 450 | |
481 | |
| 451 | # Check for USE flag problems in pkg_setup |
482 | # Check for USE flag problems in pkg_setup |
| 452 | if use static && use ssl ; then |
483 | if use static && use ssl ; then |
| 453 | eerror "MySQL does not support being built statically with SSL support enabled!" |
484 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 454 | die "MySQL does not support being built statically with SSL support enabled!" |
485 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 466 | && ( use cluster || use extraengine ) \ |
497 | && ( use cluster || use extraengine ) \ |
| 467 | && use minimal ; then |
498 | && use minimal ; then |
| 468 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
499 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 469 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
500 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 470 | fi |
501 | fi |
|
|
502 | |
|
|
503 | # This should come after all of the die statements |
|
|
504 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
505 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 471 | |
506 | |
| 472 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
507 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 473 | && use berkdb \ |
508 | && use berkdb \ |
| 474 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
509 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 475 | } |
510 | } |
| … | |
… | |
| 477 | mysql_src_unpack() { |
512 | mysql_src_unpack() { |
| 478 | # Initialize the proper variables first |
513 | # Initialize the proper variables first |
| 479 | mysql_init_vars |
514 | mysql_init_vars |
| 480 | |
515 | |
| 481 | unpack ${A} |
516 | unpack ${A} |
|
|
517 | # Grab the patches |
|
|
518 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
|
|
519 | # Bitkeeper checkout support |
| 482 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
520 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
| 483 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
521 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
| 484 | bitkeeper_fetch "mysql-5.1-ndb" |
522 | bitkeeper_fetch "mysql-5.1-ndb" |
| 485 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
523 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
| 486 | bitkeeper_fetch "mysql-5.2-falcon" |
524 | bitkeeper_fetch "mysql-5.2-falcon" |
| … | |
… | |
| 496 | fi |
534 | fi |
| 497 | |
535 | |
| 498 | # Apply the patches for this MySQL version |
536 | # Apply the patches for this MySQL version |
| 499 | EPATCH_SUFFIX="patch" |
537 | EPATCH_SUFFIX="patch" |
| 500 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
538 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
539 | # Clean out old items |
|
|
540 | rm -f "${EPATCH_SOURCE}"/* |
|
|
541 | # Now link in right patches |
| 501 | mysql_mv_patches |
542 | mysql_mv_patches |
|
|
543 | # And apply |
| 502 | epatch |
544 | epatch |
| 503 | |
545 | |
| 504 | # Additional checks, remove bundled zlib |
546 | # Additional checks, remove bundled zlib |
| 505 | rm -f "${S}/zlib/"*.[ch] |
547 | rm -f "${S}/zlib/"*.[ch] |
| 506 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
548 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| … | |
… | |
| 522 | |
564 | |
| 523 | local rebuilddirlist d |
565 | local rebuilddirlist d |
| 524 | |
566 | |
| 525 | if mysql_version_is_at_least "5.1.12" ; then |
567 | if mysql_version_is_at_least "5.1.12" ; then |
| 526 | rebuilddirlist="." |
568 | rebuilddirlist="." |
| 527 | # TODO: check this with a cmake expert |
569 | # TODO: check this with a cmake expert |
| 528 | use innodb \ |
570 | use innodb \ |
| 529 | && cmake \ |
571 | && cmake \ |
| 530 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
572 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 531 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
573 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 532 | "storage/innobase" |
574 | "storage/innobase" |
| 533 | else |
575 | else |
| 534 | rebuilddirlist=". innobase" |
576 | rebuilddirlist=". innobase" |
| 535 | fi |
577 | fi |
| 536 | |
578 | |
| … | |
… | |
| 645 | else |
687 | else |
| 646 | mysql_mycnf_version="4.0" |
688 | mysql_mycnf_version="4.0" |
| 647 | fi |
689 | fi |
| 648 | insinto "${MY_SYSCONFDIR}" |
690 | insinto "${MY_SYSCONFDIR}" |
| 649 | doins scripts/mysqlaccess.conf |
691 | doins scripts/mysqlaccess.conf |
| 650 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
692 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 651 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
693 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 652 | > "${TMPDIR}/my.cnf.ok" |
694 | > "${TMPDIR}/my.cnf.ok" |
| 653 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
695 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 654 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
696 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 655 | fi |
697 | fi |
| … | |
… | |
| 658 | # Minimal builds don't have the MySQL server |
700 | # Minimal builds don't have the MySQL server |
| 659 | if ! use minimal ; then |
701 | if ! use minimal ; then |
| 660 | # Empty directories ... |
702 | # Empty directories ... |
| 661 | diropts "-m0750" |
703 | diropts "-m0750" |
| 662 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
704 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 663 | dodir "${DATADIR}" |
705 | dodir "${MY_DATADIR}" |
| 664 | keepdir "${DATADIR}" |
706 | keepdir "${MY_DATADIR}" |
| 665 | chown -R mysql:mysql "${D}/${DATADIR}" |
707 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 666 | fi |
708 | fi |
| 667 | |
709 | |
| 668 | diropts "-m0755" |
710 | diropts "-m0755" |
| 669 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
711 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 670 | dodir "${folder}" |
712 | dodir "${folder}" |
| … | |
… | |
| 673 | done |
715 | done |
| 674 | fi |
716 | fi |
| 675 | |
717 | |
| 676 | # Docs |
718 | # Docs |
| 677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
719 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
720 | doinfo "${S}"/Docs/mysql.info |
| 678 | |
721 | |
| 679 | # Minimal builds don't have the MySQL server |
722 | # Minimal builds don't have the MySQL server |
| 680 | if ! use minimal ; then |
723 | if ! use minimal ; then |
| 681 | docinto "support-files" |
724 | docinto "support-files" |
| 682 | for script in \ |
725 | for script in \ |
| 683 | support-files/my-*.cnf \ |
726 | "${S}"/support-files/my-*.cnf \ |
| 684 | support-files/magic \ |
727 | "${S}"/support-files/magic \ |
| 685 | support-files/ndb-config-2-node.ini |
728 | "${S}"/support-files/ndb-config-2-node.ini |
| 686 | do |
729 | do |
| 687 | dodoc "${script}" |
730 | dodoc "${script}" |
| 688 | done |
731 | done |
| 689 | |
732 | |
| 690 | docinto "scripts" |
733 | docinto "scripts" |
| 691 | for script in scripts/mysql* ; do |
734 | for script in "${S}"/scripts/mysql* ; do |
| 692 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
735 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 693 | done |
736 | done |
|
|
737 | |
| 694 | fi |
738 | fi |
| 695 | |
739 | |
| 696 | mysql_lib_symlinks "${D}" |
740 | mysql_lib_symlinks "${D}" |
| 697 | } |
741 | } |
| 698 | |
742 | |
| … | |
… | |
| 758 | |
802 | |
| 759 | mysql_pkg_config() { |
803 | mysql_pkg_config() { |
| 760 | # Make sure the vars are correctly initialized |
804 | # Make sure the vars are correctly initialized |
| 761 | mysql_init_vars |
805 | mysql_init_vars |
| 762 | |
806 | |
| 763 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
807 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 764 | |
808 | |
| 765 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
809 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 766 | die "Minimal builds do NOT include the MySQL server" |
810 | die "Minimal builds do NOT include the MySQL server" |
| 767 | fi |
811 | fi |
| 768 | |
812 | |
| 769 | local pwd1="a" |
813 | local pwd1="a" |
| 770 | local pwd2="b" |
814 | local pwd2="b" |
| 771 | local maxtry=5 |
815 | local maxtry=5 |
| 772 | |
816 | |
| 773 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
817 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 774 | ewarn "You have already a MySQL database in place." |
818 | ewarn "You have already a MySQL database in place." |
| 775 | ewarn "(${ROOT}/${DATADIR}/*)" |
819 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 776 | ewarn "Please rename or delete it if you wish to replace it." |
820 | ewarn "Please rename or delete it if you wish to replace it." |
| 777 | die "MySQL database already exists!" |
821 | die "MySQL database already exists!" |
| 778 | fi |
822 | fi |
| 779 | |
823 | |
| 780 | einfo "Creating the mysql database and setting proper" |
824 | einfo "Creating the mysql database and setting proper" |
| … | |
… | |
| 799 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
843 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 800 | || touch "${TMPDIR}/fill_help_tables.sql" |
844 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 801 | help_tables="${TMPDIR}/fill_help_tables.sql" |
845 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 802 | |
846 | |
| 803 | pushd "${TMPDIR}" &>/dev/null |
847 | pushd "${TMPDIR}" &>/dev/null |
| 804 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
848 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
849 | if [ $? -ne 0 ]; then |
|
|
850 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
851 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
852 | fi |
| 805 | popd &>/dev/null |
853 | popd &>/dev/null |
| 806 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
854 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 807 | || die "MySQL databases not installed" |
855 | || die "MySQL databases not installed" |
| 808 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
856 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2> /dev/null |
| 809 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
857 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2> /dev/null |
| 810 | |
858 | |
| 811 | if mysql_version_is_at_least "4.1.3" ; then |
859 | if mysql_version_is_at_least "4.1.3" ; then |
| 812 | options="--skip-ndbcluster" |
860 | options="--skip-ndbcluster" |
| 813 | |
861 | |
| 814 | # Filling timezones, see |
862 | # Filling timezones, see |
| … | |
… | |
| 825 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
873 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 826 | ${options} \ |
874 | ${options} \ |
| 827 | --user=mysql \ |
875 | --user=mysql \ |
| 828 | --skip-grant-tables \ |
876 | --skip-grant-tables \ |
| 829 | --basedir=${ROOT}/usr \ |
877 | --basedir=${ROOT}/usr \ |
| 830 | --datadir=${ROOT}/${DATADIR} \ |
878 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 831 | --skip-innodb \ |
879 | --skip-innodb \ |
| 832 | --skip-bdb \ |
880 | --skip-bdb \ |
| 833 | --skip-networking \ |
881 | --skip-networking \ |
| 834 | --max_allowed_packet=8M \ |
882 | --max_allowed_packet=8M \ |
| 835 | --net_buffer_length=16K \ |
883 | --net_buffer_length=16K \ |