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