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