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