| 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.38 2006/10/20 13:14:21 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.95 2008/05/29 05:38:48 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/_/-}${MYSQL_RERELEASE}.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} 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="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" |
|
|
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" |
| 82 | |
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 |
| 85 | |
136 | |
| 86 | # |
137 | # |
| 87 | # HELPER FUNCTIONS: |
138 | # HELPER FUNCTIONS: |
| 88 | # |
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 | } |
| 89 | |
211 | |
| 90 | # void mysql_init_vars() |
212 | # void mysql_init_vars() |
| 91 | # |
213 | # |
| 92 | # Initialize global variables |
214 | # Initialize global variables |
| 93 | # 2005-11-19 <vivo@gentoo.org> |
215 | # 2005-11-19 <vivo@gentoo.org> |
| … | |
… | |
| 98 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 99 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 100 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
222 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 101 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
223 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 102 | |
224 | |
| 103 | if [[ -z "${DATADIR}" ]] ; then |
225 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 104 | DATADIR="" |
226 | MY_DATADIR="" |
| 105 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
227 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 106 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
228 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 107 | | sed -ne '/datadir/s|^--datadir=||p' \ |
229 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 108 | | tail -n1` |
230 | | tail -n1` |
| 109 | if [[ -z "${DATADIR}" ]] ; then |
231 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 110 | if useq "srvdir" ; then |
|
|
| 111 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 112 | else |
|
|
| 113 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
232 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 114 | | sed -e 's/.*=\s*//'` |
233 | | sed -e 's/.*=\s*//' \ |
| 115 | fi |
234 | | tail -n1` |
| 116 | fi |
235 | fi |
| 117 | fi |
236 | fi |
| 118 | if [[ -z "${DATADIR}" ]] ; then |
237 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 119 | if useq "srvdir" ; then |
|
|
| 120 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 121 | else |
|
|
| 122 | DATADIR="${MY_LOCALSTATEDIR}" |
238 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 123 | fi |
|
|
| 124 | einfo "Using default DATADIR" |
239 | einfo "Using default MY_DATADIR" |
| 125 | fi |
240 | fi |
| 126 | einfo "MySQL DATADIR is ${DATADIR}" |
241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 127 | |
242 | |
| 128 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 129 | if [[ -e "${DATADIR}" ]] ; then |
244 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 130 | ewarn "Previous datadir found, it's YOUR job to change" |
245 | # If you get this and you're wondering about it, see bug #207636 |
| 131 | ewarn "ownership and take care of it" |
246 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
247 | elog "A new one will not be created." |
| 132 | PREVIOUS_DATADIR="yes" |
248 | PREVIOUS_DATADIR="yes" |
| 133 | else |
249 | else |
| 134 | PREVIOUS_DATADIR="no" |
250 | PREVIOUS_DATADIR="no" |
| 135 | fi |
251 | fi |
| 136 | export PREVIOUS_DATADIR |
252 | export PREVIOUS_DATADIR |
| 137 | fi |
253 | fi |
| 138 | fi |
254 | fi |
| 139 | |
255 | |
|
|
256 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
257 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
258 | |
| 140 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
259 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 141 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
260 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 142 | export MY_INCLUDEDIR |
261 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 143 | export DATADIR |
|
|
| 144 | } |
262 | } |
| 145 | |
263 | |
| 146 | configure_minimal() { |
264 | configure_minimal() { |
| 147 | # these are things we exclude from a minimal build |
265 | # These are things we exclude from a minimal build, please |
| 148 | # note that the server actually does get built and installed |
266 | # note that the server actually does get built and installed, |
| 149 | # but we then delete it before packaging. |
267 | # but we then delete it before packaging. |
| 150 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
268 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 151 | |
269 | |
| 152 | for i in ${minimal_exclude_list}; do |
270 | for i in ${minimal_exclude_list} ; do |
| 153 | myconf="${myconf} --without-${i}" |
271 | myconf="${myconf} --without-${i}" |
| 154 | done |
272 | done |
| 155 | myconf="${myconf} --with-extra-charsets=none" |
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 |
| 156 | } |
290 | } |
| 157 | |
291 | |
| 158 | configure_common() { |
292 | configure_common() { |
|
|
293 | myconf="${myconf} $(use_with big-tables)" |
| 159 | myconf="${myconf} --enable-local-infile" |
294 | myconf="${myconf} --enable-local-infile" |
| 160 | myconf="${myconf} --with-extra-charsets=all" |
295 | myconf="${myconf} --with-extra-charsets=all" |
| 161 | myconf="${myconf} --with-mysqld-user=mysql" |
296 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
297 | myconf="${myconf} --with-server" |
| 162 | myconf="${myconf} --with-unix-socket-path='/var/run/mysqld/mysqld.sock'" |
298 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
| 163 | myconf="${myconf} --without-libwrap" |
299 | myconf="${myconf} --without-libwrap" |
| 164 | |
300 | |
| 165 | if useq "static" ; then |
301 | if use static ; then |
| 166 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
302 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 167 | myconf="${myconf} --with-client-ldflags=-all-static" |
303 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 168 | myconf="${myconf} --disable-shared" |
304 | myconf="${myconf} --disable-shared --with-pic" |
| 169 | else |
305 | else |
| 170 | myconf="${myconf} --enable-shared --enable-static" |
306 | myconf="${myconf} --enable-shared --enable-static" |
| 171 | fi |
307 | fi |
| 172 | |
308 | |
| 173 | if useq "debug" ; then |
309 | if use debug ; then |
| 174 | myconf="${myconf} --with-debug=full" |
310 | myconf="${myconf} --with-debug=full" |
| 175 | else |
311 | else |
| 176 | myconf="${myconf} --without-debug" |
312 | myconf="${myconf} --without-debug" |
| 177 | mysql_version_is_at_least "4.01.03.00" \ |
313 | mysql_version_is_at_least "4.1.3" \ |
| 178 | && useq "cluster" \ |
314 | && use cluster \ |
| 179 | && myconf="${myconf} --without-ndb-debug" |
315 | && myconf="${myconf} --without-ndb-debug" |
| 180 | fi |
316 | fi |
| 181 | |
317 | |
| 182 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
318 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 183 | myconf="${myconf} --with-charset=utf8" |
319 | myconf="${myconf} --with-charset=utf8" |
| 184 | myconf="${myconf} --with-collation=utf8_general_ci" |
320 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 185 | else |
321 | else |
| 186 | myconf="${myconf} --with-charset=latin1" |
322 | myconf="${myconf} --with-charset=latin1" |
| 187 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
323 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 188 | fi |
324 | fi |
| 189 | |
325 | |
| 190 | if useq "embedded" ; then |
326 | if use embedded ; then |
| 191 | myconf="${myconf} --with-embedded-privilege-control" |
327 | myconf="${myconf} --with-embedded-privilege-control" |
| 192 | myconf="${myconf} --with-embedded-server" |
328 | myconf="${myconf} --with-embedded-server" |
| 193 | else |
329 | else |
| 194 | myconf="${myconf} --without-embedded-privilege-control" |
330 | myconf="${myconf} --without-embedded-privilege-control" |
| 195 | myconf="${myconf} --without-embedded-server" |
331 | myconf="${myconf} --without-embedded-server" |
| … | |
… | |
| 201 | myconf="${myconf} $(use_with perl bench)" |
337 | myconf="${myconf} $(use_with perl bench)" |
| 202 | myconf="${myconf} --enable-assembler" |
338 | myconf="${myconf} --enable-assembler" |
| 203 | myconf="${myconf} --with-extra-tools" |
339 | myconf="${myconf} --with-extra-tools" |
| 204 | myconf="${myconf} --with-innodb" |
340 | myconf="${myconf} --with-innodb" |
| 205 | myconf="${myconf} --without-readline" |
341 | myconf="${myconf} --without-readline" |
| 206 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
342 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 207 | |
343 | |
| 208 | if useq "ssl" ; then |
|
|
| 209 | # --with-vio is not needed anymore, it's on by default and |
344 | # --with-vio is not needed anymore, it's on by default and |
| 210 | # has been removed from configure |
345 | # has been removed from configure |
|
|
346 | if use ssl ; then |
| 211 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
347 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
348 | fi |
|
|
349 | |
| 212 | if mysql_version_is_at_least "5.00.06.00" ; then |
350 | if mysql_version_is_at_least "5.1.11" ; then |
| 213 | # myconf="${myconf} --with-yassl" |
351 | myconf="${myconf} $(use_with ssl)" |
|
|
352 | else |
| 214 | myconf="${myconf} --with-openssl" |
353 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
354 | fi |
|
|
355 | |
|
|
356 | if use berkdb ; then |
|
|
357 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
358 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
359 | # It comes down to non-64-bit safety problems. |
|
|
360 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
361 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
362 | myconf="${myconf} --without-berkeley-db" |
| 215 | else |
363 | else |
| 216 | myconf="${myconf} --with-openssl" |
364 | myconf="${myconf} --with-berkeley-db=./bdb" |
| 217 | fi |
|
|
| 218 | else |
|
|
| 219 | myconf="${myconf} --without-openssl" |
|
|
| 220 | fi |
365 | fi |
| 221 | |
366 | else |
| 222 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 223 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 224 | # It comes down to non-64-bit safety problems. |
|
|
| 225 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 226 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
| 227 | myconf="${myconf} --without-berkeley-db" |
367 | myconf="${myconf} --without-berkeley-db" |
| 228 | else |
|
|
| 229 | useq "berkdb" && myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 230 | fi |
368 | fi |
| 231 | |
369 | |
| 232 | if mysql_version_is_at_least "4.01.03.00" ; then |
370 | if mysql_version_is_at_least "4.1.3" ; then |
| 233 | myconf="${myconf} --with-geometry" |
371 | myconf="${myconf} --with-geometry" |
| 234 | myconf="${myconf} $(use_with cluster ndbcluster)" |
372 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| 235 | fi |
373 | fi |
| 236 | |
374 | |
| 237 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
| 238 | && myconf="${myconf} $(use_with big-tables)" |
|
|
| 239 | |
|
|
| 240 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
375 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 241 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
376 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 242 | myconf="${myconf} --with-archive-storage-engine" |
377 | myconf="${myconf} --with-archive-storage-engine" |
| 243 | |
378 | |
| 244 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
379 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 245 | myconf="${myconf} --with-csv-storage-engine" |
380 | myconf="${myconf} --with-csv-storage-engine" |
| … | |
… | |
| 248 | myconf="${myconf} --with-blackhole-storage-engine" |
383 | myconf="${myconf} --with-blackhole-storage-engine" |
| 249 | |
384 | |
| 250 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
385 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 251 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
386 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 252 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
387 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 253 | if mysql_version_is_at_least "5.00.03.00" ; then |
388 | if mysql_version_is_at_least "5.0.3" ; then |
| 254 | einfo "Before using the Federated storage engine, please be sure to read" |
389 | elog "Before using the Federated storage engine, please be sure to read" |
| 255 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
390 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 256 | myconf="${myconf} --with-federated-storage-engine" |
391 | myconf="${myconf} --with-federated-storage-engine" |
| 257 | fi |
392 | fi |
| 258 | fi |
393 | fi |
| 259 | |
394 | |
| 260 | mysql_version_is_at_least "5.00.18.00" \ |
395 | mysql_version_is_at_least "5.0.18" \ |
| 261 | && useq "max-idx-128" \ |
396 | && use max-idx-128 \ |
| 262 | && myconf="${myconf} --with-max-indexes=128" |
397 | && myconf="${myconf} --with-max-indexes=128" |
| 263 | } |
398 | } |
| 264 | |
399 | |
| 265 | configure_51() { |
400 | configure_51() { |
| 266 | # TODO : !!!!! readd --withouth-readline |
401 | # TODO: !!!! readd --without-readline |
| 267 | # the failure depend upon config/ac-macros/readline.m4 checking into |
402 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 268 | # readline.h instead of history.h |
403 | # readline.h instead of history.h |
| 269 | myconf="${myconf} $(use_with big-tables)" |
|
|
| 270 | myconf="${myconf} $(use_with ssl)" |
404 | myconf="${myconf} $(use_with ssl)" |
| 271 | myconf="${myconf} --enable-assembler" |
405 | myconf="${myconf} --enable-assembler" |
| 272 | myconf="${myconf} --with-geometry" |
406 | myconf="${myconf} --with-geometry" |
| 273 | myconf="${myconf} --with-readline" |
407 | myconf="${myconf} --with-readline" |
| 274 | myconf="${myconf} --with-row-based-replication" |
408 | myconf="${myconf} --with-row-based-replication" |
| 275 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
409 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
| 276 | myconf="${myconf} --without-pstack" |
410 | myconf="${myconf} --without-pstack" |
| 277 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
411 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 278 | |
412 | |
| 279 | # 5.1 introduces a new way to manage storage engines (plugins) |
413 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 280 | # like configuration=none |
414 | # like configuration=none |
| 281 | local plugins="csv,myisam,myisammrg,heap" |
415 | local plugins="csv,myisam,myisammrg,heap" |
| 282 | if useq "extraengine" ; then |
416 | if use extraengine ; then |
| 283 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
417 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 284 | plugins="${plugins},blackhole,federated,ftexample,partition" |
418 | plugins="${plugins},archive,blackhole,example,federated,partition" |
| 285 | |
419 | |
| 286 | einfo "before to use federated engine be sure to read" |
420 | elog "Before using the Federated storage engine, please be sure to read" |
| 287 | einfo "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
421 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 288 | fi |
422 | fi |
| 289 | |
423 | |
| 290 | if useq "innodb" ; then |
424 | if use innodb ; then |
| 291 | plugins="${plugins},innobase" |
425 | plugins="${plugins},innobase" |
| 292 | fi |
426 | fi |
| 293 | |
427 | |
| 294 | # like configuration=max-no-ndb |
428 | # like configuration=max-no-ndb |
| 295 | if useq "cluster" ; then |
429 | if use cluster ; then |
| 296 | plugins="${plugins},ndbcluster" |
430 | plugins="${plugins},ndbcluster" |
| 297 | myconf="${myconf} --with-ndb-binlog" |
431 | myconf="${myconf} --with-ndb-binlog" |
| 298 | fi |
432 | fi |
| 299 | |
433 | |
|
|
434 | if mysql_version_is_at_least "5.2" ; then |
|
|
435 | plugins="${plugins},falcon" |
|
|
436 | fi |
|
|
437 | |
| 300 | myconf="${myconf} --with-plugins=${plugins}" |
438 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
439 | } |
|
|
440 | |
|
|
441 | pbxt_src_compile() { |
|
|
442 | mysql_init_vars |
|
|
443 | |
|
|
444 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
445 | |
|
|
446 | einfo "Reconfiguring dir '${PWD}'" |
|
|
447 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
448 | |
|
|
449 | local myconf="" |
|
|
450 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
|
|
451 | use debug && myconf="${myconf} --with-debug=full" |
|
|
452 | # TODO: is it safe/needed to use econf here ? |
|
|
453 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
454 | # TODO: is it safe/needed to use emake here ? |
|
|
455 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
456 | |
|
|
457 | popd |
|
|
458 | # TODO: modify test suite for PBXT |
|
|
459 | } |
|
|
460 | |
|
|
461 | pbxt_src_install() { |
|
|
462 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
463 | make install || die "Failed to install PBXT" |
|
|
464 | popd |
| 301 | } |
465 | } |
| 302 | |
466 | |
| 303 | # |
467 | # |
| 304 | # EBUILD FUNCTIONS |
468 | # EBUILD FUNCTIONS |
| 305 | # |
469 | # |
| 306 | |
|
|
| 307 | mysql_pkg_setup() { |
470 | mysql_pkg_setup() { |
| 308 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
471 | if hasq test ${FEATURES} ; then |
| 309 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
472 | if ! use minimal ; then |
| 310 | |
473 | if [[ $UID -eq 0 ]]; then |
| 311 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
474 | die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 312 | die "innodb now use cmake to build this is a TODO item" |
475 | fi |
| 313 | fi |
476 | fi |
|
|
477 | fi |
|
|
478 | |
|
|
479 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
480 | # localhost. Also causes weird failures. |
|
|
481 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 314 | |
482 | |
| 315 | # Check for USE flag problems in pkg_setup |
483 | # Check for USE flag problems in pkg_setup |
| 316 | if useq "static" && useq "ssl" ; then |
484 | if use static && use ssl ; then |
| 317 | eerror "MySQL does not support being built statically with SSL support enabled!" |
485 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 318 | die "MySQL does not support being built statically with SSL support enabled!" |
486 | die "MySQL does not support being built statically with SSL support enabled!" |
| 319 | fi |
487 | fi |
| 320 | |
488 | |
| 321 | if ! mysql_version_is_at_least "5.00.00.00" \ |
489 | if ! mysql_version_is_at_least "5.0" \ |
| 322 | && useq "raid" \ |
490 | && use raid \ |
| 323 | && useq "static" ; then |
491 | && use static ; then |
| 324 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
492 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 325 | eerror "with RAID support enabled." |
493 | eerror "with RAID support enabled." |
| 326 | die "USE flags 'raid' and 'static' conflict!" |
494 | die "USE flags 'raid' and 'static' conflict!" |
| 327 | fi |
495 | fi |
| 328 | |
496 | |
| 329 | if mysql_version_is_at_least "4.01.03.00" \ |
497 | if mysql_version_is_at_least "4.1.3" \ |
| 330 | && ( useq "cluster" || useq "extraengine" ) \ |
498 | && ( use cluster || use extraengine ) \ |
| 331 | && useq "minimal" ; then |
499 | && use minimal ; then |
| 332 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
500 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 333 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
501 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 334 | fi |
502 | fi |
| 335 | |
503 | |
|
|
504 | # This should come after all of the die statements |
|
|
505 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
506 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
507 | |
|
|
508 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
509 | && use berkdb \ |
| 336 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
510 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 337 | } |
511 | } |
| 338 | |
512 | |
| 339 | mysql_src_unpack() { |
513 | mysql_src_unpack() { |
| 340 | # Initialize the proper variables first |
514 | # Initialize the proper variables first |
| 341 | mysql_init_vars |
515 | mysql_init_vars |
| 342 | |
516 | |
| 343 | unpack ${A} |
517 | unpack ${A} |
| 344 | |
518 | # Grab the patches |
| 345 | mv -f "${WORKDIR}/${P/_/-}${MYSQL_RERELEASE}" "${S}" |
519 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
|
|
520 | # Bitkeeper checkout support |
|
|
521 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
|
|
522 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
523 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
524 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
525 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
526 | else |
|
|
527 | bitkeeper_fetch |
|
|
528 | fi |
| 346 | cd "${S}" |
529 | cd "${S}" |
|
|
530 | einfo "Running upstream autorun over BK sources ..." |
|
|
531 | BUILD/autorun.sh |
|
|
532 | else |
|
|
533 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
534 | cd "${S}" |
|
|
535 | fi |
| 347 | |
536 | |
| 348 | # Apply the patches for this MySQL version |
537 | # Apply the patches for this MySQL version |
| 349 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
538 | EPATCH_SUFFIX="patch" |
| 350 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
539 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 351 | fi |
540 | # Clean out old items |
|
|
541 | rm -f "${EPATCH_SOURCE}"/* |
|
|
542 | # Now link in right patches |
|
|
543 | mysql_mv_patches |
|
|
544 | # And apply |
|
|
545 | epatch |
| 352 | |
546 | |
| 353 | # Additional checks, remove bundled zlib |
547 | # Additional checks, remove bundled zlib |
| 354 | rm -f "${S}/zlib/"*.[ch] |
548 | rm -f "${S}/zlib/"*.[ch] |
| 355 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
549 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 356 | rm -f "scripts/mysqlbug" |
550 | rm -f "scripts/mysqlbug" |
| 357 | |
551 | |
| 358 | # Make charsets install in the right place |
552 | # Make charsets install in the right place |
| 359 | find . -name 'Makefile.am' \ |
553 | find . -name 'Makefile.am' \ |
| 360 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
554 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 361 | |
555 | |
| 362 | # Manage mysqlmanager |
|
|
| 363 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
| 364 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
|
|
| 365 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
| 366 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
| 367 | |
|
|
| 368 | if mysql_version_is_at_least "4.01.00.00" ; then |
556 | if mysql_version_is_at_least "4.1" ; then |
| 369 | # Remove what needs to be recreated, so we're sure it's actually done |
557 | # Remove what needs to be recreated, so we're sure it's actually done |
| 370 | find . -name Makefile \ |
558 | find . -name Makefile \ |
| 371 | -o -name Makefile.in \ |
559 | -o -name Makefile.in \ |
| 372 | -o -name configure \ |
560 | -o -name configure \ |
| 373 | -exec rm -f {} \; |
561 | -exec rm -f {} \; |
| 374 | rm -f "ltmain.sh" |
562 | rm -f "ltmain.sh" |
| 375 | rm -f "scripts/mysqlbug" |
563 | rm -f "scripts/mysqlbug" |
| 376 | fi |
564 | fi |
| 377 | |
565 | |
| 378 | local rebuilddirlist bdbdir d |
566 | local rebuilddirlist d |
| 379 | |
567 | |
| 380 | if mysql_version_is_at_least "5.01.00.00" ; then |
568 | if mysql_version_is_at_least "5.1.12" ; then |
| 381 | rebuilddirlist=". storage/innobase" |
569 | rebuilddirlist="." |
| 382 | bdbdir='storage/bdb/dist' |
570 | # TODO: check this with a cmake expert |
|
|
571 | use innodb \ |
|
|
572 | && cmake \ |
|
|
573 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
574 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
|
|
575 | "storage/innobase" |
| 383 | else |
576 | else |
| 384 | rebuilddirlist=". innobase" |
577 | rebuilddirlist=". innobase" |
| 385 | bdbdir='bdb/dist' |
|
|
| 386 | fi |
578 | fi |
| 387 | |
579 | |
| 388 | for d in ${rebuilddirlist} ; do |
580 | for d in ${rebuilddirlist} ; do |
| 389 | einfo "Reconfiguring dir '${d}'" |
581 | einfo "Reconfiguring dir '${d}'" |
| 390 | pushd "${d}" &>/dev/null |
582 | pushd "${d}" &>/dev/null |
| 391 | AT_GNUCONF_UPDATE="yes" eautoreconf |
583 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 392 | popd &>/dev/null |
584 | popd &>/dev/null |
| 393 | done |
585 | done |
| 394 | |
586 | |
| 395 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 396 | if useq "berkdb" \ |
|
|
| 397 | && ! mysql_check_version_range "4.00.00.00 to 4.00.99.99" \ |
587 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 398 | && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
588 | && use berkdb ; then |
| 399 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
589 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 400 | pushd "${bdbdir}" \ |
590 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
591 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
592 | pushd "bdb/dist" &>/dev/null |
| 401 | && sh s_all \ |
593 | sh s_all \ |
| 402 | || die "Failed bdb reconfigure" \ |
594 | || die "Failed bdb reconfigure" |
| 403 | &>/dev/null |
|
|
| 404 | popd &>/dev/null |
595 | popd &>/dev/null |
| 405 | fi |
596 | fi |
| 406 | } |
597 | } |
| 407 | |
598 | |
| 408 | mysql_src_compile() { |
599 | mysql_src_compile() { |
| 409 | # Make sure the vars are correctly initialized |
600 | # Make sure the vars are correctly initialized |
| 410 | mysql_init_vars |
601 | mysql_init_vars |
| 411 | |
602 | |
|
|
603 | # $myconf is modified by the configure_* functions |
| 412 | local myconf |
604 | local myconf="" |
| 413 | |
605 | |
| 414 | if useq "static" ; then |
606 | if use minimal ; then |
| 415 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
607 | configure_minimal |
| 416 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
| 417 | myconf="${myconf} --disable-shared" |
|
|
| 418 | else |
608 | else |
| 419 | myconf="${myconf} --enable-shared --enable-static" |
609 | configure_common |
| 420 | fi |
|
|
| 421 | |
|
|
| 422 | myconf="${myconf} --without-libwrap" |
|
|
| 423 | |
|
|
| 424 | if useq "ssl" ; then |
|
|
| 425 | # --with-vio is not needed anymore, it's on by default and |
|
|
| 426 | # has been removed from configure |
|
|
| 427 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
| 428 | if mysql_version_is_at_least "5.00.06.00" ; then |
610 | if mysql_version_is_at_least "5.1.10" ; then |
| 429 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
611 | configure_51 |
| 430 | # myconf="${myconf} --with-yassl" |
|
|
| 431 | myconf="${myconf} --with-openssl" |
|
|
| 432 | else |
612 | else |
| 433 | myconf="${myconf} --with-openssl" |
613 | configure_40_41_50 |
| 434 | fi |
|
|
| 435 | else |
|
|
| 436 | myconf="${myconf} --without-openssl" |
|
|
| 437 | fi |
|
|
| 438 | |
|
|
| 439 | if useq "debug" ; then |
|
|
| 440 | myconf="${myconf} --with-debug=full" |
|
|
| 441 | else |
|
|
| 442 | myconf="${myconf} --without-debug" |
|
|
| 443 | |
|
|
| 444 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
|
|
| 445 | && myconf="${myconf} --without-ndb-debug" |
|
|
| 446 | fi |
|
|
| 447 | |
|
|
| 448 | # These are things we exclude from a minimal build. |
|
|
| 449 | # Note that the server actually does get built and installed, |
|
|
| 450 | # but we then delete it. |
|
|
| 451 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
| 452 | |
|
|
| 453 | if ! useq "minimal" ; then |
|
|
| 454 | myconf="${myconf} --with-server" |
|
|
| 455 | myconf="${myconf} --with-extra-tools" |
|
|
| 456 | |
|
|
| 457 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 458 | if useq "raid" ; then |
|
|
| 459 | myconf="${myconf} --with-raid" |
|
|
| 460 | else |
|
|
| 461 | myconf="${myconf} --without-raid" |
|
|
| 462 | fi |
614 | fi |
| 463 | fi |
|
|
| 464 | |
|
|
| 465 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
| 466 | myconf="${myconf} --with-charset=utf8" |
|
|
| 467 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
| 468 | else |
|
|
| 469 | myconf="${myconf} --with-charset=latin1" |
|
|
| 470 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
| 471 | fi |
|
|
| 472 | |
|
|
| 473 | # Optional again with MySQL 5.1 |
|
|
| 474 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 475 | if useq "innodb" ; then |
|
|
| 476 | myconf="${myconf} --with-innodb" |
|
|
| 477 | else |
|
|
| 478 | myconf="${myconf} --without-innodb" |
|
|
| 479 | fi |
|
|
| 480 | fi |
|
|
| 481 | |
|
|
| 482 | # Lots of charsets |
|
|
| 483 | myconf="${myconf} --with-extra-charsets=all" |
|
|
| 484 | |
|
|
| 485 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 486 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 487 | # It comes down to non-64-bit safety problems. |
|
|
| 488 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 489 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
| 490 | myconf="${myconf} --without-berkeley-db" |
|
|
| 491 | else |
|
|
| 492 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 493 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 494 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 495 | else |
|
|
| 496 | myconf="${myconf} --without-berkeley-db" |
|
|
| 497 | fi |
|
|
| 498 | fi |
|
|
| 499 | |
|
|
| 500 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
| 501 | myconf="${myconf} --with-geometry" |
|
|
| 502 | |
|
|
| 503 | if useq "cluster" ; then |
|
|
| 504 | myconf="${myconf} --with-ndbcluster" |
|
|
| 505 | else |
|
|
| 506 | myconf="${myconf} --without-ndbcluster" |
|
|
| 507 | fi |
|
|
| 508 | fi |
|
|
| 509 | |
|
|
| 510 | if useq "big-tables" ; then |
|
|
| 511 | myconf="${myconf} --with-big-tables" |
|
|
| 512 | else |
|
|
| 513 | myconf="${myconf} --without-big-tables" |
|
|
| 514 | fi |
|
|
| 515 | |
|
|
| 516 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
| 517 | && myconf="${myconf} --with-ndb-binlog" |
|
|
| 518 | |
|
|
| 519 | if useq "embedded" ; then |
|
|
| 520 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
| 521 | myconf="${myconf} --with-embedded-server" |
|
|
| 522 | else |
|
|
| 523 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 524 | myconf="${myconf} --without-embedded-server" |
|
|
| 525 | fi |
|
|
| 526 | |
|
|
| 527 | # Benchmarking stuff needs Perl |
|
|
| 528 | if useq "perl" ; then |
|
|
| 529 | myconf="${myconf} --with-bench" |
|
|
| 530 | else |
|
|
| 531 | myconf="${myconf} --without-bench" |
|
|
| 532 | fi |
|
|
| 533 | else |
|
|
| 534 | for i in ${minimal_exclude_list} ; do |
|
|
| 535 | myconf="${myconf} --without-${i}" |
|
|
| 536 | done |
|
|
| 537 | myconf="${myconf} --without-berkeley-db" |
|
|
| 538 | myconf="${myconf} --with-extra-charsets=none" |
|
|
| 539 | fi |
|
|
| 540 | |
|
|
| 541 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
| 542 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
| 543 | myconf="${myconf} --with-archive-storage-engine" |
|
|
| 544 | |
|
|
| 545 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
| 546 | myconf="${myconf} --with-csv-storage-engine" |
|
|
| 547 | |
|
|
| 548 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
| 549 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
| 550 | |
|
|
| 551 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
| 552 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
| 553 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
| 554 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
| 555 | einfo "Before using the Federated storage engine, please be sure to read" |
|
|
| 556 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
| 557 | myconf="${myconf} --with-federated-storage-engine" |
|
|
| 558 | fi |
|
|
| 559 | |
|
|
| 560 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
| 561 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 562 | myconf="${myconf} --with-partition" |
|
|
| 563 | fi |
|
|
| 564 | fi |
|
|
| 565 | |
|
|
| 566 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
| 567 | && useq "max-idx-128" \ |
|
|
| 568 | && myconf="${myconf} --with-max-indexes=128" |
|
|
| 569 | |
|
|
| 570 | mysql_version_is_at_least "5.01.05.00" \ |
|
|
| 571 | && myconf="${myconf} --with-row-based-replication" |
|
|
| 572 | |
|
|
| 573 | # TODO: Rechek again later, there were problems with assembler enabled |
|
|
| 574 | # and some combination of USE flags with MySQL 5.1 |
|
|
| 575 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 576 | myconf="${myconf} --disable-assembler" |
|
|
| 577 | else |
|
|
| 578 | myconf="${myconf} --enable-assembler" |
|
|
| 579 | fi |
615 | fi |
| 580 | |
616 | |
| 581 | # Bug #114895, bug #110149 |
617 | # Bug #114895, bug #110149 |
| 582 | filter-flags "-O" "-O[01]" |
618 | filter-flags "-O" "-O[01]" |
| 583 | |
619 | |
| 584 | # glib-2.3.2_pre fix, bug #16496 |
620 | # glib-2.3.2_pre fix, bug #16496 |
| 585 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
621 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 586 | |
622 | |
| 587 | append-flags "-fno-exceptions -fno-strict-aliasing" |
623 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 588 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
624 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 589 | mysql_version_is_at_least "5.00.00.00" \ |
625 | mysql_version_is_at_least "5.0" \ |
| 590 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
626 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 591 | export CXXFLAGS="${CXXFLAGS}" |
627 | export CXXFLAGS |
| 592 | |
628 | |
| 593 | econf \ |
629 | econf \ |
| 594 | --libexecdir="/usr/sbin" \ |
630 | --libexecdir="/usr/sbin" \ |
| 595 | --sysconfdir="${MY_SYSCONFDIR}" \ |
631 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 596 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
632 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 597 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
633 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 598 | --libdir="${MY_LIBDIR}" \ |
634 | --libdir="${MY_LIBDIR}" \ |
| 599 | --includedir="${MY_INCLUDEDIR}" \ |
635 | --includedir="${MY_INCLUDEDIR}" \ |
| 600 | --with-low-memory \ |
636 | --with-low-memory \ |
| 601 | --enable-local-infile \ |
|
|
| 602 | --with-mysqld-user=mysql \ |
|
|
| 603 | --with-client-ldflags=-lstdc++ \ |
637 | --with-client-ldflags=-lstdc++ \ |
| 604 | --enable-thread-safe-client \ |
638 | --enable-thread-safe-client \ |
| 605 | --with-comment="Gentoo Linux ${PF}" \ |
639 | --with-comment="Gentoo Linux ${PF}" \ |
| 606 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
| 607 | --without-readline \ |
|
|
| 608 | --without-docs \ |
640 | --without-docs \ |
| 609 | ${myconf} || die "bad ./configure" |
641 | ${myconf} || die "econf failed" |
| 610 | |
642 | |
| 611 | # TODO: Move this before autoreconf !!! |
643 | # TODO: Move this before autoreconf !!! |
| 612 | find . -type f -name Makefile -print0 \ |
644 | find . -type f -name Makefile -print0 \ |
| 613 | | xargs -0 -n100 sed -i \ |
645 | | xargs -0 -n100 sed -i \ |
| 614 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
646 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 615 | |
647 | |
| 616 | emake || die "compile problem" |
648 | emake || die "emake failed" |
|
|
649 | |
|
|
650 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 617 | } |
651 | } |
| 618 | |
652 | |
| 619 | mysql_src_install() { |
653 | mysql_src_install() { |
| 620 | # Make sure the vars are correctly initialized |
654 | # Make sure the vars are correctly initialized |
| 621 | mysql_init_vars |
655 | mysql_init_vars |
| 622 | |
656 | |
| 623 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "make install error" |
657 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
|
|
658 | |
|
|
659 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 624 | |
660 | |
| 625 | insinto "${MY_INCLUDEDIR}" |
661 | insinto "${MY_INCLUDEDIR}" |
| 626 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
662 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 627 | |
663 | |
| 628 | # Convenience links |
664 | # Convenience links |
| … | |
… | |
| 637 | do |
673 | do |
| 638 | rm -f "${D}"/usr/share/mysql/${removeme} |
674 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 639 | done |
675 | done |
| 640 | |
676 | |
| 641 | # Clean up stuff for a minimal build |
677 | # Clean up stuff for a minimal build |
| 642 | if useq "minimal" ; then |
678 | if use minimal ; then |
| 643 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
679 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 644 | 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} |
680 | 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} |
| 645 | rm -f "${D}/usr/sbin/mysqld" |
681 | rm -f "${D}/usr/sbin/mysqld" |
| 646 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
682 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 647 | fi |
683 | fi |
| 648 | |
684 | |
| 649 | # Configuration stuff |
685 | # Configuration stuff |
| 650 | if mysql_version_is_at_least "4.01.00.00" ; then |
686 | if mysql_version_is_at_least "4.1" ; then |
| 651 | mysql_mycnf_version="4.1" |
687 | mysql_mycnf_version="4.1" |
| 652 | else |
688 | else |
| 653 | mysql_mycnf_version="4.0" |
689 | mysql_mycnf_version="4.0" |
| 654 | fi |
690 | fi |
| 655 | insinto "${MY_SYSCONFDIR}" |
691 | insinto "${MY_SYSCONFDIR}" |
| 656 | doins "scripts/mysqlaccess.conf" |
692 | doins scripts/mysqlaccess.conf |
| 657 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
693 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 658 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
694 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 659 | > "${TMPDIR}/my.cnf.ok" |
695 | > "${TMPDIR}/my.cnf.ok" |
| 660 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
696 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 661 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
697 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 662 | fi |
698 | fi |
| 663 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
699 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 664 | |
700 | |
| 665 | insinto "/etc/conf.d" |
|
|
| 666 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
|
|
| 667 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 668 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
| 669 | |
|
|
| 670 | # Minimal builds don't have the MySQL server |
701 | # Minimal builds don't have the MySQL server |
| 671 | if ! useq "minimal" ; then |
702 | if ! use minimal ; then |
| 672 | exeinto "/etc/init.d" |
|
|
| 673 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
|
|
| 674 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 675 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
| 676 | |
|
|
| 677 | insinto "/etc/logrotate.d" |
|
|
| 678 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
| 679 | |
|
|
| 680 | # Empty directories ... |
703 | # Empty directories ... |
| 681 | diropts "-m0750" |
704 | diropts "-m0750" |
| 682 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
705 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 683 | dodir "${DATADIR}" |
706 | dodir "${MY_DATADIR}" |
| 684 | keepdir "${DATADIR}" |
707 | keepdir "${MY_DATADIR}" |
| 685 | chown -R mysql:mysql "${D}/${DATADIR}" |
708 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 686 | fi |
709 | fi |
| 687 | |
710 | |
| 688 | diropts "-m0755" |
711 | diropts "-m0755" |
| 689 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
712 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 690 | dodir "${folder}" |
713 | dodir "${folder}" |
| … | |
… | |
| 693 | done |
716 | done |
| 694 | fi |
717 | fi |
| 695 | |
718 | |
| 696 | # Docs |
719 | # Docs |
| 697 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
720 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
721 | doinfo "${S}"/Docs/mysql.info |
| 698 | |
722 | |
| 699 | # Minimal builds don't have the MySQL server |
723 | # Minimal builds don't have the MySQL server |
| 700 | if ! useq "minimal" ; then |
724 | if ! use minimal ; then |
|
|
725 | docinto "support-files" |
|
|
726 | for script in \ |
|
|
727 | "${S}"/support-files/my-*.cnf \ |
|
|
728 | "${S}"/support-files/magic \ |
|
|
729 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
730 | do |
|
|
731 | dodoc "${script}" |
|
|
732 | done |
|
|
733 | |
|
|
734 | docinto "scripts" |
|
|
735 | for script in "${S}"/scripts/mysql* ; do |
|
|
736 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
737 | done |
|
|
738 | |
|
|
739 | fi |
|
|
740 | |
|
|
741 | mysql_lib_symlinks "${D}" |
|
|
742 | } |
|
|
743 | |
|
|
744 | mysql_pkg_preinst() { |
|
|
745 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
746 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
747 | } |
|
|
748 | |
|
|
749 | mysql_pkg_postinst() { |
|
|
750 | # Make sure the vars are correctly initialized |
|
|
751 | mysql_init_vars |
|
|
752 | |
|
|
753 | # Check FEATURES="collision-protect" before removing this |
|
|
754 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
755 | |
|
|
756 | # Secure the logfiles |
|
|
757 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
758 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
759 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
760 | |
|
|
761 | # Minimal builds don't have the MySQL server |
|
|
762 | if ! use minimal ; then |
| 701 | docinto "support-files" |
763 | docinto "support-files" |
| 702 | for script in \ |
764 | for script in \ |
| 703 | support-files/my-*.cnf \ |
765 | support-files/my-*.cnf \ |
| 704 | support-files/magic \ |
766 | support-files/magic \ |
| 705 | support-files/ndb-config-2-node.ini |
767 | support-files/ndb-config-2-node.ini |
| … | |
… | |
| 709 | |
771 | |
| 710 | docinto "scripts" |
772 | docinto "scripts" |
| 711 | for script in scripts/mysql* ; do |
773 | for script in scripts/mysql* ; do |
| 712 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
774 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 713 | done |
775 | done |
| 714 | fi |
|
|
| 715 | |
776 | |
| 716 | ROOT="${D}" mysql_lib_symlinks |
|
|
| 717 | } |
|
|
| 718 | |
|
|
| 719 | mysql_pkg_preinst() { |
|
|
| 720 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
| 721 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
| 722 | } |
|
|
| 723 | |
|
|
| 724 | mysql_pkg_postinst() { |
|
|
| 725 | # Make sure the vars are correctly initialized |
|
|
| 726 | mysql_init_vars |
|
|
| 727 | |
|
|
| 728 | # Check FEATURES="collision-protect" before removing this |
|
|
| 729 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
| 730 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
| 731 | |
|
|
| 732 | # Secure the logfiles |
|
|
| 733 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
| 734 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 735 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 736 | |
|
|
| 737 | if ! useq "minimal" ; then |
|
|
| 738 | # Your friendly public service announcement ... |
|
|
| 739 | einfo |
777 | einfo |
| 740 | einfo "You might want to run:" |
778 | elog "You might want to run:" |
| 741 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
779 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 742 | einfo "if this is a new install." |
780 | elog "if this is a new install." |
| 743 | einfo |
781 | einfo |
| 744 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
| 745 | || einfo "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
|
|
| 746 | fi |
782 | fi |
|
|
783 | |
|
|
784 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
|
|
785 | # TODO: explain it better |
|
|
786 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
787 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
788 | elog "if, after that, you cannot start the MySQL server," |
|
|
789 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
790 | elog "use the MySQL upgrade script to restore the table" |
|
|
791 | elog "or execute the following SQL command:" |
|
|
792 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
793 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
794 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
795 | elog " PRIMARY KEY (name)" |
|
|
796 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
797 | fi |
|
|
798 | |
|
|
799 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
800 | && use berkdb \ |
| 747 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
801 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 748 | } |
802 | } |
| 749 | |
803 | |
| 750 | mysql_pkg_config() { |
804 | mysql_pkg_config() { |
| 751 | # Make sure the vars are correctly initialized |
805 | # Make sure the vars are correctly initialized |
| 752 | mysql_init_vars |
806 | mysql_init_vars |
| 753 | |
807 | |
| 754 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
808 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 755 | |
809 | |
| 756 | if built_with_use dev-db/mysql minimal ; then |
810 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 757 | die "Minimal builds do NOT include the MySQL server" |
811 | die "Minimal builds do NOT include the MySQL server" |
| 758 | fi |
812 | fi |
| 759 | |
813 | |
| 760 | local pwd1="a" |
814 | local pwd1="a" |
| 761 | local pwd2="b" |
815 | local pwd2="b" |
| 762 | local maxtry=5 |
816 | local maxtry=5 |
| 763 | |
817 | |
| 764 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
818 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 765 | ewarn "You have already a MySQL database in place." |
819 | ewarn "You have already a MySQL database in place." |
| 766 | ewarn "(${ROOT}/${DATADIR}/*)" |
820 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 767 | ewarn "Please rename or delete it if you wish to replace it." |
821 | ewarn "Please rename or delete it if you wish to replace it." |
| 768 | die "MySQL database already exists!" |
822 | die "MySQL database already exists!" |
| 769 | fi |
823 | fi |
| 770 | |
824 | |
| 771 | einfo "Creating the mysql database and setting proper" |
825 | einfo "Creating the mysql database and setting proper" |
| … | |
… | |
| 790 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
844 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 791 | || touch "${TMPDIR}/fill_help_tables.sql" |
845 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 792 | help_tables="${TMPDIR}/fill_help_tables.sql" |
846 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 793 | |
847 | |
| 794 | pushd "${TMPDIR}" &>/dev/null |
848 | pushd "${TMPDIR}" &>/dev/null |
| 795 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
849 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
850 | if [ $? -ne 0 ]; then |
|
|
851 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
852 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
853 | fi |
| 796 | popd &>/dev/null |
854 | popd &>/dev/null |
| 797 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
855 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 798 | || die "MySQL databases not installed" |
856 | || die "MySQL databases not installed" |
| 799 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
857 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 800 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
858 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 801 | |
859 | |
| 802 | if mysql_version_is_at_least "4.01.03.00" ; then |
860 | if mysql_version_is_at_least "4.1.3" ; then |
| 803 | options="--skip-ndbcluster" |
861 | options="--skip-ndbcluster" |
| 804 | |
862 | |
| 805 | # Filling timezones, see |
863 | # Filling timezones, see |
| 806 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
864 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 807 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
865 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| … | |
… | |
| 816 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
874 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 817 | ${options} \ |
875 | ${options} \ |
| 818 | --user=mysql \ |
876 | --user=mysql \ |
| 819 | --skip-grant-tables \ |
877 | --skip-grant-tables \ |
| 820 | --basedir=${ROOT}/usr \ |
878 | --basedir=${ROOT}/usr \ |
| 821 | --datadir=${ROOT}/${DATADIR} \ |
879 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 822 | --skip-innodb \ |
880 | --skip-innodb \ |
| 823 | --skip-bdb \ |
881 | --skip-bdb \ |
| 824 | --skip-networking \ |
882 | --skip-networking \ |
| 825 | --max_allowed_packet=8M \ |
883 | --max_allowed_packet=8M \ |
| 826 | --net_buffer_length=16K \ |
884 | --net_buffer_length=16K \ |
| … | |
… | |
| 856 | wait %1 |
914 | wait %1 |
| 857 | einfo "Done" |
915 | einfo "Done" |
| 858 | } |
916 | } |
| 859 | |
917 | |
| 860 | mysql_pkg_postrm() { |
918 | mysql_pkg_postrm() { |
| 861 | mysql_lib_symlinks |
919 | : # mysql_lib_symlinks "${D}" |
| 862 | } |
920 | } |