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