| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2009 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.119 2009/12/09 18:45:46 robbat2 Exp $ |
| 4 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
| 9 | # Note that MYSQL_VERSION_ID must be empty! |
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
| 10 | |
17 | |
| 11 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 12 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
| 13 | |
20 | |
| 14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
|
|
22 | |
|
|
23 | case "${EAPI:-0}" in |
|
|
24 | 2) |
|
|
25 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
26 | src_unpack src_prepare \ |
|
|
27 | src_configure src_compile \ |
|
|
28 | src_install \ |
|
|
29 | pkg_preinst pkg_postinst \ |
|
|
30 | pkg_config pkg_postrm |
|
|
31 | IUSE_DEFAULT_ON='+' |
|
|
32 | ;; |
|
|
33 | 0 | 1) |
|
|
34 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
35 | src_unpack \ |
|
|
36 | src_compile \ |
|
|
37 | src_install \ |
|
|
38 | pkg_preinst pkg_postinst \ |
|
|
39 | pkg_config pkg_postrm |
|
|
40 | ;; |
|
|
41 | *) |
|
|
42 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
43 | esac |
| 15 | |
44 | |
| 16 | # Shorten the path because the socket path length must be shorter than 107 chars |
45 | # 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 |
46 | # and we will run a mysql server during test phase |
| 18 | S="${WORKDIR}/mysql" |
47 | S="${WORKDIR}/mysql" |
| 19 | |
48 | |
| 20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
49 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 21 | |
50 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 22 | if [[ ${PR#r} -lt 60 ]] ; then |
51 | EGIT_PROJECT=mysql-extras |
| 23 | IS_BITKEEPER=0 |
52 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 24 | elif [[ ${PR#r} -lt 90 ]] ; then |
53 | inherit git |
| 25 | IS_BITKEEPER=60 |
|
|
| 26 | else |
|
|
| 27 | IS_BITKEEPER=90 |
|
|
| 28 | fi |
54 | fi |
| 29 | |
55 | |
|
|
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
57 | # @DESCRIPTION: |
| 30 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
| 31 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
59 | # 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 |
60 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 33 | # depend on this variable. |
61 | # depend on this variable. |
| 34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
62 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
63 | # We also strip off upstream's trailing letter that they use to respin tarballs |
| 35 | |
64 | |
| 36 | MYSQL_VERSION_ID="" |
65 | MYSQL_VERSION_ID="" |
|
|
66 | tpv="${PV%[a-z]}" |
| 37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
67 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 38 | for vatom in 0 1 2 3 ; do |
68 | for vatom in 0 1 2 3 ; do |
| 39 | # pad to length 2 |
69 | # pad to length 2 |
| 40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
70 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 42 | done |
72 | done |
| 43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
73 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 45 | |
75 | |
|
|
76 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
79 | # and 0 (no). |
|
|
80 | # Community features are available in mysql-community |
|
|
81 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
82 | if [ "${PN}" == "mysql-community" ]; then |
|
|
83 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
85 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
87 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
88 | elif [ "${PV#5.4}" != "${PV}" ]; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | else |
|
|
91 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
92 | fi |
|
|
93 | |
| 46 | # Be warned, *DEPEND are version-dependant |
94 | # Be warned, *DEPEND are version-dependant |
|
|
95 | # These are used for both runtime and compiletime |
| 47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
96 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 48 | userland_GNU? ( sys-process/procps ) |
97 | userland_GNU? ( sys-process/procps ) |
| 49 | >=sys-apps/sed-4 |
98 | >=sys-apps/sed-4 |
| 50 | >=sys-apps/texinfo-4.7-r1 |
99 | >=sys-apps/texinfo-4.7-r1 |
| 51 | >=sys-libs/readline-4.1 |
100 | >=sys-libs/readline-4.1 |
| … | |
… | |
| 55 | for i in "" "-community" ; do |
104 | for i in "" "-community" ; do |
| 56 | [[ "${i}" == ${PN#mysql} ]] || |
105 | [[ "${i}" == ${PN#mysql} ]] || |
| 57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
106 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 58 | done |
107 | done |
| 59 | |
108 | |
|
|
109 | RDEPEND="${DEPEND} |
|
|
110 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
111 | selinux? ( sec-policy/selinux-mysql )" |
|
|
112 | |
|
|
113 | # compile-time-only |
| 60 | mysql_version_is_at_least "5.1" \ |
114 | mysql_version_is_at_least "5.1" \ |
| 61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
115 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 62 | |
116 | |
|
|
117 | # compile-time-only |
| 63 | mysql_version_is_at_least "5.1.12" \ |
118 | mysql_version_is_at_least "5.1.12" \ |
| 64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
119 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 65 | |
120 | |
| 66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
121 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
122 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
123 | |
| 69 | # BitKeeper dependency, compile-time only |
124 | # For other stuff to bring us in |
| 70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
125 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
|
|
126 | |
|
|
127 | # Work out the default SERVER_URI correctly |
|
|
128 | if [ -z "${SERVER_URI}" ]; then |
|
|
129 | # The community build is on the mirrors |
|
|
130 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
131 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
132 | # The (old) enterprise source is on the primary site only |
|
|
133 | elif [ "${PN}" == "mysql" ]; then |
|
|
134 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
135 | fi |
|
|
136 | fi |
| 71 | |
137 | |
| 72 | # Define correct SRC_URIs |
138 | # Define correct SRC_URIs |
| 73 | SRC_URI="${SERVER_URI} |
139 | SRC_URI="${SERVER_URI}" |
|
|
140 | |
|
|
141 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
|
|
142 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 74 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
143 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 75 | mysql_version_is_at_least "5.1.12" \ |
144 | mysql_version_is_at_least "5.1.12" \ |
| 76 | && [[ -n "${PBXT_VERSION}" ]] \ |
145 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 77 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
146 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 78 | |
147 | |
| 79 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
148 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 80 | HOMEPAGE="http://www.mysql.com/" |
149 | HOMEPAGE="http://www.mysql.com/" |
| 81 | LICENSE="GPL-2" |
150 | LICENSE="GPL-2" |
| 82 | SLOT="0" |
151 | SLOT="0" |
| 83 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
152 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
| 84 | RESTRICT="confcache" |
|
|
| 85 | |
153 | |
| 86 | mysql_version_is_at_least "4.1" \ |
154 | mysql_version_is_at_least "4.1" \ |
| 87 | && IUSE="${IUSE} latin1" |
155 | && IUSE="${IUSE} latin1" |
| 88 | |
156 | |
| 89 | mysql_version_is_at_least "4.1.3" \ |
157 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 94 | |
162 | |
| 95 | mysql_version_is_at_least "5.0.18" \ |
163 | mysql_version_is_at_least "5.0.18" \ |
| 96 | && IUSE="${IUSE} max-idx-128" |
164 | && IUSE="${IUSE} max-idx-128" |
| 97 | |
165 | |
| 98 | mysql_version_is_at_least "5.1" \ |
166 | mysql_version_is_at_least "5.1" \ |
| 99 | && IUSE="${IUSE} innodb" |
|
|
| 100 | |
|
|
| 101 | mysql_version_is_at_least "5.1" \ |
|
|
| 102 | || IUSE="${IUSE} berkdb" |
167 | || IUSE="${IUSE} berkdb" |
| 103 | |
168 | |
| 104 | mysql_version_is_at_least "5.1.12" \ |
169 | mysql_version_is_at_least "5.1.12" \ |
| 105 | && IUSE="${IUSE} pbxt" |
170 | && IUSE="${IUSE} pbxt" |
| 106 | |
171 | |
| 107 | RDEPEND="${DEPEND} |
172 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 108 | !minimal? ( dev-db/mysql-init-scripts ) |
173 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 109 | selinux? ( sec-policy/selinux-mysql )" |
|
|
| 110 | |
174 | |
| 111 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
|
|
| 112 | pkg_postinst pkg_config pkg_postrm |
|
|
| 113 | |
175 | |
| 114 | # |
176 | # |
| 115 | # HELPER FUNCTIONS: |
177 | # HELPER FUNCTIONS: |
| 116 | # |
178 | # |
| 117 | |
179 | |
| 118 | bitkeeper_fetch() { |
180 | # @FUNCTION: mysql_disable_test |
| 119 | local reposuf |
181 | # @DESCRIPTION: |
| 120 | if [[ -z "${1}" ]] ; then |
182 | # Helper function to disable specific tests. |
| 121 | local tpv |
|
|
| 122 | tpv=( ${PV//[-._]/ } ) |
|
|
| 123 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
| 124 | else |
|
|
| 125 | reposuf="${1}" |
|
|
| 126 | fi |
|
|
| 127 | einfo "Using '${reposuf}' repository." |
|
|
| 128 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
| 129 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
| 130 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
| 131 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
| 132 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
| 133 | # hint: does not work |
|
|
| 134 | local ebk_fetch_cmd="sfioball" |
|
|
| 135 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
| 136 | local ebk_update_cmd="update" |
|
|
| 137 | |
|
|
| 138 | # addread "/etc/bitkeeper" |
|
|
| 139 | addwrite "${ebk_store_dir}" |
|
|
| 140 | |
|
|
| 141 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
| 142 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
| 143 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
| 144 | fi |
|
|
| 145 | |
|
|
| 146 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
| 147 | |
|
|
| 148 | local wc_path=${reposuf} |
|
|
| 149 | |
|
|
| 150 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
| 151 | local options="-r+" |
|
|
| 152 | |
|
|
| 153 | # first checkout |
|
|
| 154 | einfo "bitkeeper checkout start -->" |
|
|
| 155 | einfo " repository: ${repo_uri}" |
|
|
| 156 | |
|
|
| 157 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
| 158 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
| 159 | else |
|
|
| 160 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
| 161 | popd |
|
|
| 162 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
| 163 | fi |
|
|
| 164 | |
|
|
| 165 | # update working copy |
|
|
| 166 | einfo "bitkeeper update start -->" |
|
|
| 167 | einfo " repository: ${repo_uri}" |
|
|
| 168 | |
|
|
| 169 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
| 170 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
| 171 | fi |
|
|
| 172 | |
|
|
| 173 | einfo " working copy: ${wc_path}" |
|
|
| 174 | cd "${wc_path}" |
|
|
| 175 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
| 176 | |
|
|
| 177 | echo |
|
|
| 178 | popd |
|
|
| 179 | } |
|
|
| 180 | |
|
|
| 181 | mysql_disable_test() { |
183 | mysql_disable_test() { |
| 182 | local testname="${1}" ; shift |
184 | local testname="${1}" ; shift |
| 183 | local reason="${@}" |
185 | local reason="${@}" |
| 184 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
186 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 185 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
187 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 186 | ewarn "test '${testname}' disabled: '${reason}'" |
188 | ewarn "test '${testname}' disabled: '${reason}'" |
| 187 | } |
189 | } |
| 188 | |
190 | |
|
|
191 | # @FUNCTION: mysql_init_vars |
|
|
192 | # @DESCRIPTION: |
| 189 | # void mysql_init_vars() |
193 | # void mysql_init_vars() |
| 190 | # |
|
|
| 191 | # Initialize global variables |
194 | # Initialize global variables |
| 192 | # 2005-11-19 <vivo@gentoo.org> |
195 | # 2005-11-19 <vivo@gentoo.org> |
| 193 | |
|
|
| 194 | mysql_init_vars() { |
196 | mysql_init_vars() { |
| 195 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
197 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 196 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
198 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 197 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
199 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 198 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
200 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 199 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
201 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 200 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
202 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 201 | |
203 | |
| 202 | if [[ -z "${DATADIR}" ]] ; then |
204 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 203 | DATADIR="" |
205 | MY_DATADIR="" |
| 204 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
206 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 205 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
207 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 206 | | sed -ne '/datadir/s|^--datadir=||p' \ |
208 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 207 | | tail -n1` |
209 | | tail -n1` |
| 208 | if [[ -z "${DATADIR}" ]] ; then |
210 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 209 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
211 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 210 | | sed -e 's/.*=\s*//'` |
212 | | sed -e 's/.*=\s*//' \ |
|
|
213 | | tail -n1` |
| 211 | fi |
214 | fi |
| 212 | fi |
215 | fi |
| 213 | if [[ -z "${DATADIR}" ]] ; then |
216 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 214 | DATADIR="${MY_LOCALSTATEDIR}" |
217 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 215 | einfo "Using default DATADIR" |
218 | einfo "Using default MY_DATADIR" |
| 216 | fi |
219 | fi |
| 217 | elog "MySQL DATADIR is ${DATADIR}" |
220 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 218 | |
221 | |
| 219 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
222 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 220 | if [[ -e "${DATADIR}" ]] ; then |
223 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 221 | elog "Previous datadir found, it's YOUR job to change" |
224 | # If you get this and you're wondering about it, see bug #207636 |
| 222 | elog "ownership and take care of it" |
225 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
226 | elog "A new one will not be created." |
| 223 | PREVIOUS_DATADIR="yes" |
227 | PREVIOUS_DATADIR="yes" |
| 224 | else |
228 | else |
| 225 | PREVIOUS_DATADIR="no" |
229 | PREVIOUS_DATADIR="no" |
| 226 | fi |
230 | fi |
| 227 | export PREVIOUS_DATADIR |
231 | export PREVIOUS_DATADIR |
| 228 | fi |
232 | fi |
|
|
233 | else |
|
|
234 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
235 | local new_MY_DATADIR |
|
|
236 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
237 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
238 | | tail -n1` |
|
|
239 | |
|
|
240 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
241 | ewarn "MySQL MY_DATADIR has changed" |
|
|
242 | ewarn "from ${MY_DATADIR}" |
|
|
243 | ewarn "to ${new_MY_DATADIR}" |
|
|
244 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
245 | fi |
|
|
246 | fi |
| 229 | fi |
247 | fi |
| 230 | |
248 | |
| 231 | MY_SOURCEDIR=${SERVER_URI##*/} |
249 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 232 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
250 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 233 | |
251 | |
| 234 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
252 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 235 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
253 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 236 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
254 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 237 | } |
255 | } |
| 238 | |
256 | |
| 239 | configure_minimal() { |
257 | configure_minimal() { |
| 240 | # These are things we exclude from a minimal build, please |
258 | # These are things we exclude from a minimal build, please |
| 241 | # note that the server actually does get built and installed, |
259 | # note that the server actually does get built and installed, |
| 242 | # but we then delete it before packaging. |
260 | # but we then delete it before packaging. |
| 243 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
261 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 244 | |
262 | |
| 245 | for i in ${minimal_exclude_list} ; do |
263 | for i in ${minimal_exclude_list} ; do |
| 246 | myconf="${myconf} --without-${i}" |
264 | myconf="${myconf} --without-${i}" |
| 247 | done |
265 | done |
| 248 | myconf="${myconf} --with-extra-charsets=none" |
266 | myconf="${myconf} --with-extra-charsets=none" |
| 249 | myconf="${myconf} --enable-local-infile" |
267 | myconf="${myconf} --enable-local-infile" |
| 250 | |
268 | |
| 251 | if use static ; then |
269 | if use static ; then |
| 252 | myconf="${myconf} --with-client-ldflags=-all-static" |
270 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 253 | myconf="${myconf} --disable-shared" |
271 | myconf="${myconf} --disable-shared --with-pic" |
| 254 | else |
272 | else |
| 255 | myconf="${myconf} --enable-shared --enable-static" |
273 | myconf="${myconf} --enable-shared --enable-static" |
| 256 | fi |
274 | fi |
| 257 | |
275 | |
| 258 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
276 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| … | |
… | |
| 274 | myconf="${myconf} --without-libwrap" |
292 | myconf="${myconf} --without-libwrap" |
| 275 | |
293 | |
| 276 | if use static ; then |
294 | if use static ; then |
| 277 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
295 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 278 | myconf="${myconf} --with-client-ldflags=-all-static" |
296 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 279 | myconf="${myconf} --disable-shared" |
297 | myconf="${myconf} --disable-shared --with-pic" |
| 280 | else |
298 | else |
| 281 | myconf="${myconf} --enable-shared --enable-static" |
299 | myconf="${myconf} --enable-shared --enable-static" |
| 282 | fi |
300 | fi |
| 283 | |
301 | |
| 284 | if use debug ; then |
302 | if use debug ; then |
| … | |
… | |
| 288 | mysql_version_is_at_least "4.1.3" \ |
306 | mysql_version_is_at_least "4.1.3" \ |
| 289 | && use cluster \ |
307 | && use cluster \ |
| 290 | && myconf="${myconf} --without-ndb-debug" |
308 | && myconf="${myconf} --without-ndb-debug" |
| 291 | fi |
309 | fi |
| 292 | |
310 | |
|
|
311 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
312 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
313 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
314 | ewarn "You MUST file bugs without these variables set." |
|
|
315 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
316 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 293 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
317 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 294 | myconf="${myconf} --with-charset=utf8" |
318 | myconf="${myconf} --with-charset=utf8" |
| 295 | myconf="${myconf} --with-collation=utf8_general_ci" |
319 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 296 | else |
320 | else |
| 297 | myconf="${myconf} --with-charset=latin1" |
321 | myconf="${myconf} --with-charset=latin1" |
| 298 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
322 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 299 | fi |
323 | fi |
| 300 | |
324 | |
| 301 | if use embedded ; then |
325 | if use embedded ; then |
| 302 | myconf="${myconf} --with-embedded-privilege-control" |
326 | myconf="${myconf} --with-embedded-privilege-control" |
| 303 | myconf="${myconf} --with-embedded-server" |
327 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 326 | myconf="${myconf} $(use_with ssl)" |
350 | myconf="${myconf} $(use_with ssl)" |
| 327 | else |
351 | else |
| 328 | myconf="${myconf} $(use_with ssl openssl)" |
352 | myconf="${myconf} $(use_with ssl openssl)" |
| 329 | fi |
353 | fi |
| 330 | |
354 | |
|
|
355 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
356 | if use berkdb ; then |
|
|
357 | elog "Berkeley DB support was disabled due to build failures" |
|
|
358 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
359 | elog "if you want it again. Gentoo bug #224067." |
|
|
360 | fi |
|
|
361 | myconf="${myconf} --without-berkeley-db" |
|
|
362 | elif use berkdb ; then |
| 331 | # The following fix is due to a bug with bdb on SPARC's. See: |
363 | # 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 |
364 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 333 | # It comes down to non-64-bit safety problems. |
365 | # It comes down to non-64-bit safety problems. |
| 334 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
366 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 335 | elog "Berkeley DB support was disabled due to incompatible arch" |
367 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
368 | myconf="${myconf} --without-berkeley-db" |
|
|
369 | else |
|
|
370 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
371 | fi |
|
|
372 | else |
| 336 | myconf="${myconf} --without-berkeley-db" |
373 | 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 |
374 | fi |
| 344 | |
375 | |
| 345 | if mysql_version_is_at_least "4.1.3" ; then |
376 | if mysql_version_is_at_least "4.1.3" ; then |
| 346 | myconf="${myconf} --with-geometry" |
377 | myconf="${myconf} --with-geometry" |
| 347 | myconf="${myconf} $(use_with cluster ndbcluster)" |
378 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 362 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
393 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 363 | if mysql_version_is_at_least "5.0.3" ; then |
394 | if mysql_version_is_at_least "5.0.3" ; then |
| 364 | elog "Before using the Federated storage engine, please be sure to read" |
395 | elog "Before using the Federated storage engine, please be sure to read" |
| 365 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
396 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 366 | myconf="${myconf} --with-federated-storage-engine" |
397 | myconf="${myconf} --with-federated-storage-engine" |
|
|
398 | fi |
|
|
399 | fi |
|
|
400 | |
|
|
401 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
402 | myconf="${myconf} `use_enable community community-features`" |
|
|
403 | if use community; then |
|
|
404 | myconf="${myconf} `use_enable profiling`" |
|
|
405 | else |
|
|
406 | myconf="${myconf} --disable-profiling" |
| 367 | fi |
407 | fi |
| 368 | fi |
408 | fi |
| 369 | |
409 | |
| 370 | mysql_version_is_at_least "5.0.18" \ |
410 | mysql_version_is_at_least "5.0.18" \ |
| 371 | && use max-idx-128 \ |
411 | && use max-idx-128 \ |
| … | |
… | |
| 394 | |
434 | |
| 395 | elog "Before using the Federated storage engine, please be sure to read" |
435 | elog "Before using the Federated storage engine, please be sure to read" |
| 396 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
436 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 397 | fi |
437 | fi |
| 398 | |
438 | |
| 399 | if use innodb ; then |
439 | # Upstream specifically requests that InnoDB always be built. |
| 400 | plugins="${plugins},innobase" |
440 | plugins="${plugins},innobase" |
| 401 | fi |
|
|
| 402 | |
441 | |
| 403 | # like configuration=max-no-ndb |
442 | # like configuration=max-no-ndb |
| 404 | if use cluster ; then |
443 | if use cluster ; then |
| 405 | plugins="${plugins},ndbcluster" |
444 | plugins="${plugins},ndbcluster" |
| 406 | myconf="${myconf} --with-ndb-binlog" |
445 | myconf="${myconf} --with-ndb-binlog" |
| … | |
… | |
| 411 | fi |
450 | fi |
| 412 | |
451 | |
| 413 | myconf="${myconf} --with-plugins=${plugins}" |
452 | myconf="${myconf} --with-plugins=${plugins}" |
| 414 | } |
453 | } |
| 415 | |
454 | |
| 416 | pbxt_src_compile() { |
455 | pbxt_src_configure() { |
| 417 | mysql_init_vars |
456 | mysql_init_vars |
| 418 | |
457 | |
| 419 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
458 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 420 | |
459 | |
| 421 | einfo "Reconfiguring dir '${PWD}'" |
460 | einfo "Reconfiguring dir '${PWD}'" |
| … | |
… | |
| 424 | local myconf="" |
463 | local myconf="" |
| 425 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
464 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 426 | use debug && myconf="${myconf} --with-debug=full" |
465 | use debug && myconf="${myconf} --with-debug=full" |
| 427 | # TODO: is it safe/needed to use econf here ? |
466 | # TODO: is it safe/needed to use econf here ? |
| 428 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
467 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
468 | } |
|
|
469 | |
|
|
470 | pbxt_src_compile() { |
|
|
471 | # Be backwards compatible for now |
|
|
472 | if [[ $EAPI != 2 ]]; then |
|
|
473 | pbxt_src_configure |
|
|
474 | fi |
| 429 | # TODO: is it safe/needed to use emake here ? |
475 | # TODO: is it safe/needed to use emake here ? |
| 430 | make || die "Problem making PBXT storage engine (${myconf})" |
476 | make || die "Problem making PBXT storage engine (${myconf})" |
| 431 | |
477 | |
| 432 | popd |
478 | popd |
| 433 | # TODO: modify test suite for PBXT |
479 | # TODO: modify test suite for PBXT |
| … | |
… | |
| 440 | } |
486 | } |
| 441 | |
487 | |
| 442 | # |
488 | # |
| 443 | # EBUILD FUNCTIONS |
489 | # EBUILD FUNCTIONS |
| 444 | # |
490 | # |
| 445 | |
491 | # @FUNCTION: mysql_pkg_setup |
|
|
492 | # @DESCRIPTION: |
|
|
493 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
494 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
495 | # check for conflicting use flags |
|
|
496 | # create new user and group for mysql |
|
|
497 | # warn about deprecated features |
| 446 | mysql_pkg_setup() { |
498 | mysql_pkg_setup() { |
| 447 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
499 | if hasq test ${FEATURES} ; then |
| 448 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
500 | if ! use minimal ; then |
|
|
501 | if [[ $UID -eq 0 ]]; then |
|
|
502 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
503 | fi |
|
|
504 | fi |
|
|
505 | fi |
| 449 | |
506 | |
| 450 | # Check for USE flag problems in pkg_setup |
507 | # Check for USE flag problems in pkg_setup |
| 451 | if use static && use ssl ; then |
508 | if use static && use ssl ; then |
| 452 | eerror "MySQL does not support being built statically with SSL support enabled!" |
509 | 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!" |
510 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 466 | && use minimal ; then |
523 | && use minimal ; then |
| 467 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
524 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 468 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
525 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 469 | fi |
526 | fi |
| 470 | |
527 | |
|
|
528 | # This should come after all of the die statements |
|
|
529 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
530 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
531 | |
| 471 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
532 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 472 | && use berkdb \ |
533 | && use berkdb \ |
| 473 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
534 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 474 | } |
535 | } |
| 475 | |
536 | |
|
|
537 | # @FUNCTION: mysql_src_unpack |
|
|
538 | # @DESCRIPTION: |
|
|
539 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 476 | mysql_src_unpack() { |
540 | mysql_src_unpack() { |
| 477 | # Initialize the proper variables first |
541 | # Initialize the proper variables first |
| 478 | mysql_init_vars |
542 | mysql_init_vars |
| 479 | |
543 | |
| 480 | unpack ${A} |
544 | unpack ${A} |
| 481 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
545 | # Grab the patches |
| 482 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
546 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 483 | bitkeeper_fetch "mysql-5.1-ndb" |
547 | |
| 484 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
| 485 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
| 486 | else |
|
|
| 487 | bitkeeper_fetch |
|
|
| 488 | fi |
|
|
| 489 | cd "${S}" |
|
|
| 490 | einfo "Running upstream autorun over BK sources ..." |
|
|
| 491 | BUILD/autorun.sh |
|
|
| 492 | else |
|
|
| 493 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
548 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
549 | |
|
|
550 | # Be backwards compatible for now |
|
|
551 | case ${EAPI:-0} in |
|
|
552 | 2) : ;; |
|
|
553 | 0 | 1) mysql_src_prepare ;; |
|
|
554 | esac |
|
|
555 | } |
|
|
556 | |
|
|
557 | # @FUNCTION: mysql_src_prepare |
|
|
558 | # @DESCRIPTION: |
|
|
559 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
560 | mysql_src_prepare() { |
| 494 | cd "${S}" |
561 | cd "${S}" |
| 495 | fi |
|
|
| 496 | |
562 | |
| 497 | # Apply the patches for this MySQL version |
563 | # Apply the patches for this MySQL version |
| 498 | EPATCH_SUFFIX="patch" |
564 | EPATCH_SUFFIX="patch" |
| 499 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
565 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
566 | # Clean out old items |
|
|
567 | rm -f "${EPATCH_SOURCE}"/* |
|
|
568 | # Now link in right patches |
| 500 | mysql_mv_patches |
569 | mysql_mv_patches |
|
|
570 | # And apply |
| 501 | epatch |
571 | epatch |
| 502 | |
572 | |
| 503 | # Additional checks, remove bundled zlib |
573 | # Additional checks, remove bundled zlib |
| 504 | rm -f "${S}/zlib/"*.[ch] |
574 | rm -f "${S}/zlib/"*.[ch] |
| 505 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
575 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| … | |
… | |
| 521 | |
591 | |
| 522 | local rebuilddirlist d |
592 | local rebuilddirlist d |
| 523 | |
593 | |
| 524 | if mysql_version_is_at_least "5.1.12" ; then |
594 | if mysql_version_is_at_least "5.1.12" ; then |
| 525 | rebuilddirlist="." |
595 | rebuilddirlist="." |
| 526 | # TODO: check this with a cmake expert |
596 | # TODO: check this with a cmake expert |
| 527 | use innodb \ |
|
|
| 528 | && cmake \ |
597 | cmake \ |
| 529 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
598 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 530 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
599 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 531 | "storage/innobase" |
600 | "storage/innobase" |
| 532 | else |
601 | else |
| 533 | rebuilddirlist=". innobase" |
602 | rebuilddirlist=". innobase" |
| 534 | fi |
603 | fi |
| 535 | |
604 | |
| … | |
… | |
| 543 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
612 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 544 | && use berkdb ; then |
613 | && use berkdb ; then |
| 545 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
614 | [[ -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" \ |
615 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 547 | || die "Could not copy libtool.m4 to bdb/dist/" |
616 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
617 | #These files exist only with libtool-2*, and need to be included. |
|
|
618 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
619 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
620 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
621 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
622 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
623 | fi |
| 548 | pushd "bdb/dist" &>/dev/null |
624 | pushd "bdb/dist" &>/dev/null |
| 549 | sh s_all \ |
625 | sh s_all \ |
| 550 | || die "Failed bdb reconfigure" |
626 | || die "Failed bdb reconfigure" |
| 551 | popd &>/dev/null |
627 | popd &>/dev/null |
| 552 | fi |
628 | fi |
| 553 | } |
629 | } |
| 554 | |
630 | |
|
|
631 | # @FUNCTION: mysql_src_configure |
|
|
632 | # @DESCRIPTION: |
|
|
633 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 555 | mysql_src_compile() { |
634 | mysql_src_configure() { |
| 556 | # Make sure the vars are correctly initialized |
635 | # Make sure the vars are correctly initialized |
| 557 | mysql_init_vars |
636 | mysql_init_vars |
| 558 | |
637 | |
| 559 | # $myconf is modified by the configure_* functions |
638 | # $myconf is modified by the configure_* functions |
| 560 | local myconf="" |
639 | local myconf="" |
| … | |
… | |
| 574 | filter-flags "-O" "-O[01]" |
653 | filter-flags "-O" "-O[01]" |
| 575 | |
654 | |
| 576 | # glib-2.3.2_pre fix, bug #16496 |
655 | # glib-2.3.2_pre fix, bug #16496 |
| 577 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
656 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 578 | |
657 | |
|
|
658 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
659 | # fail badly during cluster startup. |
|
|
660 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
661 | filter-flags "-fstack-protector-all" |
|
|
662 | fi |
|
|
663 | |
| 579 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
664 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 580 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
665 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 581 | mysql_version_is_at_least "5.0" \ |
666 | mysql_version_is_at_least "5.0" \ |
| 582 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
667 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 583 | export CXXFLAGS |
668 | export CXXFLAGS |
|
|
669 | |
|
|
670 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
671 | append-flags -fno-strict-aliasing |
| 584 | |
672 | |
| 585 | econf \ |
673 | econf \ |
| 586 | --libexecdir="/usr/sbin" \ |
674 | --libexecdir="/usr/sbin" \ |
| 587 | --sysconfdir="${MY_SYSCONFDIR}" \ |
675 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 588 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
676 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 599 | # TODO: Move this before autoreconf !!! |
687 | # TODO: Move this before autoreconf !!! |
| 600 | find . -type f -name Makefile -print0 \ |
688 | find . -type f -name Makefile -print0 \ |
| 601 | | xargs -0 -n100 sed -i \ |
689 | | xargs -0 -n100 sed -i \ |
| 602 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
690 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 603 | |
691 | |
|
|
692 | if [[ $EAPI == 2 ]]; then |
|
|
693 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
|
|
694 | fi |
|
|
695 | } |
|
|
696 | |
|
|
697 | # @FUNCTION: mysql_src_compile |
|
|
698 | # @DESCRIPTION: |
|
|
699 | # Compile the mysql code. |
|
|
700 | mysql_src_compile() { |
|
|
701 | # Be backwards compatible for now |
|
|
702 | case ${EAPI:-0} in |
|
|
703 | 2) : ;; |
|
|
704 | 0 | 1) mysql_src_configure ;; |
|
|
705 | esac |
|
|
706 | |
| 604 | emake || die "emake failed" |
707 | emake || die "emake failed" |
| 605 | |
708 | |
| 606 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
709 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 607 | } |
710 | } |
| 608 | |
711 | |
|
|
712 | # @FUNCTION: mysql_src_install |
|
|
713 | # @DESCRIPTION: |
|
|
714 | # Install mysql. |
| 609 | mysql_src_install() { |
715 | mysql_src_install() { |
| 610 | # Make sure the vars are correctly initialized |
716 | # Make sure the vars are correctly initialized |
| 611 | mysql_init_vars |
717 | mysql_init_vars |
| 612 | |
718 | |
| 613 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
719 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 614 | |
720 | |
| 615 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
721 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 616 | |
722 | |
| 617 | insinto "${MY_INCLUDEDIR}" |
|
|
| 618 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 619 | |
|
|
| 620 | # Convenience links |
723 | # Convenience links |
|
|
724 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 621 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
725 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 622 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
726 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 623 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
727 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 624 | |
728 | |
| 625 | # Various junk (my-*.cnf moved elsewhere) |
729 | # Various junk (my-*.cnf moved elsewhere) |
|
|
730 | einfo "Removing duplicate /usr/share/mysql files" |
| 626 | rm -Rf "${D}/usr/share/info" |
731 | rm -Rf "${D}/usr/share/info" |
| 627 | for removeme in "mysql-log-rotate" mysql.server* \ |
732 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 628 | binary-configure* my-*.cnf mi_test_all* |
733 | binary-configure* my-*.cnf mi_test_all* |
| 629 | do |
734 | do |
| 630 | rm -f "${D}"/usr/share/mysql/${removeme} |
735 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 631 | done |
736 | done |
| 632 | |
737 | |
| 633 | # Clean up stuff for a minimal build |
738 | # Clean up stuff for a minimal build |
| 634 | if use minimal ; then |
739 | if use minimal ; then |
|
|
740 | einfo "Remove all extra content for minimal build" |
| 635 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
741 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 636 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
742 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
| 637 | rm -f "${D}/usr/sbin/mysqld" |
743 | rm -f "${D}/usr/sbin/mysqld" |
| 638 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
744 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 639 | fi |
745 | fi |
| … | |
… | |
| 642 | if mysql_version_is_at_least "4.1" ; then |
748 | if mysql_version_is_at_least "4.1" ; then |
| 643 | mysql_mycnf_version="4.1" |
749 | mysql_mycnf_version="4.1" |
| 644 | else |
750 | else |
| 645 | mysql_mycnf_version="4.0" |
751 | mysql_mycnf_version="4.0" |
| 646 | fi |
752 | fi |
|
|
753 | einfo "Building default my.cnf" |
| 647 | insinto "${MY_SYSCONFDIR}" |
754 | insinto "${MY_SYSCONFDIR}" |
| 648 | doins scripts/mysqlaccess.conf |
755 | doins scripts/mysqlaccess.conf |
| 649 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
756 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 650 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
757 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 651 | > "${TMPDIR}/my.cnf.ok" |
758 | > "${TMPDIR}/my.cnf.ok" |
| 652 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
759 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 653 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
760 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 654 | fi |
761 | fi |
| 655 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
762 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 656 | |
763 | |
| 657 | # Minimal builds don't have the MySQL server |
764 | # Minimal builds don't have the MySQL server |
| 658 | if ! use minimal ; then |
765 | if ! use minimal ; then |
|
|
766 | einfo "Creating initial directories" |
| 659 | # Empty directories ... |
767 | # Empty directories ... |
| 660 | diropts "-m0750" |
768 | diropts "-m0750" |
| 661 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
769 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 662 | dodir "${DATADIR}" |
770 | dodir "${MY_DATADIR}" |
| 663 | keepdir "${DATADIR}" |
771 | keepdir "${MY_DATADIR}" |
| 664 | chown -R mysql:mysql "${D}/${DATADIR}" |
772 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 665 | fi |
773 | fi |
| 666 | |
774 | |
| 667 | diropts "-m0755" |
775 | diropts "-m0755" |
| 668 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
776 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 669 | dodir "${folder}" |
777 | dodir "${folder}" |
| … | |
… | |
| 671 | chown -R mysql:mysql "${D}/${folder}" |
779 | chown -R mysql:mysql "${D}/${folder}" |
| 672 | done |
780 | done |
| 673 | fi |
781 | fi |
| 674 | |
782 | |
| 675 | # Docs |
783 | # Docs |
|
|
784 | einfo "Installing docs" |
| 676 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
785 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
786 | doinfo "${S}"/Docs/mysql.info |
| 677 | |
787 | |
| 678 | # Minimal builds don't have the MySQL server |
788 | # Minimal builds don't have the MySQL server |
| 679 | if ! use minimal ; then |
789 | if ! use minimal ; then |
|
|
790 | einfo "Including support files and sample configurations" |
| 680 | docinto "support-files" |
791 | docinto "support-files" |
| 681 | for script in \ |
792 | for script in \ |
| 682 | support-files/my-*.cnf \ |
793 | "${S}"/support-files/my-*.cnf \ |
| 683 | support-files/magic \ |
794 | "${S}"/support-files/magic \ |
| 684 | support-files/ndb-config-2-node.ini |
795 | "${S}"/support-files/ndb-config-2-node.ini |
| 685 | do |
796 | do |
| 686 | dodoc "${script}" |
797 | dodoc "${script}" |
| 687 | done |
798 | done |
| 688 | |
799 | |
| 689 | docinto "scripts" |
800 | docinto "scripts" |
| 690 | for script in scripts/mysql* ; do |
801 | for script in "${S}"/scripts/mysql* ; do |
| 691 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
802 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 692 | done |
803 | done |
|
|
804 | |
| 693 | fi |
805 | fi |
| 694 | |
806 | |
| 695 | mysql_lib_symlinks "${D}" |
807 | mysql_lib_symlinks "${D}" |
| 696 | } |
808 | } |
| 697 | |
809 | |
|
|
810 | # @FUNCTION: mysql_pkg_preinst |
|
|
811 | # @DESCRIPTION: |
|
|
812 | # Create the user and groups for mysql - die if that fails. |
| 698 | mysql_pkg_preinst() { |
813 | mysql_pkg_preinst() { |
| 699 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
814 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 700 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
815 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 701 | } |
816 | } |
| 702 | |
817 | |
|
|
818 | # @FUNCTION: mysql_pkg_postinst |
|
|
819 | # @DESCRIPTION: |
|
|
820 | # Run post-installation tasks: |
|
|
821 | # create the dir for logfiles if non-existant |
|
|
822 | # touch the logfiles and secure them |
|
|
823 | # install scripts |
|
|
824 | # issue required steps for optional features |
|
|
825 | # issue deprecation warnings |
| 703 | mysql_pkg_postinst() { |
826 | mysql_pkg_postinst() { |
| 704 | # Make sure the vars are correctly initialized |
827 | # Make sure the vars are correctly initialized |
| 705 | mysql_init_vars |
828 | mysql_init_vars |
| 706 | |
829 | |
| 707 | # Check FEATURES="collision-protect" before removing this |
830 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 753 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
876 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 754 | && use berkdb \ |
877 | && use berkdb \ |
| 755 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
878 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 756 | } |
879 | } |
| 757 | |
880 | |
|
|
881 | # @FUNCTION: mysql_pkg_config |
|
|
882 | # @DESCRIPTION: |
|
|
883 | # Configure mysql environment. |
| 758 | mysql_pkg_config() { |
884 | mysql_pkg_config() { |
|
|
885 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
886 | |
| 759 | # Make sure the vars are correctly initialized |
887 | # Make sure the vars are correctly initialized |
| 760 | mysql_init_vars |
888 | mysql_init_vars |
| 761 | |
889 | |
| 762 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
890 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 763 | |
891 | |
| 764 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
892 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 765 | die "Minimal builds do NOT include the MySQL server" |
893 | die "Minimal builds do NOT include the MySQL server" |
|
|
894 | fi |
|
|
895 | |
|
|
896 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
897 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
898 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
899 | |
|
|
900 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
901 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
902 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
903 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
904 | else |
|
|
905 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
906 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
907 | || die "Moving MY_DATADIR failed" |
|
|
908 | fi |
|
|
909 | else |
|
|
910 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
911 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
912 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
913 | else |
|
|
914 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
915 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
916 | fi |
|
|
917 | fi |
| 766 | fi |
918 | fi |
| 767 | |
919 | |
| 768 | local pwd1="a" |
920 | local pwd1="a" |
| 769 | local pwd2="b" |
921 | local pwd2="b" |
| 770 | local maxtry=5 |
922 | local maxtry=5 |
| 771 | |
923 | |
| 772 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
924 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 773 | ewarn "You have already a MySQL database in place." |
925 | ewarn "You have already a MySQL database in place." |
| 774 | ewarn "(${ROOT}/${DATADIR}/*)" |
926 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 775 | ewarn "Please rename or delete it if you wish to replace it." |
927 | ewarn "Please rename or delete it if you wish to replace it." |
| 776 | die "MySQL database already exists!" |
928 | die "MySQL database already exists!" |
| 777 | fi |
929 | fi |
|
|
930 | |
|
|
931 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
932 | # localhost. Also causes weird failures. |
|
|
933 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 778 | |
934 | |
| 779 | einfo "Creating the mysql database and setting proper" |
935 | einfo "Creating the mysql database and setting proper" |
| 780 | einfo "permissions on it ..." |
936 | einfo "permissions on it ..." |
| 781 | |
937 | |
| 782 | einfo "Insert a password for the mysql 'root' user" |
938 | einfo "Insert a password for the mysql 'root' user" |
| … | |
… | |
| 798 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
954 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 799 | || touch "${TMPDIR}/fill_help_tables.sql" |
955 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 800 | help_tables="${TMPDIR}/fill_help_tables.sql" |
956 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 801 | |
957 | |
| 802 | pushd "${TMPDIR}" &>/dev/null |
958 | pushd "${TMPDIR}" &>/dev/null |
| 803 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
959 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
960 | if [ $? -ne 0 ]; then |
|
|
961 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
962 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
963 | fi |
| 804 | popd &>/dev/null |
964 | popd &>/dev/null |
| 805 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
965 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 806 | || die "MySQL databases not installed" |
966 | || die "MySQL databases not installed" |
| 807 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
967 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 808 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
968 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 809 | |
969 | |
| 810 | if mysql_version_is_at_least "4.1.3" ; then |
970 | if mysql_version_is_at_least "4.1.3" ; then |
| 811 | options="--skip-ndbcluster" |
971 | options="--skip-ndbcluster" |
| 812 | |
972 | |
| 813 | # Filling timezones, see |
973 | # Filling timezones, see |
| … | |
… | |
| 824 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
984 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 825 | ${options} \ |
985 | ${options} \ |
| 826 | --user=mysql \ |
986 | --user=mysql \ |
| 827 | --skip-grant-tables \ |
987 | --skip-grant-tables \ |
| 828 | --basedir=${ROOT}/usr \ |
988 | --basedir=${ROOT}/usr \ |
| 829 | --datadir=${ROOT}/${DATADIR} \ |
989 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 830 | --skip-innodb \ |
990 | --skip-innodb \ |
| 831 | --skip-bdb \ |
991 | --skip-bdb \ |
| 832 | --skip-networking \ |
992 | --skip-networking \ |
| 833 | --max_allowed_packet=8M \ |
993 | --max_allowed_packet=8M \ |
| 834 | --net_buffer_length=16K \ |
994 | --net_buffer_length=16K \ |
| … | |
… | |
| 863 | einfo "Stopping the server ..." |
1023 | einfo "Stopping the server ..." |
| 864 | wait %1 |
1024 | wait %1 |
| 865 | einfo "Done" |
1025 | einfo "Done" |
| 866 | } |
1026 | } |
| 867 | |
1027 | |
|
|
1028 | # @FUNCTION: mysql_pkg_postrm |
|
|
1029 | # @DESCRIPTION: |
|
|
1030 | # Remove mysql symlinks. |
| 868 | mysql_pkg_postrm() { |
1031 | mysql_pkg_postrm() { |
| 869 | : # mysql_lib_symlinks "${D}" |
1032 | : # mysql_lib_symlinks "${D}" |
| 870 | } |
1033 | } |