1 | # Copyright 1999-2005 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/Attic/mysql.eclass,v 1.26 2006/03/17 20:17:53 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.73 2007/04/15 13:00:51 robbat2 Exp $ |
4 | |
4 | |
5 | # Author: Francesco Riosa <vivo at gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
6 | # Maintainer: Francesco Riosa <vivo at gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
7 | |
7 | |
8 | # MYSQL_VERSION_ID will be |
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
9 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo magic number, all [0..99] |
9 | # Note that MYSQL_VERSION_ID must be empty! |
10 | # this is an important piece, becouse from this variable depends many of the |
10 | |
11 | # choices the ebuild will do. |
11 | WANT_AUTOCONF="latest" |
12 | # in particular the code below work only with PVR like "5.0.18-r3" |
12 | WANT_AUTOMAKE="latest" |
13 | # the result with the previous PVR is "5001803" |
13 | |
14 | if [[ -z ${MYSQL_VERSION_ID} ]] ; then |
14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
15 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
15 | |
16 | for vatom in 0 1 2 3; do |
16 | # Shorten the path because the socket path length must be shorter than 107 chars |
17 | # pad to lenght 2 |
17 | # and we will run a mysql server during test phase |
18 | tpv[${vatom}]="00${tpv[${vatom}]}" |
18 | S="${WORKDIR}/mysql" |
19 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
19 | |
20 | done |
20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
21 | # strip leading "0" (otherwise it's considered an octal number from bash) |
21 | |
22 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
22 | if [[ ${PR#r} -lt 60 ]] ; then |
|
|
23 | IS_BITKEEPER=0 |
|
|
24 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
25 | IS_BITKEEPER=60 |
|
|
26 | else |
|
|
27 | IS_BITKEEPER=90 |
23 | fi |
28 | fi |
24 | |
29 | |
25 | [[ -z ${MY_EXTRAS_VER} ]] && MY_EXTRAS_VER="20060316" |
30 | # MYSQL_VERSION_ID will be: |
|
|
31 | # 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 |
|
|
33 | # depend on this variable. |
|
|
34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
26 | |
35 | |
27 | DEPEND="${DEPEND} |
36 | MYSQL_VERSION_ID="" |
28 | >=sys-libs/readline-4.1 |
37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
29 | berkdb? ( sys-apps/ed ) |
38 | for vatom in 0 1 2 3 ; do |
|
|
39 | # pad to length 2 |
|
|
40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
|
|
41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
|
|
42 | done |
|
|
43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
|
|
44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
45 | |
|
|
46 | # Be warned, *DEPEND are version-dependant |
30 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
31 | userland_GNU? ( sys-process/procps ) |
48 | userland_GNU? ( sys-process/procps ) |
32 | >=sys-libs/zlib-1.2.3 |
49 | >=sys-apps/sed-4 |
33 | >=sys-apps/texinfo-4.7-r1 |
50 | >=sys-apps/texinfo-4.7-r1 |
34 | >=sys-apps/sed-4" |
51 | >=sys-libs/readline-4.1 |
35 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
52 | >=sys-libs/zlib-1.2.3" |
|
|
53 | |
|
|
54 | # Having different flavours at the same time is not a good idea |
|
|
55 | for i in "" "-community" ; do |
|
|
56 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
58 | done |
|
|
59 | |
|
|
60 | mysql_version_is_at_least "5.1" \ |
|
|
61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
62 | |
|
|
63 | mysql_version_is_at_least "5.1.12" \ |
|
|
64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
|
|
65 | |
36 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
37 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
38 | |
68 | |
39 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
69 | # BitKeeper dependency, compile-time only |
|
|
70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
40 | |
71 | |
41 | SLOT=0 |
72 | # Define correct SRC_URIs |
|
|
73 | SRC_URI="${SERVER_URI} |
|
|
74 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
75 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
76 | mysql_version_is_at_least "5.1.12" \ |
|
|
77 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
78 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
42 | |
79 | |
43 | # shorten the path because the socket path length must be shorter than 107 chars |
|
|
44 | # and we will run a mysql server during test phase |
|
|
45 | S="${WORKDIR}/${PN}" |
|
|
46 | |
|
|
47 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
48 | HOMEPAGE="http://www.mysql.com/" |
81 | HOMEPAGE="http://www.mysql.com/" |
49 | NEWP="${P/_/-}" |
|
|
50 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
|
|
51 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
52 | LICENSE="GPL-2" |
82 | LICENSE="GPL-2" |
|
|
83 | SLOT="0" |
53 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
84 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
54 | RESTRICT="primaryuri confcache" |
85 | RESTRICT="confcache" |
55 | |
86 | |
|
|
87 | mysql_version_is_at_least "4.1" \ |
|
|
88 | && IUSE="${IUSE} latin1" |
|
|
89 | |
56 | mysql_version_is_at_least "4.01.03.00" \ |
90 | mysql_version_is_at_least "4.1.3" \ |
57 | && IUSE="${IUSE} cluster extraengine" |
91 | && IUSE="${IUSE} cluster extraengine" |
58 | |
92 | |
59 | mysql_version_is_at_least "5.00.00.00" \ |
93 | mysql_version_is_at_least "5.0" \ |
60 | || IUSE="${IUSE} raid" |
94 | || IUSE="${IUSE} raid" |
61 | |
95 | |
62 | mysql_version_is_at_least "5.00.18.00" \ |
96 | mysql_version_is_at_least "5.0.18" \ |
63 | && IUSE="${IUSE} max-idx-128" |
97 | && IUSE="${IUSE} max-idx-128" |
64 | |
98 | |
65 | mysql_version_is_at_least "5.01.00.00" \ |
99 | mysql_version_is_at_least "5.1" \ |
66 | && IUSE="${IUSE} innodb" |
100 | && IUSE="${IUSE} innodb" |
67 | |
101 | |
|
|
102 | mysql_version_is_at_least "5.1" \ |
|
|
103 | || IUSE="${IUSE} berkdb" |
|
|
104 | |
|
|
105 | mysql_version_is_at_least "5.1.12" \ |
|
|
106 | && IUSE="${IUSE} pbxt" |
|
|
107 | |
|
|
108 | RDEPEND="${DEPEND} |
|
|
109 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
110 | selinux? ( sec-policy/selinux-mysql )" |
|
|
111 | |
68 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
112 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
69 | pkg_postinst pkg_config pkg_postrm |
113 | pkg_postinst pkg_config pkg_postrm |
|
|
114 | |
|
|
115 | # |
|
|
116 | # HELPER FUNCTIONS: |
|
|
117 | # |
|
|
118 | |
|
|
119 | bitkeeper_fetch() { |
|
|
120 | local reposuf |
|
|
121 | if [[ -z "${1}" ]] ; then |
|
|
122 | local tpv |
|
|
123 | tpv=( ${PV//[-._]/ } ) |
|
|
124 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
125 | else |
|
|
126 | reposuf="${1}" |
|
|
127 | fi |
|
|
128 | einfo "Using '${reposuf}' repository." |
|
|
129 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
130 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
131 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
132 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
133 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
134 | # hint: does not work |
|
|
135 | local ebk_fetch_cmd="sfioball" |
|
|
136 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
137 | local ebk_update_cmd="update" |
|
|
138 | |
|
|
139 | # addread "/etc/bitkeeper" |
|
|
140 | addwrite "${ebk_store_dir}" |
|
|
141 | |
|
|
142 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
143 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
144 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
145 | fi |
|
|
146 | |
|
|
147 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
148 | |
|
|
149 | local wc_path=${reposuf} |
|
|
150 | |
|
|
151 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
152 | local options="-r+" |
|
|
153 | |
|
|
154 | # first checkout |
|
|
155 | einfo "bitkeeper checkout start -->" |
|
|
156 | einfo " repository: ${repo_uri}" |
|
|
157 | |
|
|
158 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
159 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
160 | else |
|
|
161 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
162 | popd |
|
|
163 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
164 | fi |
|
|
165 | |
|
|
166 | # update working copy |
|
|
167 | einfo "bitkeeper update start -->" |
|
|
168 | einfo " repository: ${repo_uri}" |
|
|
169 | |
|
|
170 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
171 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
172 | fi |
|
|
173 | |
|
|
174 | einfo " working copy: ${wc_path}" |
|
|
175 | cd "${wc_path}" |
|
|
176 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
177 | |
|
|
178 | echo |
|
|
179 | popd |
|
|
180 | } |
|
|
181 | |
|
|
182 | mysql_disable_test() { |
|
|
183 | local testname="${1}" ; shift |
|
|
184 | local reason="${@}" |
|
|
185 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
186 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
187 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
188 | } |
70 | |
189 | |
71 | # void mysql_init_vars() |
190 | # void mysql_init_vars() |
72 | # |
191 | # |
73 | # initialize global variables |
192 | # Initialize global variables |
74 | # 2005-11-19 <vivo at gentoo.org> |
193 | # 2005-11-19 <vivo@gentoo.org> |
|
|
194 | |
75 | mysql_init_vars() { |
195 | mysql_init_vars() { |
76 | |
|
|
77 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql"} |
196 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
78 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
197 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
79 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql$"} |
198 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
80 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
199 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
81 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
200 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
82 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
201 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
83 | |
202 | |
84 | if [ -z "${DATADIR}" ]; then |
203 | if [[ -z "${DATADIR}" ]] ; then |
85 | DATADIR="" |
204 | DATADIR="" |
86 | if [ -f "${MY_SYSCONFDIR}/my.cnf" ] ; then |
205 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
87 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
206 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
88 | | sed -ne '/datadir/s|^--datadir=||p' \ |
207 | | sed -ne '/datadir/s|^--datadir=||p' \ |
89 | | tail -n1` |
208 | | tail -n1` |
90 | if [ -z "${DATADIR}" ]; then |
209 | if [[ -z "${DATADIR}" ]] ; then |
91 | if useq "srvdir" ; then |
|
|
92 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
93 | else |
|
|
94 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
210 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
95 | | sed -e 's/.*=\s*//'` |
211 | | sed -e 's/.*=\s*//'` |
96 | fi |
|
|
97 | fi |
212 | fi |
98 | fi |
213 | fi |
99 | if [ -z "${DATADIR}" ]; then |
214 | if [[ -z "${DATADIR}" ]] ; then |
100 | if useq "srvdir" ; then |
|
|
101 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
102 | else |
|
|
103 | DATADIR="${MY_LOCALSTATEDIR}" |
215 | DATADIR="${MY_LOCALSTATEDIR}" |
104 | fi |
|
|
105 | einfo "Using default DATADIR" |
216 | einfo "Using default DATADIR" |
106 | fi |
217 | fi |
107 | einfo "MySQL DATADIR is ${DATADIR}" |
218 | elog "MySQL DATADIR is ${DATADIR}" |
108 | |
219 | |
109 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
220 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
110 | if [ -a "${DATADIR}" ] ; then |
221 | if [[ -e "${DATADIR}" ]] ; then |
111 | ewarn "Previous datadir found, it's YOUR job to change" |
222 | elog "Previous datadir found, it's YOUR job to change" |
112 | ewarn "ownership and have care of it" |
223 | elog "ownership and take care of it" |
113 | PREVIOUS_DATADIR="yes" |
224 | PREVIOUS_DATADIR="yes" |
114 | export PREVIOUS_DATADIR |
|
|
115 | else |
225 | else |
116 | PREVIOUS_DATADIR="no" |
226 | PREVIOUS_DATADIR="no" |
117 | export PREVIOUS_DATADIR |
|
|
118 | fi |
227 | fi |
119 | fi |
228 | export PREVIOUS_DATADIR |
120 | fi |
229 | fi |
|
|
230 | fi |
|
|
231 | |
|
|
232 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
233 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
121 | |
234 | |
122 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
235 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
123 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
236 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
124 | export MY_INCLUDEDIR |
237 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
125 | export DATADIR |
|
|
126 | } |
238 | } |
|
|
239 | |
|
|
240 | configure_minimal() { |
|
|
241 | # These are things we exclude from a minimal build, please |
|
|
242 | # note that the server actually does get built and installed, |
|
|
243 | # but we then delete it before packaging. |
|
|
244 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
|
|
245 | |
|
|
246 | for i in ${minimal_exclude_list} ; do |
|
|
247 | myconf="${myconf} --without-${i}" |
|
|
248 | done |
|
|
249 | myconf="${myconf} --with-extra-charsets=none" |
|
|
250 | myconf="${myconf} --enable-local-infile" |
|
|
251 | |
|
|
252 | if use static ; then |
|
|
253 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
254 | myconf="${myconf} --disable-shared" |
|
|
255 | else |
|
|
256 | myconf="${myconf} --enable-shared --enable-static" |
|
|
257 | fi |
|
|
258 | |
|
|
259 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
260 | myconf="${myconf} --with-charset=utf8" |
|
|
261 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
262 | else |
|
|
263 | myconf="${myconf} --with-charset=latin1" |
|
|
264 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
265 | fi |
|
|
266 | } |
|
|
267 | |
|
|
268 | configure_common() { |
|
|
269 | myconf="${myconf} $(use_with big-tables)" |
|
|
270 | myconf="${myconf} --enable-local-infile" |
|
|
271 | myconf="${myconf} --with-extra-charsets=all" |
|
|
272 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
273 | myconf="${myconf} --with-server" |
|
|
274 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
275 | myconf="${myconf} --without-libwrap" |
|
|
276 | |
|
|
277 | if use static ; then |
|
|
278 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
279 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
280 | myconf="${myconf} --disable-shared" |
|
|
281 | else |
|
|
282 | myconf="${myconf} --enable-shared --enable-static" |
|
|
283 | fi |
|
|
284 | |
|
|
285 | if use debug ; then |
|
|
286 | myconf="${myconf} --with-debug=full" |
|
|
287 | else |
|
|
288 | myconf="${myconf} --without-debug" |
|
|
289 | mysql_version_is_at_least "4.1.3" \ |
|
|
290 | && use cluster \ |
|
|
291 | && myconf="${myconf} --without-ndb-debug" |
|
|
292 | fi |
|
|
293 | |
|
|
294 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
295 | myconf="${myconf} --with-charset=utf8" |
|
|
296 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
297 | else |
|
|
298 | myconf="${myconf} --with-charset=latin1" |
|
|
299 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
300 | fi |
|
|
301 | |
|
|
302 | if use embedded ; then |
|
|
303 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
304 | myconf="${myconf} --with-embedded-server" |
|
|
305 | else |
|
|
306 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
307 | myconf="${myconf} --without-embedded-server" |
|
|
308 | fi |
|
|
309 | |
|
|
310 | } |
|
|
311 | |
|
|
312 | configure_40_41_50() { |
|
|
313 | myconf="${myconf} $(use_with perl bench)" |
|
|
314 | myconf="${myconf} --enable-assembler" |
|
|
315 | myconf="${myconf} --with-extra-tools" |
|
|
316 | myconf="${myconf} --with-innodb" |
|
|
317 | myconf="${myconf} --without-readline" |
|
|
318 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
|
|
319 | |
|
|
320 | # --with-vio is not needed anymore, it's on by default and |
|
|
321 | # has been removed from configure |
|
|
322 | if use ssl ; then |
|
|
323 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
324 | fi |
|
|
325 | |
|
|
326 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
327 | myconf="${myconf} $(use_with ssl)" |
|
|
328 | else |
|
|
329 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
330 | fi |
|
|
331 | |
|
|
332 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
333 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
334 | # It comes down to non-64-bit safety problems. |
|
|
335 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
336 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
337 | myconf="${myconf} --without-berkeley-db" |
|
|
338 | else |
|
|
339 | if use berkdb ; then |
|
|
340 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
341 | else |
|
|
342 | myconf="${myconf} --without-berkeley-db" |
|
|
343 | fi |
|
|
344 | fi |
|
|
345 | |
|
|
346 | if mysql_version_is_at_least "4.1.3" ; then |
|
|
347 | myconf="${myconf} --with-geometry" |
|
|
348 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
349 | fi |
|
|
350 | |
|
|
351 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
|
|
352 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
353 | myconf="${myconf} --with-archive-storage-engine" |
|
|
354 | |
|
|
355 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
356 | myconf="${myconf} --with-csv-storage-engine" |
|
|
357 | |
|
|
358 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
359 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
360 | |
|
|
361 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
362 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
363 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
364 | if mysql_version_is_at_least "5.0.3" ; then |
|
|
365 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
366 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
367 | myconf="${myconf} --with-federated-storage-engine" |
|
|
368 | fi |
|
|
369 | fi |
|
|
370 | |
|
|
371 | mysql_version_is_at_least "5.0.18" \ |
|
|
372 | && use max-idx-128 \ |
|
|
373 | && myconf="${myconf} --with-max-indexes=128" |
|
|
374 | } |
|
|
375 | |
|
|
376 | configure_51() { |
|
|
377 | # TODO: !!!! readd --without-readline |
|
|
378 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
379 | # readline.h instead of history.h |
|
|
380 | myconf="${myconf} $(use_with ssl)" |
|
|
381 | myconf="${myconf} --enable-assembler" |
|
|
382 | myconf="${myconf} --with-geometry" |
|
|
383 | myconf="${myconf} --with-readline" |
|
|
384 | myconf="${myconf} --with-row-based-replication" |
|
|
385 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
386 | myconf="${myconf} --without-pstack" |
|
|
387 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
388 | |
|
|
389 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
390 | # like configuration=none |
|
|
391 | local plugins="csv,myisam,myisammrg,heap" |
|
|
392 | if use extraengine ; then |
|
|
393 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
394 | plugins="${plugins},archive,blackhole,example,federated,partition" |
|
|
395 | |
|
|
396 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
397 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
398 | fi |
|
|
399 | |
|
|
400 | if use innodb ; then |
|
|
401 | plugins="${plugins},innobase" |
|
|
402 | fi |
|
|
403 | |
|
|
404 | # like configuration=max-no-ndb |
|
|
405 | if use cluster ; then |
|
|
406 | plugins="${plugins},ndbcluster" |
|
|
407 | myconf="${myconf} --with-ndb-binlog" |
|
|
408 | fi |
|
|
409 | |
|
|
410 | if mysql_version_is_at_least "5.2" ; then |
|
|
411 | plugins="${plugins},falcon" |
|
|
412 | fi |
|
|
413 | |
|
|
414 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
415 | } |
|
|
416 | |
|
|
417 | pbxt_src_compile() { |
|
|
418 | mysql_init_vars |
|
|
419 | |
|
|
420 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
421 | |
|
|
422 | einfo "Reconfiguring dir '${PWD}'" |
|
|
423 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
424 | |
|
|
425 | local myconf="" |
|
|
426 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
|
|
427 | use debug && myconf="${myconf} --with-debug=full" |
|
|
428 | # TODO: is it safe/needed to use econf here ? |
|
|
429 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
430 | # TODO: is it safe/needed to use emake here ? |
|
|
431 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
432 | |
|
|
433 | popd |
|
|
434 | # TODO: modify test suite for PBXT |
|
|
435 | } |
|
|
436 | |
|
|
437 | pbxt_src_install() { |
|
|
438 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
439 | make install || die "Failed to install PBXT" |
|
|
440 | popd |
|
|
441 | } |
|
|
442 | |
|
|
443 | # |
|
|
444 | # EBUILD FUNCTIONS |
|
|
445 | # |
127 | |
446 | |
128 | mysql_pkg_setup() { |
447 | mysql_pkg_setup() { |
129 | |
|
|
130 | enewgroup mysql 60 || die "problem adding group mysql" |
448 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
131 | enewuser mysql 60 -1 /dev/null mysql \ |
449 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
132 | || die "problem adding user mysql" |
450 | |
|
|
451 | # Check for USE flag problems in pkg_setup |
|
|
452 | if use static && use ssl ; then |
|
|
453 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
454 | die "MySQL does not support being built statically with SSL support enabled!" |
|
|
455 | fi |
|
|
456 | |
|
|
457 | if ! mysql_version_is_at_least "5.0" \ |
|
|
458 | && use raid \ |
|
|
459 | && use static ; then |
|
|
460 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
461 | eerror "with RAID support enabled." |
|
|
462 | die "USE flags 'raid' and 'static' conflict!" |
|
|
463 | fi |
|
|
464 | |
|
|
465 | if mysql_version_is_at_least "4.1.3" \ |
|
|
466 | && ( use cluster || use extraengine ) \ |
|
|
467 | && use minimal ; then |
|
|
468 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
469 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
470 | fi |
|
|
471 | |
|
|
472 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
473 | && use berkdb \ |
|
|
474 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
133 | } |
475 | } |
134 | |
476 | |
135 | mysql_src_unpack() { |
477 | mysql_src_unpack() { |
136 | |
478 | # Initialize the proper variables first |
137 | mysql_init_vars |
479 | mysql_init_vars |
138 | |
480 | |
139 | if useq "static" && useq "ssl" ; then |
481 | unpack ${A} |
140 | local msg="MySQL does not support building statically with SSL support" |
482 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
141 | eerror "${msg}" |
483 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
142 | die "${msg}" |
484 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
485 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
486 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
487 | else |
|
|
488 | bitkeeper_fetch |
143 | fi |
489 | fi |
144 | |
|
|
145 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
146 | && useq "cluster" \ |
|
|
147 | || useq "extraengine" \ |
|
|
148 | && useq "minimal" ; then |
|
|
149 | die "USEs cluster, extraengine conflicts with \"minimal\"" |
|
|
150 | fi |
|
|
151 | |
|
|
152 | unpack ${A} || die |
|
|
153 | |
|
|
154 | mv -f "${WORKDIR}/${NEWP}" "${S}" |
|
|
155 | cd "${S}" |
490 | cd "${S}" |
|
|
491 | einfo "Running upstream autorun over BK sources ..." |
|
|
492 | BUILD/autorun.sh |
|
|
493 | else |
|
|
494 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
495 | cd "${S}" |
|
|
496 | fi |
156 | |
497 | |
|
|
498 | # Apply the patches for this MySQL version |
157 | EPATCH_SUFFIX="patch" |
499 | EPATCH_SUFFIX="patch" |
158 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
500 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
159 | mysql_mv_patches |
501 | mysql_mv_patches |
160 | epatch || die "failed to apply all patches" |
502 | epatch |
161 | |
503 | |
162 | # additional check, remove bundled zlib |
504 | # Additional checks, remove bundled zlib |
163 | rm -f "${S}/zlib/"*.[ch] |
505 | rm -f "${S}/zlib/"*.[ch] |
164 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
506 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
165 | rm -f scripts/mysqlbug |
507 | rm -f "scripts/mysqlbug" |
166 | |
508 | |
167 | # Make charsets install in the right place |
509 | # Make charsets install in the right place |
168 | find . -name 'Makefile.am' \ |
510 | find . -name 'Makefile.am' \ |
169 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
511 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
170 | |
512 | |
171 | # Manage mysqlmanager |
|
|
172 | mysql_version_is_at_least "5.00.15.00" \ |
513 | if mysql_version_is_at_least "4.1" ; then |
173 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
174 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
175 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
176 | |
|
|
177 | # remove what need to be recreated, so we are sure it's actually done |
514 | # Remove what needs to be recreated, so we're sure it's actually done |
178 | find . -name Makefile \ |
515 | find . -name Makefile \ |
179 | -o -name Makefile.in \ |
516 | -o -name Makefile.in \ |
180 | -o -name configure \ |
517 | -o -name configure \ |
181 | -exec rm -f {} \; |
518 | -exec rm -f {} \; |
182 | rm ltmain.sh |
519 | rm -f "ltmain.sh" |
|
|
520 | rm -f "scripts/mysqlbug" |
|
|
521 | fi |
183 | |
522 | |
184 | local rebuilddirlist d buildstep bdbdir |
523 | local rebuilddirlist d |
185 | |
524 | |
186 | if mysql_version_is_at_least "5.01.00.00" ; then |
525 | if mysql_version_is_at_least "5.1.12" ; then |
187 | rebuilddirlist=". storage/innobase" |
526 | rebuilddirlist="." |
188 | bdbdir='storage/bdb/dist' |
527 | # TODO: check this with a cmake expert |
|
|
528 | use innodb \ |
|
|
529 | && cmake \ |
|
|
530 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
531 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
532 | "storage/innobase" |
189 | else |
533 | else |
190 | rebuilddirlist=". innobase" |
534 | rebuilddirlist=". innobase" |
191 | bdbdir='bdb/dist' |
|
|
192 | fi |
535 | fi |
193 | |
536 | |
194 | for d in ${rebuilddirlist}; do |
537 | for d in ${rebuilddirlist} ; do |
195 | einfo "reconfiguring dir \"${d}\"" |
538 | einfo "Reconfiguring dir '${d}'" |
196 | pushd "${d}" &>/dev/null |
539 | pushd "${d}" &>/dev/null |
197 | AT_GNUCONF_UPDATE="yes" eautoreconf |
540 | AT_GNUCONF_UPDATE="yes" eautoreconf |
198 | popd &>/dev/null |
541 | popd &>/dev/null |
199 | done |
542 | done |
200 | |
543 | |
201 | #TODO berkdb in 5.1 need to be worked on |
544 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
202 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" |
545 | && use berkdb ; then |
203 | then |
|
|
204 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
546 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
205 | pushd "${bdbdir}" \ |
547 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
548 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
549 | pushd "bdb/dist" &>/dev/null |
206 | && sh s_all \ |
550 | sh s_all \ |
207 | || die "failed bdb reconfigure" \ |
551 | || die "Failed bdb reconfigure" |
208 | &>/dev/null |
|
|
209 | popd &>/dev/null |
552 | popd &>/dev/null |
210 | fi |
553 | fi |
211 | |
|
|
212 | } |
554 | } |
213 | |
555 | |
214 | mysql_src_compile() { |
556 | mysql_src_compile() { |
215 | |
557 | # Make sure the vars are correctly initialized |
216 | mysql_init_vars |
558 | mysql_init_vars |
|
|
559 | |
|
|
560 | # $myconf is modified by the configure_* functions |
217 | local myconf |
561 | local myconf="" |
218 | |
562 | |
219 | if useq "static" ; then |
563 | if use minimal ; then |
220 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
564 | configure_minimal |
221 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
222 | myconf="${myconf} --disable-shared" |
|
|
223 | else |
565 | else |
224 | myconf="${myconf} --enable-shared --enable-static" |
566 | configure_common |
225 | fi |
|
|
226 | |
|
|
227 | #myconf="${myconf} `use_with tcpd libwrap`" |
|
|
228 | myconf="${myconf} --without-libwrap" |
|
|
229 | |
|
|
230 | if useq "ssl" ; then |
|
|
231 | # --with-vio is not needed anymore, it's on by default and |
|
|
232 | # has been removed from configure |
|
|
233 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
234 | if mysql_version_is_at_least "5.00.06.00" ; then |
567 | if mysql_version_is_at_least "5.1.10" ; then |
235 | # yassl-0.96 is young break with gcc-4.0 || amd64 |
568 | configure_51 |
236 | #myconf="${myconf} --with-yassl" |
|
|
237 | myconf="${myconf} --with-openssl" |
|
|
238 | else |
569 | else |
239 | myconf="${myconf} --with-openssl" |
570 | configure_40_41_50 |
240 | fi |
|
|
241 | else |
|
|
242 | myconf="${myconf} --without-openssl" |
|
|
243 | fi |
|
|
244 | |
|
|
245 | if useq "debug"; then |
|
|
246 | myconf="${myconf} --with-debug=full" |
|
|
247 | else |
|
|
248 | myconf="${myconf} --without-debug" |
|
|
249 | mysql_version_is_at_least "4.01.03.00" \ |
|
|
250 | && useq "cluster" \ |
|
|
251 | && myconf="${myconf} --without-ndb-debug" |
|
|
252 | fi |
|
|
253 | |
|
|
254 | # these are things we exclude from a minimal build |
|
|
255 | # note that the server actually does get built and installed |
|
|
256 | # but we then delete it before packaging. |
|
|
257 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
258 | |
|
|
259 | if ! useq "minimal" ; then |
|
|
260 | myconf="${myconf} --with-server" |
|
|
261 | myconf="${myconf} --with-extra-tools" |
|
|
262 | |
|
|
263 | if useq "static" ; then |
|
|
264 | myconf="${myconf} --without-raid" |
|
|
265 | ewarn "disabling raid support, has problem with static" |
|
|
266 | else |
|
|
267 | if mysql_version_is_at_least "5.00.00.00" ; then |
|
|
268 | myconf="${myconf} --without-raid" |
|
|
269 | else |
|
|
270 | myconf="${myconf} `use_with raid`" |
|
|
271 | fi |
571 | fi |
272 | fi |
572 | fi |
273 | |
573 | |
274 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
275 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
276 | myconf="${myconf} --with-charset=utf8" |
|
|
277 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
278 | else |
|
|
279 | myconf="${myconf} --with-charset=latin1" |
|
|
280 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
281 | fi |
|
|
282 | fi |
|
|
283 | |
|
|
284 | # optional again from 2005-12-05 |
|
|
285 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
286 | myconf="${myconf} $(use_with innodb)" |
|
|
287 | else |
|
|
288 | myconf="${myconf} --with-innodb" |
|
|
289 | fi |
|
|
290 | |
|
|
291 | # lots of chars |
|
|
292 | myconf="${myconf} --with-extra-charsets=all" |
|
|
293 | |
|
|
294 | #The following fix is due to a bug with bdb on sparc's. See: |
|
|
295 | #http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
296 | # it comes down to non-64-bit safety problems |
|
|
297 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" \ |
|
|
298 | || useq "amd64" || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
|
|
299 | then |
|
|
300 | ewarn "bdb berkeley-db disabled due to arch or version" |
|
|
301 | myconf="${myconf} --without-berkeley-db" |
|
|
302 | else |
|
|
303 | #TODO berkdb in 5.1 need to be worked on |
|
|
304 | useq "berkdb" && \ |
|
|
305 | ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" \ |
|
|
306 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
|
|
307 | || myconf="${myconf} --without-berkeley-db" |
|
|
308 | fi |
|
|
309 | |
|
|
310 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
311 | #myconf="${myconf} $(use_with geometry)" |
|
|
312 | myconf="${myconf} --with-geometry" |
|
|
313 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
314 | fi |
|
|
315 | |
|
|
316 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
317 | && myconf="${myconf} `use_with big-tables`" |
|
|
318 | |
|
|
319 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
320 | && myconf="${myconf} --with-ndb-binlog" |
|
|
321 | |
|
|
322 | if useq "embedded" ; then |
|
|
323 | #REMIND, need the privilege control enabled ? |
|
|
324 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
325 | myconf="${myconf} --with-embedded-server" |
|
|
326 | else |
|
|
327 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
328 | myconf="${myconf} --without-embedded-server" |
|
|
329 | fi |
|
|
330 | |
|
|
331 | # benchmarking stuff needs perl |
|
|
332 | if useq "perl" ; then |
|
|
333 | myconf="${myconf} --with-bench" |
|
|
334 | else |
|
|
335 | myconf="${myconf} --without-bench" |
|
|
336 | fi |
|
|
337 | else |
|
|
338 | for i in ${minimal_exclude_list}; do |
|
|
339 | myconf="${myconf} --without-${i}" |
|
|
340 | done |
|
|
341 | myconf="${myconf} --without-berkeley-db" |
|
|
342 | myconf="${myconf} --with-extra-charsets=none" |
|
|
343 | fi |
|
|
344 | |
|
|
345 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine"; then |
|
|
346 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
347 | myconf="${myconf} --with-archive-storage-engine" |
|
|
348 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
349 | |
|
|
350 | mysql_version_is_at_least "4.01.04.00" \ |
|
|
351 | && myconf="${myconf} --with-csv-storage-engine" |
|
|
352 | |
|
|
353 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
354 | && myconf="${myconf} --with-blackhole-storage-engine" |
|
|
355 | |
|
|
356 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
357 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
358 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
359 | einfo "before to use federated engine be sure to read" |
|
|
360 | einfo "http://dev.mysql.com/doc/refman/5.0/en/federated-limitations.html" |
|
|
361 | myconf="${myconf} --with-federated-storage-engine" |
|
|
362 | |
|
|
363 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
364 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
365 | myconf="${myconf} --with-partition" |
|
|
366 | fi |
|
|
367 | fi |
|
|
368 | |
|
|
369 | fi |
|
|
370 | |
|
|
371 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
372 | && useq "max-idx-128" \ |
|
|
373 | && myconf="${myconf} --with-max-indexes=128" |
|
|
374 | |
|
|
375 | if mysql_version_is_at_least "5.01.05.00" ; then |
|
|
376 | myconf="${myconf} --with-row-based-replication" |
|
|
377 | fi |
|
|
378 | |
|
|
379 | #TODO rechek again later, had problem with assembler enabled |
|
|
380 | # and some combination of use-flags with 5.1 |
|
|
381 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
382 | myconf="${myconf} --disable-assembler" |
|
|
383 | else |
|
|
384 | myconf="${myconf} --enable-assembler" |
|
|
385 | fi |
|
|
386 | |
|
|
387 | #Bug #114895,Bug #110149 |
574 | # Bug #114895, bug #110149 |
388 | filter-flags "-O" "-O[01]" |
575 | filter-flags "-O" "-O[01]" |
|
|
576 | |
389 | #glibc-2.3.2_pre fix; bug #16496 |
577 | # glib-2.3.2_pre fix, bug #16496 |
390 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
578 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
391 | |
579 | |
392 | #the compiler flags are as per their "official" spec ;) |
580 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
393 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
|
|
394 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
581 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
395 | mysql_version_is_at_least "5.00.00.00" \ |
582 | mysql_version_is_at_least "5.0" \ |
396 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
583 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
584 | export CXXFLAGS |
397 | |
585 | |
398 | econf \ |
586 | econf \ |
399 | --libexecdir="/usr/sbin" \ |
587 | --libexecdir="/usr/sbin" \ |
400 | --sysconfdir="${MY_SYSCONFDIR}" \ |
588 | --sysconfdir="${MY_SYSCONFDIR}" \ |
401 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
589 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
402 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
590 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
403 | --libdir="${MY_LIBDIR}" \ |
591 | --libdir="${MY_LIBDIR}" \ |
404 | --includedir="${MY_INCLUDEDIR}" \ |
592 | --includedir="${MY_INCLUDEDIR}" \ |
405 | --with-low-memory \ |
593 | --with-low-memory \ |
406 | --enable-local-infile \ |
|
|
407 | --with-mysqld-user=mysql \ |
|
|
408 | --with-client-ldflags=-lstdc++ \ |
594 | --with-client-ldflags=-lstdc++ \ |
409 | --enable-thread-safe-client \ |
595 | --enable-thread-safe-client \ |
410 | --with-comment="Gentoo Linux ${PF}" \ |
596 | --with-comment="Gentoo Linux ${PF}" \ |
411 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
412 | --without-readline \ |
|
|
413 | --without-docs \ |
597 | --without-docs \ |
414 | ${myconf} || die "bad ./configure" |
598 | ${myconf} || die "econf failed" |
415 | |
599 | |
416 | # TODO Move this before autoreconf !!! |
600 | # TODO: Move this before autoreconf !!! |
417 | find . -type f -name Makefile -print0 \ |
601 | find . -type f -name Makefile -print0 \ |
418 | | xargs -0 -n100 sed -i \ |
602 | | xargs -0 -n100 sed -i \ |
419 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
603 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
420 | |
604 | |
421 | emake || die "compile problem" |
605 | emake || die "emake failed" |
|
|
606 | |
|
|
607 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
422 | } |
608 | } |
423 | |
609 | |
424 | mysql_src_install() { |
610 | mysql_src_install() { |
425 | |
611 | # Make sure the vars are correctly initialized |
426 | mysql_init_vars |
612 | mysql_init_vars |
|
|
613 | |
427 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
614 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
|
|
615 | |
|
|
616 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
428 | |
617 | |
429 | insinto "${MY_INCLUDEDIR}" |
618 | insinto "${MY_INCLUDEDIR}" |
430 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
619 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
431 | |
620 | |
432 | # convenience links |
621 | # Convenience links |
433 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
622 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
434 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
623 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
435 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
624 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
436 | |
625 | |
437 | # various junk (my-*.cnf moved elsewhere) |
626 | # Various junk (my-*.cnf moved elsewhere) |
438 | rm -rf "${D}/usr/share/info" |
627 | rm -Rf "${D}/usr/share/info" |
439 | for removeme in "mysql-log-rotate" mysql.server* \ |
628 | for removeme in "mysql-log-rotate" mysql.server* \ |
440 | binary-configure* my-*.cnf mi_test_all* |
629 | binary-configure* my-*.cnf mi_test_all* |
441 | do |
630 | do |
442 | rm -f ${D}/usr/share/mysql/${removeme} |
631 | rm -f "${D}"/usr/share/mysql/${removeme} |
443 | done |
632 | done |
444 | |
633 | |
445 | # clean up stuff for a minimal build |
634 | # Clean up stuff for a minimal build |
446 | # this is anything server-specific |
|
|
447 | if useq "minimal" ; then |
635 | if use minimal ; then |
448 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
636 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
449 | 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/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} |
450 | rm -f "${D}/usr/sbin/mysqld" |
638 | rm -f "${D}/usr/sbin/mysqld" |
451 | rm -f ${D}${MY_LIBDIR}/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
639 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
452 | fi |
640 | fi |
453 | |
641 | |
454 | # config stuff |
642 | # Configuration stuff |
|
|
643 | if mysql_version_is_at_least "4.1" ; then |
|
|
644 | mysql_mycnf_version="4.1" |
|
|
645 | else |
|
|
646 | mysql_mycnf_version="4.0" |
|
|
647 | fi |
455 | insinto "${MY_SYSCONFDIR}" |
648 | insinto "${MY_SYSCONFDIR}" |
456 | doins scripts/mysqlaccess.conf |
649 | doins scripts/mysqlaccess.conf |
457 | sed -e "s!@MY_SUFFIX@!!g" \ |
|
|
458 | -e "s!@DATADIR@!${DATADIR}!g" \ |
650 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
459 | "${FILESDIR}/my.cnf-4.1-r1" \ |
651 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
460 | > "${TMPDIR}/my.cnf.ok" |
652 | > "${TMPDIR}/my.cnf.ok" |
|
|
653 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
|
|
654 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
|
|
655 | fi |
461 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
656 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
462 | |
657 | |
463 | insinto "/etc/conf.d" |
|
|
464 | newins "${FILESDIR}/mysql.conf.d-r1" "mysql" |
|
|
465 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
466 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
467 | |
|
|
468 | # minimal builds don't have the server |
658 | # Minimal builds don't have the MySQL server |
469 | if ! useq "minimal" ; then |
659 | if ! use minimal ; then |
470 | exeinto /etc/init.d |
660 | # Empty directories ... |
471 | newexe "${FILESDIR}/mysql.rc6-r3" "mysql" |
|
|
472 | |
|
|
473 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
474 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
475 | insinto /etc/logrotate.d |
|
|
476 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
477 | |
|
|
478 | #empty dirs... |
|
|
479 | diropts "-m0750" |
661 | diropts "-m0750" |
480 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
662 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
481 | dodir "${DATADIR}" |
663 | dodir "${DATADIR}" |
482 | keepdir "${DATADIR}" |
664 | keepdir "${DATADIR}" |
483 | chown -R mysql:mysql "${D}/${DATADIR}" |
665 | chown -R mysql:mysql "${D}/${DATADIR}" |
… | |
… | |
489 | keepdir "${folder}" |
671 | keepdir "${folder}" |
490 | chown -R mysql:mysql "${D}/${folder}" |
672 | chown -R mysql:mysql "${D}/${folder}" |
491 | done |
673 | done |
492 | fi |
674 | fi |
493 | |
675 | |
494 | # docs |
676 | # Docs |
495 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
678 | |
496 | # minimal builds don't have the server |
679 | # Minimal builds don't have the MySQL server |
497 | if ! useq "minimal" ; then |
680 | if ! use minimal ; then |
498 | docinto "support-files" |
681 | docinto "support-files" |
499 | for script in \ |
682 | for script in \ |
500 | support-files/my-*.cnf \ |
683 | support-files/my-*.cnf \ |
501 | support-files/magic \ |
684 | support-files/magic \ |
502 | support-files/ndb-config-2-node.ini |
685 | support-files/ndb-config-2-node.ini |
… | |
… | |
508 | for script in scripts/mysql* ; do |
691 | for script in scripts/mysql* ; do |
509 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
692 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
510 | done |
693 | done |
511 | fi |
694 | fi |
512 | |
695 | |
513 | ROOT="${D}" mysql_lib_symlinks |
696 | mysql_lib_symlinks "${D}" |
514 | } |
697 | } |
515 | |
698 | |
516 | mysql_pkg_preinst() { |
699 | mysql_pkg_preinst() { |
517 | |
|
|
518 | enewgroup mysql 60 || die "problem adding group mysql" |
700 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
519 | enewuser mysql 60 -1 /dev/null mysql \ |
701 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
520 | || die "problem adding user mysql" |
|
|
521 | } |
702 | } |
522 | |
703 | |
523 | mysql_pkg_postinst() { |
704 | mysql_pkg_postinst() { |
524 | |
705 | # Make sure the vars are correctly initialized |
525 | mysql_init_vars |
706 | mysql_init_vars |
526 | |
707 | |
527 | # mind at FEATURES=collision-protect before to remove this |
708 | # Check FEATURES="collision-protect" before removing this |
528 | [ -d "${ROOT}/var/log/mysql" ] \ |
|
|
529 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
709 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
530 | |
710 | |
531 | #secure the logfiles... does this bother anybody? |
711 | # Secure the logfiles |
532 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
712 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
533 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
713 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
534 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
714 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
535 | |
715 | |
|
|
716 | # Minimal builds don't have the MySQL server |
536 | if ! useq "minimal" ; then |
717 | if ! use minimal ; then |
537 | # your friendly public service announcement... |
718 | docinto "support-files" |
|
|
719 | for script in \ |
|
|
720 | support-files/my-*.cnf \ |
|
|
721 | support-files/magic \ |
|
|
722 | support-files/ndb-config-2-node.ini |
|
|
723 | do |
|
|
724 | dodoc "${script}" |
|
|
725 | done |
|
|
726 | |
|
|
727 | docinto "scripts" |
|
|
728 | for script in scripts/mysql* ; do |
|
|
729 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
730 | done |
|
|
731 | |
538 | einfo |
732 | einfo |
539 | einfo "You might want to run:" |
733 | elog "You might want to run:" |
540 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
734 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
541 | einfo "if this is a new install." |
735 | elog "if this is a new install." |
542 | einfo |
736 | einfo |
543 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
544 | || einfo "InnoDB is not optional as of MySQL-4.0.24, at the request of upstream." |
|
|
545 | fi |
737 | fi |
|
|
738 | |
|
|
739 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
|
|
740 | # TODO: explain it better |
|
|
741 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
742 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
743 | elog "if, after that, you cannot start the MySQL server," |
|
|
744 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
745 | elog "use the MySQL upgrade script to restore the table" |
|
|
746 | elog "or execute the following SQL command:" |
|
|
747 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
748 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
749 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
750 | elog " PRIMARY KEY (name)" |
|
|
751 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
752 | fi |
|
|
753 | |
|
|
754 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
755 | && use berkdb \ |
|
|
756 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
546 | } |
757 | } |
547 | |
758 | |
548 | mysql_pkg_config() { |
759 | mysql_pkg_config() { |
|
|
760 | # Make sure the vars are correctly initialized |
549 | mysql_init_vars |
761 | mysql_init_vars |
|
|
762 | |
550 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
763 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
551 | |
764 | |
552 | if built_with_use dev-db/mysql minimal; then |
765 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
553 | die "Minimal builds do NOT include the MySQL server" |
766 | die "Minimal builds do NOT include the MySQL server" |
554 | fi |
767 | fi |
555 | |
768 | |
556 | local pwd1="a" |
769 | local pwd1="a" |
557 | local pwd2="b" |
770 | local pwd2="b" |
… | |
… | |
563 | ewarn "Please rename or delete it if you wish to replace it." |
776 | ewarn "Please rename or delete it if you wish to replace it." |
564 | die "MySQL database already exists!" |
777 | die "MySQL database already exists!" |
565 | fi |
778 | fi |
566 | |
779 | |
567 | einfo "Creating the mysql database and setting proper" |
780 | einfo "Creating the mysql database and setting proper" |
568 | einfo "permissions on it..." |
781 | einfo "permissions on it ..." |
569 | |
782 | |
570 | einfo "Insert a password for the mysql 'root' user" |
783 | einfo "Insert a password for the mysql 'root' user" |
571 | ewarn "Avoid [\"'\\_%] characters in the password" |
784 | ewarn "Avoid [\"'\\_%] characters in the password" |
572 | |
|
|
573 | read -rsp " >" pwd1 ; echo |
785 | read -rsp " >" pwd1 ; echo |
|
|
786 | |
574 | einfo "Check the password" |
787 | einfo "Retype the password" |
575 | read -rsp " >" pwd2 ; echo |
788 | read -rsp " >" pwd2 ; echo |
576 | |
789 | |
577 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
790 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
578 | die "Passwords are not the same" |
791 | die "Passwords are not the same" |
579 | fi |
792 | fi |
580 | |
793 | |
581 | local options="" |
794 | local options="" |
582 | local sqltmp="$(emktemp)" |
795 | local sqltmp="$(emktemp)" |
583 | |
796 | |
584 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
797 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
585 | [[ -r "${help_tables}" ]] \ |
798 | [[ -r "${help_tables}" ]] \ |
586 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
799 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
587 | || touch "${TMPDIR}/fill_help_tables.sql" |
800 | || touch "${TMPDIR}/fill_help_tables.sql" |
588 | help_tables="${TMPDIR}/fill_help_tables.sql" |
801 | help_tables="${TMPDIR}/fill_help_tables.sql" |
589 | |
802 | |
590 | pushd "${TMPDIR}" &>/dev/null |
803 | pushd "${TMPDIR}" &>/dev/null |
591 | ${ROOT}/usr/bin/mysql_install_db | grep -B5 -A999 -i "ERROR" |
804 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
592 | popd &>/dev/null |
805 | popd &>/dev/null |
593 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] \ |
806 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
594 | || die "MySQL databases not installed" |
807 | || die "MySQL databases not installed" |
595 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
808 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
596 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
809 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
597 | |
810 | |
598 | if mysql_version_is_at_least "4.01.03.00" ; then |
811 | if mysql_version_is_at_least "4.1.3" ; then |
599 | options="--skip-ndbcluster" |
812 | options="--skip-ndbcluster" |
600 | |
813 | |
601 | # Filling timezones, see |
814 | # Filling timezones, see |
602 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
815 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
603 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql ${ROOT}/usr/share/zoneinfo \ |
816 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
604 | > "${sqltmp}" 2>/dev/null |
|
|
605 | |
817 | |
606 | if [[ -r "${help_tables}" ]] ; then |
818 | if [[ -r "${help_tables}" ]] ; then |
607 | cat "${help_tables}" >> "${sqltmp}" |
819 | cat "${help_tables}" >> "${sqltmp}" |
608 | fi |
820 | fi |
609 | fi |
821 | fi |
610 | |
822 | |
611 | local socket=${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock |
823 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
612 | local pidfile=${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid |
824 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
613 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
825 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
614 | ${options} \ |
826 | ${options} \ |
615 | --user=mysql \ |
827 | --user=mysql \ |
616 | --skip-grant-tables \ |
828 | --skip-grant-tables \ |
617 | --basedir=${ROOT}/usr \ |
829 | --basedir=${ROOT}/usr \ |
… | |
… | |
621 | --skip-networking \ |
833 | --skip-networking \ |
622 | --max_allowed_packet=8M \ |
834 | --max_allowed_packet=8M \ |
623 | --net_buffer_length=16K \ |
835 | --net_buffer_length=16K \ |
624 | --socket=${socket} \ |
836 | --socket=${socket} \ |
625 | --pid-file=${pidfile}" |
837 | --pid-file=${pidfile}" |
626 | $mysqld & |
838 | ${mysqld} & |
627 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
839 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
628 | maxtry=$(($maxtry-1)) |
840 | maxtry=$((${maxtry}-1)) |
629 | echo -n "." |
841 | echo -n "." |
630 | sleep 1 |
842 | sleep 1 |
631 | done |
843 | done |
632 | |
844 | |
633 | # do this from memory we don't want clear text password in temp files |
845 | # Do this from memory, as we don't want clear text passwords in temp files |
634 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
846 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
635 | ${ROOT}/usr/bin/mysql \ |
847 | "${ROOT}/usr/bin/mysql" \ |
636 | --socket=${socket} \ |
848 | --socket=${socket} \ |
637 | -hlocalhost \ |
849 | -hlocalhost \ |
638 | -e "${sql}" |
850 | -e "${sql}" |
639 | |
851 | |
640 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
852 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
641 | |
853 | |
642 | ${ROOT}/usr/bin/mysql \ |
854 | "${ROOT}/usr/bin/mysql" \ |
643 | --socket=${socket} \ |
855 | --socket=${socket} \ |
644 | -hlocalhost \ |
856 | -hlocalhost \ |
645 | -uroot \ |
857 | -uroot \ |
646 | -p"${pwd1}" \ |
858 | -p"${pwd1}" \ |
647 | mysql < "${sqltmp}" |
859 | mysql < "${sqltmp}" |
648 | |
860 | |
649 | # server stop and cleanup |
861 | # Stop the server and cleanup |
650 | kill $(< "${pidfile}" ) |
862 | kill $(< "${pidfile}" ) |
651 | rm "${sqltmp}" |
863 | rm -f "${sqltmp}" |
652 | einfo "stopping the server," |
864 | einfo "Stopping the server ..." |
653 | wait %1 |
865 | wait %1 |
654 | einfo "done" |
866 | einfo "Done" |
655 | } |
867 | } |
656 | |
868 | |
657 | mysql_pkg_postrm() { |
869 | mysql_pkg_postrm() { |
658 | mysql_lib_symlinks |
870 | : # mysql_lib_symlinks "${D}" |
659 | } |
871 | } |