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