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