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