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