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