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