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