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