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