| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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.6 2006/01/14 19:00:32 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.16 2006/02/08 21:25:53 vivo Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa <vivo at gentoo.org> |
5 | # Author: Francesco Riosa <vivo at gentoo.org> |
| 6 | # Maintainer: Francesco Riosa <vivo at gentoo.org> |
6 | # Maintainer: Francesco Riosa <vivo at gentoo.org> |
| 7 | |
7 | |
| 8 | inherit eutils flag-o-matic gnuconfig mysql_fx |
8 | inherit eutils flag-o-matic gnuconfig mysql_fx |
| … | |
… | |
| 14 | # and we will run a mysql server during test phase |
14 | # and we will run a mysql server during test phase |
| 15 | S="${WORKDIR}/${PN}" |
15 | S="${WORKDIR}/${PN}" |
| 16 | |
16 | |
| 17 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
17 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
| 18 | HOMEPAGE="http://www.mysql.com/" |
18 | HOMEPAGE="http://www.mysql.com/" |
| 19 | NEWP="${PN}-${PV/_/-}" |
19 | NEWP="${P/_/-}" |
| 20 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
20 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
| 21 | mirror://gentoo/mysql-extras-20060114.tar.bz2" |
21 | mirror://gentoo/mysql-extras-20060115.tar.bz2" |
| 22 | LICENSE="GPL-2" |
22 | LICENSE="GPL-2" |
| 23 | IUSE="big-tables berkdb debug minimal perl selinux ssl static" |
23 | IUSE="big-tables berkdb debug minimal perl selinux srvdir ssl static" |
| 24 | RESTRICT="primaryuri" |
24 | RESTRICT="primaryuri confcache" |
| 25 | DEPEND="app-admin/eselect-mysql" |
25 | DEPEND="app-admin/eselect-mysql" |
| 26 | |
26 | |
| 27 | mysql_version_is_at_least "4.01.03.00" \ |
27 | mysql_version_is_at_least "4.01.03.00" \ |
| 28 | && IUSE="${IUSE} cluster utf8 extraengine" |
28 | && IUSE="${IUSE} cluster extraengine" |
| 29 | |
29 | |
| 30 | mysql_version_is_at_least "5.00.18.00" \ |
30 | mysql_version_is_at_least "5.00.18.00" \ |
| 31 | && IUSE="${IUSE} max-idx-128" |
31 | && IUSE="${IUSE} max-idx-128" |
| 32 | |
32 | |
| 33 | mysql_version_is_at_least "5.01.00.00" \ |
33 | mysql_version_is_at_least "5.01.00.00" \ |
| 34 | && IUSE="${IUSE} innodb" |
34 | && IUSE="${IUSE} innodb" |
| 35 | |
35 | |
| 36 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_config pkg_postrm |
36 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_config mysql_pkg_prerm pkg_postrm |
|
|
37 | |
|
|
38 | # void mysql_init_vars() |
|
|
39 | # |
|
|
40 | # initialize global variables |
|
|
41 | # 2005-11-19 <vivo at gentoo.org> |
|
|
42 | mysql_init_vars() { |
|
|
43 | |
|
|
44 | if [[ ${SLOT} -eq 0 ]] ; then |
|
|
45 | MY_SUFFIX="" |
|
|
46 | else |
|
|
47 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
48 | fi |
|
|
49 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
|
|
50 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
|
|
51 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
|
|
52 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
|
|
53 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
|
|
54 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
|
|
55 | |
|
|
56 | if [ -z "${DATADIR}" ]; then |
|
|
57 | DATADIR="" |
|
|
58 | if [ -f "${SYSCONFDIR}/my.cnf" ] ; then |
|
|
59 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null | sed -ne '/datadir/s|^--datadir=||p' | tail -n1` |
|
|
60 | if [ -z "${DATADIR}" ]; then |
|
|
61 | if useq "srvdir" ; then |
|
|
62 | DATADIR="/srv/localhost/mysql/datadir" |
|
|
63 | else |
|
|
64 | DATADIR=`grep ^datadir "${SYSCONFDIR}/my.cnf" | sed -e 's/.*=\s*//'` |
|
|
65 | fi |
|
|
66 | fi |
|
|
67 | fi |
|
|
68 | if [ -z "${DATADIR}" ]; then |
|
|
69 | DATADIR="${MY_LOCALSTATEDIR}" |
|
|
70 | einfo "Using default DATADIR" |
|
|
71 | fi |
|
|
72 | einfo "MySQL DATADIR is ${DATADIR}" |
|
|
73 | |
|
|
74 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
|
|
75 | if [ -a "${DATADIR}" ] ; then |
|
|
76 | ewarn "Previous datadir found, it's YOUR job to change" |
|
|
77 | ewarn "ownership and have care of it" |
|
|
78 | PREVIOUS_DATADIR="yes" |
|
|
79 | export PREVIOUS_DATADIR |
|
|
80 | else |
|
|
81 | PREVIOUS_DATADIR="no" |
|
|
82 | export PREVIOUS_DATADIR |
|
|
83 | fi |
|
|
84 | fi |
|
|
85 | fi |
|
|
86 | |
|
|
87 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
|
|
88 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
|
|
89 | export MY_INCLUDEDIR |
|
|
90 | export DATADIR |
|
|
91 | } |
| 37 | |
92 | |
| 38 | mysql_pkg_setup() { |
93 | mysql_pkg_setup() { |
| 39 | |
94 | |
| 40 | enewgroup mysql 60 || die "problem adding group mysql" |
95 | enewgroup mysql 60 || die "problem adding group mysql" |
| 41 | enewuser mysql 60 -1 /dev/null mysql \ |
96 | enewuser mysql 60 -1 /dev/null mysql \ |
| … | |
… | |
| 118 | ${buildstep} || die "failed ${buildstep/ */} dir \"${d}\"" |
173 | ${buildstep} || die "failed ${buildstep/ */} dir \"${d}\"" |
| 119 | done |
174 | done |
| 120 | popd &>/dev/null |
175 | popd &>/dev/null |
| 121 | done |
176 | done |
| 122 | |
177 | |
| 123 | if ! useq bdbdir && ! mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
178 | if useq berkdb && ! mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
| 124 | then |
179 | then |
| 125 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
180 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
| 126 | pushd "${bdbdir}" && sh s_all || die "failed bdb reconfigure" &>/dev/null |
181 | pushd "${bdbdir}" && sh s_all || die "failed bdb reconfigure" &>/dev/null |
| 127 | popd &>/dev/null |
182 | popd &>/dev/null |
| 128 | fi |
183 | fi |
| … | |
… | |
| 190 | else |
245 | else |
| 191 | myconf="${myconf} --with-raid" |
246 | myconf="${myconf} --with-raid" |
| 192 | fi |
247 | fi |
| 193 | |
248 | |
| 194 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
249 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
| 195 | if mysql_version_is_at_least "4.01.00.00" && useq utf8; then |
250 | if mysql_version_is_at_least "4.01.00.00" ; then |
| 196 | myconf="${myconf} --with-charset=utf8" |
251 | myconf="${myconf} --with-charset=utf8" |
| 197 | myconf="${myconf} --with-collation=utf8_general_ci" |
252 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 198 | else |
253 | else |
| 199 | myconf="${myconf} --with-charset=latin1" |
254 | myconf="${myconf} --with-charset=latin1" |
| 200 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
255 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| … | |
… | |
| 262 | if mysql_version_is_at_least "5.01.00.00" ; then |
317 | if mysql_version_is_at_least "5.01.00.00" ; then |
| 263 | myconf="${myconf} --with-partition" |
318 | myconf="${myconf} --with-partition" |
| 264 | fi |
319 | fi |
| 265 | fi |
320 | fi |
| 266 | |
321 | |
|
|
322 | fi |
|
|
323 | |
| 267 | mysql_version_is_at_least "5.00.18.00" \ |
324 | mysql_version_is_at_least "5.00.18.00" \ |
| 268 | && useq "max-idx-128" \ |
325 | && useq "max-idx-128" \ |
| 269 | && myconf="${myconf} --with-max-indexes=128" |
326 | && myconf="${myconf} --with-max-indexes=128" |
|
|
327 | |
|
|
328 | if mysql_version_is_at_least "5.01.05.00" ; then |
|
|
329 | myconf="${myconf} --with-row-based-replication" |
| 270 | fi |
330 | fi |
| 271 | |
331 | |
| 272 | #Bug #114895,Bug #110149 |
332 | #Bug #114895,Bug #110149 |
| 273 | filter-flags "-O" "-O[01]" |
333 | filter-flags "-O" "-O[01]" |
| 274 | #glibc-2.3.2_pre fix; bug #16496 |
334 | #glibc-2.3.2_pre fix; bug #16496 |
| … | |
… | |
| 293 | --enable-local-infile \ |
353 | --enable-local-infile \ |
| 294 | --with-mysqld-user=mysql \ |
354 | --with-mysqld-user=mysql \ |
| 295 | --with-client-ldflags=-lstdc++ \ |
355 | --with-client-ldflags=-lstdc++ \ |
| 296 | --enable-thread-safe-client \ |
356 | --enable-thread-safe-client \ |
| 297 | --with-comment="Gentoo Linux ${PF}" \ |
357 | --with-comment="Gentoo Linux ${PF}" \ |
| 298 | --with-unix-socket-path="/var/run/mysqld/mysqld${MY_SUFFIX}.sock" \ |
358 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
| 299 | --with-zlib-dir=/usr \ |
359 | --with-zlib-dir=/usr \ |
| 300 | --with-lib-ccflags="-fPIC" \ |
360 | --with-lib-ccflags="-fPIC" \ |
| 301 | --without-readline \ |
361 | --without-readline \ |
| 302 | --without-docs \ |
362 | --without-docs \ |
| 303 | ${myconf} || die "bad ./configure" |
363 | ${myconf} || die "bad ./configure" |
| … | |
… | |
| 360 | fi |
420 | fi |
| 361 | |
421 | |
| 362 | # config stuff |
422 | # config stuff |
| 363 | insinto "${MY_SYSCONFDIR}" |
423 | insinto "${MY_SYSCONFDIR}" |
| 364 | doins scripts/mysqlaccess.conf |
424 | doins scripts/mysqlaccess.conf |
|
|
425 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
|
|
426 | -e "s!@DATADIR@!${DATADIR}!g" \ |
|
|
427 | "${FILESDIR}/my.cnf-4.1-r1" \ |
|
|
428 | > "${TMPDIR}/my.cnf.ok" |
| 365 | newins "${FILESDIR}/my.cnf-4.1" my.cnf |
429 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
|
|
430 | |
| 366 | insinto "/etc/conf.d" |
431 | insinto "/etc/conf.d" |
| 367 | newins "${FILESDIR}/mysql-slot.conf.d-r2" "mysql" |
432 | newins "${FILESDIR}/mysql-slot.conf.d-r1" "mysql" |
| 368 | mysql_version_is_at_least "5.00.11.00" \ |
433 | mysql_version_is_at_least "5.00.11.00" \ |
| 369 | && newins "${FILESDIR}/mysqlmanager-slot.conf.d" "mysqlmanager" |
434 | && newins "${FILESDIR}/mysqlmanager-slot.conf.d" "mysqlmanager" |
| 370 | |
|
|
| 371 | local charset='utf8' |
|
|
| 372 | ! useq utf8 && local charset='latin1' |
|
|
| 373 | sed --in-place \ |
|
|
| 374 | -e "s/@MY_SUFFIX@/${MY_SUFFIX}/" \ |
|
|
| 375 | -e "s/@CHARSET@/${charset}/" \ |
|
|
| 376 | "${D}/etc/mysql${MY_SUFFIX}/my.cnf" |
|
|
| 377 | |
435 | |
| 378 | # minimal builds don't have the server |
436 | # minimal builds don't have the server |
| 379 | if ! useq minimal; then |
437 | if ! useq minimal; then |
| 380 | exeinto /etc/init.d |
438 | exeinto /etc/init.d |
| 381 | newexe "${FILESDIR}/mysql-slot.rc6-r2" "mysql" |
439 | newexe "${FILESDIR}/mysql-slot.rc6-r3" "mysql" |
| 382 | [[ ${SLOT} -gt 0 ]] && dosym "/etc/init.d/mysql" "/etc/init.d/mysql${MY_SUFFIX}" |
|
|
| 383 | |
440 | |
| 384 | mysql_version_is_at_least "5.00.11.00" \ |
441 | mysql_version_is_at_least "5.00.11.00" \ |
| 385 | && newexe "${FILESDIR}/mysqlmanager-slot.rc6" "mysqlmanager" |
442 | && newexe "${FILESDIR}/mysqlmanager-slot.rc6" "mysqlmanager" |
| 386 | insinto /etc/logrotate.d |
443 | insinto /etc/logrotate.d |
| 387 | # TODO |
444 | sed -e "s!___MY_SUFFIX___!${MY_SUFFIX}!g" \ |
|
|
445 | "${FILESDIR}/logrotate-slot.mysql" \ |
|
|
446 | > "${TMPDIR}/logrotate.mysql" |
| 388 | newins "${FILESDIR}/logrotate.mysql" "mysql${MY_SUFFIX}" |
447 | newins "${TMPDIR}/logrotate.mysql" "mysql${MY_SUFFIX}" |
| 389 | |
448 | |
| 390 | #empty dirs... |
449 | #empty dirs... |
| 391 | diropts "-m0750" |
450 | diropts "-m0750" |
| 392 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
451 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 393 | dodir "${DATADIR}" |
452 | dodir "${DATADIR}" |
| … | |
… | |
| 425 | # oops, temporary fix |
484 | # oops, temporary fix |
| 426 | mysql_check_version_range "5.00.16.00 to 5.00.18.99" \ |
485 | mysql_check_version_range "5.00.16.00 to 5.00.18.99" \ |
| 427 | && cp -f \ |
486 | && cp -f \ |
| 428 | "${WORKDIR}/mysql-extras/fill_help_tables.sql-5.0" \ |
487 | "${WORKDIR}/mysql-extras/fill_help_tables.sql-5.0" \ |
| 429 | "${D}/usr/share/mysql${MY_SUFFIX}/fill_help_tables.sql" |
488 | "${D}/usr/share/mysql${MY_SUFFIX}/fill_help_tables.sql" |
|
|
489 | |
|
|
490 | # MOVED HERE DUE TO BUG #121445 |
|
|
491 | # create a list of files, to be used |
|
|
492 | # by external utilities |
|
|
493 | mkdir -p "${D}/var/lib/eselect/mysql/" |
|
|
494 | local filelist="${D}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
495 | pushd "${D}/" &>/dev/null |
|
|
496 | env -i find usr/bin/ usr/sbin/ usr/share/man \ |
|
|
497 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
498 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
499 | > "${filelist}" |
|
|
500 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
501 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
502 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
503 | popd &>/dev/null |
|
|
504 | |
| 430 | } |
505 | } |
| 431 | |
506 | |
| 432 | mysql_pkg_preinst() { |
507 | mysql_pkg_preinst() { |
|
|
508 | |
|
|
509 | ## create a list of files, to be used |
|
|
510 | ## by external utilities |
|
|
511 | ## will be used in pkg_postinst |
|
|
512 | #local filelist="${TMPDIR}/FILELIST" |
|
|
513 | #pushd "${D}/" &>/dev/null |
|
|
514 | # mkdir -p "${ROOT}/var/lib/eselect/mysql/" |
|
|
515 | # env -i find usr/bin/ usr/sbin/ usr/share/man \ |
|
|
516 | # -type f -name "*${MY_SUFFIX}*" \ |
|
|
517 | # -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
518 | # > "${filelist}" |
|
|
519 | # echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
520 | # echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
521 | # echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
522 | #popd &>/dev/null |
| 433 | |
523 | |
| 434 | enewgroup mysql 60 || die "problem adding group mysql" |
524 | enewgroup mysql 60 || die "problem adding group mysql" |
| 435 | enewuser mysql 60 -1 /dev/null mysql \ |
525 | enewuser mysql 60 -1 /dev/null mysql \ |
| 436 | || die "problem adding user mysql" |
526 | || die "problem adding user mysql" |
| 437 | } |
527 | } |
| … | |
… | |
| 448 | #secure the logfiles... does this bother anybody? |
538 | #secure the logfiles... does this bother anybody? |
| 449 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
539 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 450 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
540 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 451 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
541 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 452 | |
542 | |
| 453 | # create a list of files, to be used |
543 | ## list of files, to be used |
| 454 | # by external utilities |
544 | ## by external utilities |
| 455 | # uncompressed because of the small size |
|
|
| 456 | local filelist="${ROOT}/var/lib/eselect/mysql/mysql${MY_SUFFIX}" |
|
|
| 457 | pushd "${D}/" &>/dev/null |
|
|
| 458 | mkdir -p "${ROOT}/var/lib/eselect/mysql/" |
545 | #mkdir -p "${ROOT}/var/lib/eselect/mysql/" |
| 459 | env -i find usr/bin/ usr/sbin/ usr/share/man \ |
546 | #cp "${TMPDIR}/FILELIST" "${ROOT}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
| 460 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 461 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
| 462 | > "${filelist}.filelist" |
|
|
| 463 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}.filelist" |
|
|
| 464 | echo "${MY_LIBDIR#"/"}" >> "${filelist}.filelist" |
|
|
| 465 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}.filelist" |
|
|
| 466 | popd &>/dev/null |
|
|
| 467 | |
547 | |
| 468 | if ! useq minimal; then |
548 | if ! useq minimal; then |
| 469 | if [[ ${SLOT} -gt 0 ]] ; then |
549 | if [[ ${SLOT} -gt 0 ]] ; then |
| 470 | if [[ -f "${ROOT}/usr/sbin/mysqld" ]] ; then |
550 | #if [[ -f "${ROOT}/usr/sbin/mysqld" ]] ; then |
| 471 | einfo "you may want to run unmerge any unslotted MySQL versions with " |
551 | einfo "you may want to read:" |
| 472 | einfo "emerge -C --pretend dev-db/mysql" |
552 | einfo "http://www.gentoo.org/doc/en/mysql-upgrade-slotted.xml" |
| 473 | einfo "emerge -C =dev-db/mysql-X.Y.Z" |
|
|
| 474 | einfo "After the unmerge run \"eselect myqsl list\" followed by a " |
|
|
| 475 | einfo "\"eselect myqsl set 1\" to chose the default mysql server" |
|
|
| 476 | else |
553 | #else |
| 477 | local tmpres="$( eselect mysql show )" |
554 | # local tmpres="$( eselect mysql show )" |
| 478 | # "like grep -q unset" |
555 | # # "like grep -q unset" |
| 479 | if [[ "{$tmpres}" == "{$tmpres/unset/}" ]] ; then |
556 | # if [[ "{$tmpres}" == "{$tmpres/unset/}" ]] ; then |
| 480 | eselect mysql set 1 |
557 | # eselect mysql set 1 |
| 481 | else |
558 | # else |
| 482 | einfo "The version of mysql emerged now stils is _NOT_ the default" |
559 | # einfo "The version of mysql emerged now stils is _NOT_ the default" |
| 483 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
560 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
| 484 | einfo "\"eselect myqsl set 1\" to chose the default mysql server" |
561 | einfo "\"eselect myqsl set 1\" to chose the default mysql server" |
| 485 | fi |
562 | # fi |
| 486 | fi |
563 | #fi |
| 487 | fi |
564 | fi |
| 488 | |
565 | |
| 489 | # your friendly public service announcement... |
566 | # your friendly public service announcement... |
| 490 | einfo |
567 | einfo |
| 491 | einfo "You might want to run:" |
568 | einfo "You might want to run:" |
| … | |
… | |
| 530 | fi |
607 | fi |
| 531 | |
608 | |
| 532 | local options="" |
609 | local options="" |
| 533 | local sqltmp="$(emktemp)" |
610 | local sqltmp="$(emktemp)" |
| 534 | |
611 | |
| 535 | local help_tables="${ROOT}/usr/share/doc/mysql-${PVR}/scripts/fill_help_tables.sql.gz" |
612 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
| 536 | [[ -r "${help_tables}" ]] \ |
613 | [[ -r "${help_tables}" ]] \ |
| 537 | && zcat "${help_tables}" > "${TMPDIR}/fill_help_tables.sql" \ |
614 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 538 | || touch "${TMPDIR}/fill_help_tables.sql" |
615 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 539 | help_tables="${TMPDIR}/fill_help_tables.sql" |
616 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 540 | |
617 | |
| 541 | pushd "${TMPDIR}" &>/dev/null |
618 | pushd "${TMPDIR}" &>/dev/null |
| 542 | ${ROOT}/usr/bin/mysql_install_db${MY_SUFFIX} | grep -B5 -A999 -i "ERROR" |
619 | ${ROOT}/usr/bin/mysql_install_db${MY_SUFFIX} | grep -B5 -A999 -i "ERROR" |
| … | |
… | |
| 556 | if [[ -r "${help_tables}" ]] ; then |
633 | if [[ -r "${help_tables}" ]] ; then |
| 557 | cat "${help_tables}" >> "${sqltmp}" |
634 | cat "${help_tables}" >> "${sqltmp}" |
| 558 | fi |
635 | fi |
| 559 | fi |
636 | fi |
| 560 | |
637 | |
| 561 | local socket=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.sock |
638 | local socket=${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock |
| 562 | local pidfile=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.sock |
639 | local pidfile=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.pid |
| 563 | local mysqld="${ROOT}/usr/sbin/mysqld${MY_SUFFIX} \ |
640 | local mysqld="${ROOT}/usr/sbin/mysqld${MY_SUFFIX} \ |
| 564 | ${options} \ |
641 | ${options} \ |
| 565 | --user=mysql \ |
642 | --user=mysql \ |
| 566 | --skip-grant-tables \ |
643 | --skip-grant-tables \ |
| 567 | --basedir=${ROOT}/usr \ |
644 | --basedir=${ROOT}/usr \ |
| … | |
… | |
| 602 | einfo "stopping the server," |
679 | einfo "stopping the server," |
| 603 | wait %1 |
680 | wait %1 |
| 604 | einfo "done" |
681 | einfo "done" |
| 605 | } |
682 | } |
| 606 | |
683 | |
|
|
684 | mysql_pkg_prerm() { |
|
|
685 | # external program |
|
|
686 | eselect mysql slot_remove "${SLOT}" |
|
|
687 | } |
|
|
688 | |
| 607 | mysql_pkg_postrm() { |
689 | mysql_pkg_postrm() { |
| 608 | mysql_lib_symlinks |
690 | mysql_lib_symlinks |
| 609 | if [[ ${SLOT} -gt 0 ]] ; then |
691 | if [[ ${SLOT} -gt 0 ]] ; then |
| 610 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
692 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
| 611 | einfo "\"eselect myqsl list\" to chose the default mysql server" |
693 | einfo "\"eselect myqsl list\" to chose the default mysql server" |