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