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