| 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.72 2007/03/16 22:47:29 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.100 2008/11/14 22:07:03 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} |
|
|
101 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 74 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
102 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 75 | mysql_version_is_at_least "5.1.12" \ |
103 | mysql_version_is_at_least "5.1.12" \ |
| 76 | && [[ -n "${PBXT_VERSION}" ]] \ |
104 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 77 | && 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 )" |
| 78 | |
106 | |
| 79 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
107 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 80 | HOMEPAGE="http://www.mysql.com/" |
108 | HOMEPAGE="http://www.mysql.com/" |
| 81 | LICENSE="GPL-2" |
109 | LICENSE="GPL-2" |
| 82 | SLOT="0" |
110 | SLOT="0" |
| 83 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
111 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 84 | RESTRICT="confcache" |
|
|
| 85 | |
112 | |
| 86 | mysql_version_is_at_least "4.1" \ |
113 | mysql_version_is_at_least "4.1" \ |
| 87 | && IUSE="${IUSE} latin1" |
114 | && IUSE="${IUSE} latin1" |
| 88 | |
115 | |
| 89 | mysql_version_is_at_least "4.1.3" \ |
116 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 101 | mysql_version_is_at_least "5.1" \ |
128 | mysql_version_is_at_least "5.1" \ |
| 102 | || IUSE="${IUSE} berkdb" |
129 | || IUSE="${IUSE} berkdb" |
| 103 | |
130 | |
| 104 | mysql_version_is_at_least "5.1.12" \ |
131 | mysql_version_is_at_least "5.1.12" \ |
| 105 | && IUSE="${IUSE} pbxt" |
132 | && IUSE="${IUSE} pbxt" |
| 106 | |
|
|
| 107 | RDEPEND="${DEPEND} |
|
|
| 108 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
| 109 | selinux? ( sec-policy/selinux-mysql )" |
|
|
| 110 | |
133 | |
| 111 | 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 \ |
| 112 | pkg_postinst pkg_config pkg_postrm |
135 | pkg_postinst pkg_config pkg_postrm |
| 113 | |
136 | |
| 114 | # |
137 | # |
| … | |
… | |
| 197 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 198 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 199 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
222 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 200 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
223 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 201 | |
224 | |
| 202 | if [[ -z "${DATADIR}" ]] ; then |
225 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 203 | DATADIR="" |
226 | MY_DATADIR="" |
| 204 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
227 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 205 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
228 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 206 | | sed -ne '/datadir/s|^--datadir=||p' \ |
229 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 207 | | tail -n1` |
230 | | tail -n1` |
| 208 | if [[ -z "${DATADIR}" ]] ; then |
231 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 209 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
232 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 210 | | sed -e 's/.*=\s*//'` |
233 | | sed -e 's/.*=\s*//' \ |
|
|
234 | | tail -n1` |
| 211 | fi |
235 | fi |
| 212 | fi |
236 | fi |
| 213 | if [[ -z "${DATADIR}" ]] ; then |
237 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 214 | DATADIR="${MY_LOCALSTATEDIR}" |
238 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 215 | einfo "Using default DATADIR" |
239 | einfo "Using default MY_DATADIR" |
| 216 | fi |
240 | fi |
| 217 | elog "MySQL DATADIR is ${DATADIR}" |
241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 218 | |
242 | |
| 219 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 220 | if [[ -e "${DATADIR}" ]] ; then |
244 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 221 | elog "Previous datadir found, it's YOUR job to change" |
245 | # If you get this and you're wondering about it, see bug #207636 |
| 222 | elog "ownership and take care of it" |
246 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
247 | elog "A new one will not be created." |
| 223 | PREVIOUS_DATADIR="yes" |
248 | PREVIOUS_DATADIR="yes" |
| 224 | else |
249 | else |
| 225 | PREVIOUS_DATADIR="no" |
250 | PREVIOUS_DATADIR="no" |
| 226 | fi |
251 | fi |
| 227 | export PREVIOUS_DATADIR |
252 | export PREVIOUS_DATADIR |
| … | |
… | |
| 231 | MY_SOURCEDIR=${SERVER_URI##*/} |
256 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 232 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
257 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 233 | |
258 | |
| 234 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
259 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 235 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
260 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 236 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
261 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 237 | } |
262 | } |
| 238 | |
263 | |
| 239 | configure_minimal() { |
264 | configure_minimal() { |
| 240 | # These are things we exclude from a minimal build, please |
265 | # These are things we exclude from a minimal build, please |
| 241 | # note that the server actually does get built and installed, |
266 | # note that the server actually does get built and installed, |
| 242 | # but we then delete it before packaging. |
267 | # but we then delete it before packaging. |
| 243 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
268 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 244 | |
269 | |
| 245 | for i in ${minimal_exclude_list} ; do |
270 | for i in ${minimal_exclude_list} ; do |
| 246 | myconf="${myconf} --without-${i}" |
271 | myconf="${myconf} --without-${i}" |
| 247 | done |
272 | done |
| 248 | myconf="${myconf} --with-extra-charsets=none" |
273 | myconf="${myconf} --with-extra-charsets=none" |
| 249 | myconf="${myconf} --enable-local-infile" |
274 | myconf="${myconf} --enable-local-infile" |
| 250 | |
275 | |
| 251 | if use static ; then |
276 | if use static ; then |
| 252 | myconf="${myconf} --with-client-ldflags=-all-static" |
277 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 253 | myconf="${myconf} --disable-shared" |
278 | myconf="${myconf} --disable-shared --with-pic" |
| 254 | else |
279 | else |
| 255 | myconf="${myconf} --enable-shared --enable-static" |
280 | myconf="${myconf} --enable-shared --enable-static" |
| 256 | fi |
281 | fi |
| 257 | |
282 | |
| 258 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
283 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| … | |
… | |
| 274 | myconf="${myconf} --without-libwrap" |
299 | myconf="${myconf} --without-libwrap" |
| 275 | |
300 | |
| 276 | if use static ; then |
301 | if use static ; then |
| 277 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
302 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 278 | myconf="${myconf} --with-client-ldflags=-all-static" |
303 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 279 | myconf="${myconf} --disable-shared" |
304 | myconf="${myconf} --disable-shared --with-pic" |
| 280 | else |
305 | else |
| 281 | myconf="${myconf} --enable-shared --enable-static" |
306 | myconf="${myconf} --enable-shared --enable-static" |
| 282 | fi |
307 | fi |
| 283 | |
308 | |
| 284 | if use debug ; then |
309 | if use debug ; then |
| … | |
… | |
| 288 | mysql_version_is_at_least "4.1.3" \ |
313 | mysql_version_is_at_least "4.1.3" \ |
| 289 | && use cluster \ |
314 | && use cluster \ |
| 290 | && myconf="${myconf} --without-ndb-debug" |
315 | && myconf="${myconf} --without-ndb-debug" |
| 291 | fi |
316 | fi |
| 292 | |
317 | |
|
|
318 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
319 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
320 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
321 | ewarn "You MUST file bugs without these variables set." |
|
|
322 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
323 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 293 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
324 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 294 | myconf="${myconf} --with-charset=utf8" |
325 | myconf="${myconf} --with-charset=utf8" |
| 295 | myconf="${myconf} --with-collation=utf8_general_ci" |
326 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 296 | else |
327 | else |
| 297 | myconf="${myconf} --with-charset=latin1" |
328 | myconf="${myconf} --with-charset=latin1" |
| 298 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
329 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 299 | fi |
330 | fi |
| 300 | |
331 | |
| 301 | if use embedded ; then |
332 | if use embedded ; then |
| 302 | myconf="${myconf} --with-embedded-privilege-control" |
333 | myconf="${myconf} --with-embedded-privilege-control" |
| 303 | myconf="${myconf} --with-embedded-server" |
334 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 325 | if mysql_version_is_at_least "5.1.11" ; then |
356 | if mysql_version_is_at_least "5.1.11" ; then |
| 326 | myconf="${myconf} $(use_with ssl)" |
357 | myconf="${myconf} $(use_with ssl)" |
| 327 | else |
358 | else |
| 328 | myconf="${myconf} $(use_with ssl openssl)" |
359 | myconf="${myconf} $(use_with ssl openssl)" |
| 329 | fi |
360 | fi |
| 330 | |
361 | |
|
|
362 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
363 | if use berkdb ; then |
|
|
364 | elog "Berkeley DB support was disabled due to build failures" |
|
|
365 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
366 | elog "if you want it again. Gentoo bug #224067." |
|
|
367 | fi |
|
|
368 | myconf="${myconf} --without-berkeley-db" |
|
|
369 | elif use berkdb ; then |
| 331 | # The following fix is due to a bug with bdb on SPARC's. See: |
370 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 332 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
371 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 333 | # It comes down to non-64-bit safety problems. |
372 | # It comes down to non-64-bit safety problems. |
| 334 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
373 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 335 | elog "Berkeley DB support was disabled due to incompatible arch" |
374 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
375 | myconf="${myconf} --without-berkeley-db" |
|
|
376 | else |
|
|
377 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
378 | fi |
|
|
379 | else |
| 336 | myconf="${myconf} --without-berkeley-db" |
380 | myconf="${myconf} --without-berkeley-db" |
| 337 | else |
|
|
| 338 | if use berkdb ; then |
|
|
| 339 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 340 | else |
|
|
| 341 | myconf="${myconf} --without-berkeley-db" |
|
|
| 342 | fi |
|
|
| 343 | fi |
381 | fi |
| 344 | |
382 | |
| 345 | if mysql_version_is_at_least "4.1.3" ; then |
383 | if mysql_version_is_at_least "4.1.3" ; then |
| 346 | myconf="${myconf} --with-geometry" |
384 | myconf="${myconf} --with-geometry" |
| 347 | myconf="${myconf} $(use_with cluster ndbcluster)" |
385 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 363 | if mysql_version_is_at_least "5.0.3" ; then |
401 | if mysql_version_is_at_least "5.0.3" ; then |
| 364 | elog "Before using the Federated storage engine, please be sure to read" |
402 | elog "Before using the Federated storage engine, please be sure to read" |
| 365 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
403 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 366 | myconf="${myconf} --with-federated-storage-engine" |
404 | myconf="${myconf} --with-federated-storage-engine" |
| 367 | fi |
405 | fi |
|
|
406 | fi |
|
|
407 | |
|
|
408 | if [ "${PN}" == "mysql-community" ]; then |
|
|
409 | myconf="${myconf} --enable-community-features" |
| 368 | fi |
410 | fi |
| 369 | |
411 | |
| 370 | mysql_version_is_at_least "5.0.18" \ |
412 | mysql_version_is_at_least "5.0.18" \ |
| 371 | && use max-idx-128 \ |
413 | && use max-idx-128 \ |
| 372 | && myconf="${myconf} --with-max-indexes=128" |
414 | && myconf="${myconf} --with-max-indexes=128" |
| … | |
… | |
| 440 | } |
482 | } |
| 441 | |
483 | |
| 442 | # |
484 | # |
| 443 | # EBUILD FUNCTIONS |
485 | # EBUILD FUNCTIONS |
| 444 | # |
486 | # |
| 445 | |
|
|
| 446 | mysql_pkg_setup() { |
487 | mysql_pkg_setup() { |
| 447 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
488 | if hasq test ${FEATURES} ; then |
| 448 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
489 | if ! use minimal ; then |
|
|
490 | if [[ $UID -eq 0 ]]; then |
|
|
491 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
492 | fi |
|
|
493 | fi |
|
|
494 | fi |
|
|
495 | |
|
|
496 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
497 | # localhost. Also causes weird failures. |
|
|
498 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 449 | |
499 | |
| 450 | # Check for USE flag problems in pkg_setup |
500 | # Check for USE flag problems in pkg_setup |
| 451 | if use static && use ssl ; then |
501 | if use static && use ssl ; then |
| 452 | eerror "MySQL does not support being built statically with SSL support enabled!" |
502 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 453 | die "MySQL does not support being built statically with SSL support enabled!" |
503 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 465 | && ( use cluster || use extraengine ) \ |
515 | && ( use cluster || use extraengine ) \ |
| 466 | && use minimal ; then |
516 | && use minimal ; then |
| 467 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
517 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 468 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
518 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 469 | fi |
519 | fi |
|
|
520 | |
|
|
521 | # This should come after all of the die statements |
|
|
522 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
523 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 470 | |
524 | |
| 471 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
525 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 472 | && use berkdb \ |
526 | && use berkdb \ |
| 473 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
527 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 474 | } |
528 | } |
| … | |
… | |
| 476 | mysql_src_unpack() { |
530 | mysql_src_unpack() { |
| 477 | # Initialize the proper variables first |
531 | # Initialize the proper variables first |
| 478 | mysql_init_vars |
532 | mysql_init_vars |
| 479 | |
533 | |
| 480 | unpack ${A} |
534 | unpack ${A} |
|
|
535 | # Grab the patches |
|
|
536 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
|
|
537 | # Bitkeeper checkout support |
| 481 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
538 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
| 482 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
539 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
| 483 | bitkeeper_fetch "mysql-5.1-ndb" |
540 | bitkeeper_fetch "mysql-5.1-ndb" |
| 484 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
541 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
| 485 | bitkeeper_fetch "mysql-5.2-falcon" |
542 | bitkeeper_fetch "mysql-5.2-falcon" |
| … | |
… | |
| 495 | fi |
552 | fi |
| 496 | |
553 | |
| 497 | # Apply the patches for this MySQL version |
554 | # Apply the patches for this MySQL version |
| 498 | EPATCH_SUFFIX="patch" |
555 | EPATCH_SUFFIX="patch" |
| 499 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
556 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
557 | # Clean out old items |
|
|
558 | rm -f "${EPATCH_SOURCE}"/* |
|
|
559 | # Now link in right patches |
| 500 | mysql_mv_patches |
560 | mysql_mv_patches |
|
|
561 | # And apply |
| 501 | epatch |
562 | epatch |
| 502 | |
563 | |
| 503 | # Additional checks, remove bundled zlib |
564 | # Additional checks, remove bundled zlib |
| 504 | rm -f "${S}/zlib/"*.[ch] |
565 | rm -f "${S}/zlib/"*.[ch] |
| 505 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
566 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| … | |
… | |
| 521 | |
582 | |
| 522 | local rebuilddirlist d |
583 | local rebuilddirlist d |
| 523 | |
584 | |
| 524 | if mysql_version_is_at_least "5.1.12" ; then |
585 | if mysql_version_is_at_least "5.1.12" ; then |
| 525 | rebuilddirlist="." |
586 | rebuilddirlist="." |
| 526 | # TODO: check this with a cmake expert |
587 | # TODO: check this with a cmake expert |
| 527 | use innodb \ |
588 | use innodb \ |
| 528 | && cmake \ |
589 | && cmake \ |
| 529 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
590 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 530 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
591 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 531 | "storage/innobase" |
592 | "storage/innobase" |
| 532 | else |
593 | else |
| 533 | rebuilddirlist=". innobase" |
594 | rebuilddirlist=". innobase" |
| 534 | fi |
595 | fi |
| 535 | |
596 | |
| … | |
… | |
| 543 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
604 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 544 | && use berkdb ; then |
605 | && use berkdb ; then |
| 545 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
606 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 546 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
607 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 547 | || die "Could not copy libtool.m4 to bdb/dist/" |
608 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
609 | #These files exist only with libtool-2*, and need to be included. |
|
|
610 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
611 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
612 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
613 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
614 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
615 | fi |
| 548 | pushd "bdb/dist" &>/dev/null |
616 | pushd "bdb/dist" &>/dev/null |
| 549 | sh s_all \ |
617 | sh s_all \ |
| 550 | || die "Failed bdb reconfigure" |
618 | || die "Failed bdb reconfigure" |
| 551 | popd &>/dev/null |
619 | popd &>/dev/null |
| 552 | fi |
620 | fi |
| … | |
… | |
| 644 | else |
712 | else |
| 645 | mysql_mycnf_version="4.0" |
713 | mysql_mycnf_version="4.0" |
| 646 | fi |
714 | fi |
| 647 | insinto "${MY_SYSCONFDIR}" |
715 | insinto "${MY_SYSCONFDIR}" |
| 648 | doins scripts/mysqlaccess.conf |
716 | doins scripts/mysqlaccess.conf |
| 649 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
717 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 650 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
718 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 651 | > "${TMPDIR}/my.cnf.ok" |
719 | > "${TMPDIR}/my.cnf.ok" |
| 652 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
720 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 653 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
721 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 654 | fi |
722 | fi |
| … | |
… | |
| 657 | # Minimal builds don't have the MySQL server |
725 | # Minimal builds don't have the MySQL server |
| 658 | if ! use minimal ; then |
726 | if ! use minimal ; then |
| 659 | # Empty directories ... |
727 | # Empty directories ... |
| 660 | diropts "-m0750" |
728 | diropts "-m0750" |
| 661 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
729 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 662 | dodir "${DATADIR}" |
730 | dodir "${MY_DATADIR}" |
| 663 | keepdir "${DATADIR}" |
731 | keepdir "${MY_DATADIR}" |
| 664 | chown -R mysql:mysql "${D}/${DATADIR}" |
732 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 665 | fi |
733 | fi |
| 666 | |
734 | |
| 667 | diropts "-m0755" |
735 | diropts "-m0755" |
| 668 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
736 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 669 | dodir "${folder}" |
737 | dodir "${folder}" |
| … | |
… | |
| 672 | done |
740 | done |
| 673 | fi |
741 | fi |
| 674 | |
742 | |
| 675 | # Docs |
743 | # Docs |
| 676 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
744 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
745 | doinfo "${S}"/Docs/mysql.info |
| 677 | |
746 | |
| 678 | # Minimal builds don't have the MySQL server |
747 | # Minimal builds don't have the MySQL server |
| 679 | if ! use minimal ; then |
748 | if ! use minimal ; then |
| 680 | docinto "support-files" |
749 | docinto "support-files" |
| 681 | for script in \ |
750 | for script in \ |
| 682 | support-files/my-*.cnf \ |
751 | "${S}"/support-files/my-*.cnf \ |
| 683 | support-files/magic \ |
752 | "${S}"/support-files/magic \ |
| 684 | support-files/ndb-config-2-node.ini |
753 | "${S}"/support-files/ndb-config-2-node.ini |
| 685 | do |
754 | do |
| 686 | dodoc "${script}" |
755 | dodoc "${script}" |
| 687 | done |
756 | done |
| 688 | |
757 | |
| 689 | docinto "scripts" |
758 | docinto "scripts" |
| 690 | for script in scripts/mysql* ; do |
759 | for script in "${S}"/scripts/mysql* ; do |
| 691 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
760 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 692 | done |
761 | done |
|
|
762 | |
| 693 | fi |
763 | fi |
| 694 | |
764 | |
| 695 | mysql_lib_symlinks "${D}" |
765 | mysql_lib_symlinks "${D}" |
| 696 | } |
766 | } |
| 697 | |
767 | |
| … | |
… | |
| 757 | |
827 | |
| 758 | mysql_pkg_config() { |
828 | mysql_pkg_config() { |
| 759 | # Make sure the vars are correctly initialized |
829 | # Make sure the vars are correctly initialized |
| 760 | mysql_init_vars |
830 | mysql_init_vars |
| 761 | |
831 | |
| 762 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
832 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 763 | |
833 | |
| 764 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
834 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 765 | die "Minimal builds do NOT include the MySQL server" |
835 | die "Minimal builds do NOT include the MySQL server" |
| 766 | fi |
836 | fi |
| 767 | |
837 | |
| 768 | local pwd1="a" |
838 | local pwd1="a" |
| 769 | local pwd2="b" |
839 | local pwd2="b" |
| 770 | local maxtry=5 |
840 | local maxtry=5 |
| 771 | |
841 | |
| 772 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
842 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 773 | ewarn "You have already a MySQL database in place." |
843 | ewarn "You have already a MySQL database in place." |
| 774 | ewarn "(${ROOT}/${DATADIR}/*)" |
844 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 775 | ewarn "Please rename or delete it if you wish to replace it." |
845 | ewarn "Please rename or delete it if you wish to replace it." |
| 776 | die "MySQL database already exists!" |
846 | die "MySQL database already exists!" |
| 777 | fi |
847 | fi |
| 778 | |
848 | |
| 779 | einfo "Creating the mysql database and setting proper" |
849 | einfo "Creating the mysql database and setting proper" |
| … | |
… | |
| 798 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
868 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 799 | || touch "${TMPDIR}/fill_help_tables.sql" |
869 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 800 | help_tables="${TMPDIR}/fill_help_tables.sql" |
870 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 801 | |
871 | |
| 802 | pushd "${TMPDIR}" &>/dev/null |
872 | pushd "${TMPDIR}" &>/dev/null |
| 803 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
873 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
874 | if [ $? -ne 0 ]; then |
|
|
875 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
876 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
877 | fi |
| 804 | popd &>/dev/null |
878 | popd &>/dev/null |
| 805 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
879 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 806 | || die "MySQL databases not installed" |
880 | || die "MySQL databases not installed" |
| 807 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
881 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 808 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
882 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 809 | |
883 | |
| 810 | if mysql_version_is_at_least "4.1.3" ; then |
884 | if mysql_version_is_at_least "4.1.3" ; then |
| 811 | options="--skip-ndbcluster" |
885 | options="--skip-ndbcluster" |
| 812 | |
886 | |
| 813 | # Filling timezones, see |
887 | # Filling timezones, see |
| … | |
… | |
| 824 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
898 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 825 | ${options} \ |
899 | ${options} \ |
| 826 | --user=mysql \ |
900 | --user=mysql \ |
| 827 | --skip-grant-tables \ |
901 | --skip-grant-tables \ |
| 828 | --basedir=${ROOT}/usr \ |
902 | --basedir=${ROOT}/usr \ |
| 829 | --datadir=${ROOT}/${DATADIR} \ |
903 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 830 | --skip-innodb \ |
904 | --skip-innodb \ |
| 831 | --skip-bdb \ |
905 | --skip-bdb \ |
| 832 | --skip-networking \ |
906 | --skip-networking \ |
| 833 | --max_allowed_packet=8M \ |
907 | --max_allowed_packet=8M \ |
| 834 | --net_buffer_length=16K \ |
908 | --net_buffer_length=16K \ |