| 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.32 2006/05/31 20:45:49 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.54 2007/01/03 13:42:05 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 | |
|
|
16 | # avoid running userspace code 8 times per ebuild :( |
|
|
17 | if [[ "${_MYPVR}" != "${PVR}" ]] || [[ -z "${MYSQL_VERSION_ID}" ]] |
|
|
18 | then |
|
|
19 | _MYPVR=${PVR} |
|
|
20 | |
| 11 | # MYSQL_VERSION_ID will be: |
21 | # MYSQL_VERSION_ID will be: |
| 12 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
22 | # 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 |
23 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 14 | # depend on this variable. |
24 | # depend on this variable. |
| 15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
25 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
| 16 | |
|
|
| 17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
26 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
| 18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
27 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 19 | for vatom in 0 1 2 3 ; do |
28 | for vatom in 0 1 2 3 ; do |
| 20 | # pad to length 2 |
29 | # pad to length 2 |
| 21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
30 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
31 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 23 | done |
32 | done |
| 24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
33 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
34 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 26 | fi |
35 | fi |
| 27 | |
36 | |
| 28 | DEPEND="${DEPEND} |
37 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
| 29 | >=sys-libs/readline-4.1 |
38 | |
| 30 | berkdb? ( sys-apps/ed ) |
39 | # Be warned, *DEPEND are version-dependant |
| 31 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
40 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 32 | userland_GNU? ( sys-process/procps ) |
41 | userland_GNU? ( sys-process/procps ) |
| 33 | >=sys-libs/zlib-1.2.3 |
42 | >=sys-apps/sed-4 |
| 34 | >=sys-apps/texinfo-4.7-r1 |
43 | >=sys-apps/texinfo-4.7-r1 |
| 35 | >=sys-apps/sed-4" |
44 | >=sys-libs/readline-4.1 |
|
|
45 | >=sys-libs/zlib-1.2.3" |
| 36 | |
46 | |
|
|
47 | # LEAVE THE SURROUNDING SPACES THERE |
|
|
48 | MYSQL_MUTUALLY_EXCLUSIVE=" !dev-db/mysql !dev-db/mysql-community " |
|
|
49 | DEPEND="${DEPEND} ${MYSQL_MUTUALLY_EXCLUSIVE/ !${CATEGORY}\/${PN} /}" |
|
|
50 | |
|
|
51 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
52 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
53 | |
| 37 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
54 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
| 38 | |
55 | |
| 39 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
56 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 40 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
57 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 41 | |
58 | |
| 42 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
|
|
| 43 | |
|
|
| 44 | # Shorten the path because the socket path length must be shorter than 107 chars |
59 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 45 | # and we will run a mysql server during test phase |
60 | # and we will run a mysql server during test phase |
| 46 | S="${WORKDIR}/${PN}" |
61 | S="${WORKDIR}/mysql" # BitKeeper ebuilds |
| 47 | |
62 | |
| 48 | # Define $MY_FIXED_PV for MySQL patchsets |
63 | # Define $MY_FIXED_PV for MySQL patchsets |
| 49 | MY_FIXED_PV="${PV/_alpha/}" |
64 | MY_FIXED_PV="${PV/_alpha/}" |
| 50 | MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
65 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
| 51 | MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
66 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
| 52 | |
67 | |
|
|
68 | MY_P="${P/_/-}" |
|
|
69 | MY_P="${MY_P/-alpha/-bk-}" # BitKeeper ebuilds |
|
|
70 | MY_P="${MY_P/-community/}" |
|
|
71 | |
| 53 | # Define correct SRC_URIs |
72 | # Define correct SRC_URIs |
| 54 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}.tar.gz" |
73 | SRC_URI="${BASE_URI}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
| 55 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
74 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
| 56 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
75 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
| 57 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
76 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
| 58 | SRC_URI="${SRC_URI} mirror://gentoo/${MYSQL_PATCHSET_FILENAME} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
77 | SRC_URI="${SRC_URI} http://g3nt8.org/patches/${MYSQL_PATCHSET_FILENAME}" |
| 59 | fi |
78 | fi |
| 60 | |
79 | |
| 61 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 62 | HOMEPAGE="http://www.mysql.com/" |
81 | HOMEPAGE="http://www.mysql.com/" |
| 63 | SLOT="0" |
82 | SLOT="0" |
| 64 | LICENSE="GPL-2" |
83 | LICENSE="GPL-2" |
| 65 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
84 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
| 66 | RESTRICT="primaryuri confcache" |
85 | RESTRICT="confcache" |
| 67 | |
86 | |
| 68 | mysql_version_is_at_least "4.01.00.00" \ |
87 | mysql_version_is_at_least "4.01.00.00" \ |
| 69 | && IUSE="${IUSE} latin1" |
88 | && IUSE="${IUSE} latin1" |
| 70 | |
89 | |
| 71 | mysql_version_is_at_least "4.01.03.00" \ |
90 | mysql_version_is_at_least "4.01.03.00" \ |
| 72 | && IUSE="${IUSE} cluster extraengine" |
91 | && IUSE="${IUSE} cluster extraengine" |
| 73 | |
92 | |
| 74 | mysql_version_is_at_least "5.00.00.00" \ |
93 | mysql_version_is_at_least "5.00.00.00" \ |
| 75 | || IUSE="${IUSE} raid" |
94 | || IUSE="${IUSE} raid" |
| 76 | |
95 | |
| 77 | mysql_version_is_at_least "5.00.18.00" \ |
96 | mysql_version_is_at_least "5.00.18.00" \ |
| 78 | && IUSE="${IUSE} max-idx-128" |
97 | && IUSE="${IUSE} max-idx-128" |
| 79 | |
98 | |
| 80 | mysql_version_is_at_least "5.01.00.00" \ |
99 | mysql_version_is_at_least "5.01.00.00" \ |
| 81 | && IUSE="${IUSE} innodb" |
100 | && IUSE="${IUSE} innodb" |
|
|
101 | |
|
|
102 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
103 | || IUSE="${IUSE} berkdb" |
|
|
104 | fi # if [[ "${_MYPVR}" != "${PVR}" ]] |
| 82 | |
105 | |
| 83 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
106 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 84 | pkg_postinst pkg_config pkg_postrm |
107 | pkg_postinst pkg_config pkg_postrm |
|
|
108 | |
|
|
109 | # |
|
|
110 | # HELPER FUNCTIONS: |
|
|
111 | # |
|
|
112 | |
|
|
113 | bitkeeper_fetch() { |
|
|
114 | |
|
|
115 | local tpv=( ${PV//[-._]/ } ) |
|
|
116 | local reposuf="${tpv[0]}.${tpv[1]}" |
|
|
117 | useq "cluster" && reposuf="${reposuf}-ndb" |
|
|
118 | local repo_uri="bk://mysql.bkbits.net/mysql-${reposuf}" |
|
|
119 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
120 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
121 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
122 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
123 | # hint: does not work |
|
|
124 | local ebk_fetch_cmd="sfioball" |
|
|
125 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
126 | local ebk_update_cmd="update" |
|
|
127 | |
|
|
128 | #addread "/etc/bitkeeper" |
|
|
129 | addwrite "${ebk_store_dir}" |
|
|
130 | |
|
|
131 | if [[ ! -d "${ebk_store_dir}" ]]; then |
|
|
132 | debug-print "${FUNCNAME}: initial checkout. creating bitkeeper directory" |
|
|
133 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
|
|
134 | fi |
|
|
135 | |
|
|
136 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
|
|
137 | |
|
|
138 | local wc_path=mysql-${reposuf} |
|
|
139 | |
|
|
140 | if [[ ! -d "${wc_path}" ]]; then |
|
|
141 | local options="-r+" |
|
|
142 | # first check out |
|
|
143 | einfo "bitkeeper check out start -->" |
|
|
144 | einfo " repository: ${repo_uri}" |
|
|
145 | ${ebk_fetch_cmd} ${options} "${repo_uri}" ${wc_path} \ |
|
|
146 | || die "${EBK}: can't fetch from ${repo_uri}." |
|
|
147 | else |
|
|
148 | if [[ ! -d "${wc_path}/BK" ]]; then |
|
|
149 | popd |
|
|
150 | die "Look like ${wc_path} is not a bitkeeper path." |
|
|
151 | fi |
|
|
152 | |
|
|
153 | # update working copy |
|
|
154 | einfo "bitkeeper update start -->" |
|
|
155 | einfo " repository: ${repo_uri}" |
|
|
156 | |
|
|
157 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
158 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
|
|
159 | |
|
|
160 | fi |
|
|
161 | |
|
|
162 | einfo " working copy: ${wc_path}" |
|
|
163 | cd "${wc_path}" |
|
|
164 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
|
|
165 | |
|
|
166 | echo |
|
|
167 | popd |
|
|
168 | |
|
|
169 | } |
|
|
170 | |
|
|
171 | mysql_disable_test() { |
|
|
172 | local testname="${1}" ; shift |
|
|
173 | local reason="${@}" |
|
|
174 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
175 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
176 | ewarn "test \"${testname}\" disabled because: \"${reason}\"" |
|
|
177 | } |
| 85 | |
178 | |
| 86 | # void mysql_init_vars() |
179 | # void mysql_init_vars() |
| 87 | # |
180 | # |
| 88 | # Initialize global variables |
181 | # Initialize global variables |
| 89 | # 2005-11-19 <vivo@gentoo.org> |
182 | # 2005-11-19 <vivo@gentoo.org> |
| … | |
… | |
| 117 | else |
210 | else |
| 118 | DATADIR="${MY_LOCALSTATEDIR}" |
211 | DATADIR="${MY_LOCALSTATEDIR}" |
| 119 | fi |
212 | fi |
| 120 | einfo "Using default DATADIR" |
213 | einfo "Using default DATADIR" |
| 121 | fi |
214 | fi |
| 122 | einfo "MySQL DATADIR is ${DATADIR}" |
215 | elog "MySQL DATADIR is ${DATADIR}" |
| 123 | |
216 | |
| 124 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
217 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 125 | if [[ -e "${DATADIR}" ]] ; then |
218 | if [[ -e "${DATADIR}" ]] ; then |
| 126 | ewarn "Previous datadir found, it's YOUR job to change" |
219 | elog "Previous datadir found, it's YOUR job to change" |
| 127 | ewarn "ownership and take care of it" |
220 | elog "ownership and take care of it" |
| 128 | PREVIOUS_DATADIR="yes" |
221 | PREVIOUS_DATADIR="yes" |
| 129 | else |
222 | else |
| 130 | PREVIOUS_DATADIR="no" |
223 | PREVIOUS_DATADIR="no" |
| 131 | fi |
224 | fi |
| 132 | export PREVIOUS_DATADIR |
225 | export PREVIOUS_DATADIR |
| … | |
… | |
| 137 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
230 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 138 | export MY_INCLUDEDIR |
231 | export MY_INCLUDEDIR |
| 139 | export DATADIR |
232 | export DATADIR |
| 140 | } |
233 | } |
| 141 | |
234 | |
|
|
235 | configure_minimal() { |
|
|
236 | # These are things we exclude from a minimal build, please |
|
|
237 | # note that the server actually does get built and installed, |
|
|
238 | # but we then delete it before packaging. |
|
|
239 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
|
|
240 | |
|
|
241 | for i in ${minimal_exclude_list} ; do |
|
|
242 | myconf="${myconf} --without-${i}" |
|
|
243 | done |
|
|
244 | myconf="${myconf} --with-extra-charsets=none" |
|
|
245 | myconf="${myconf} --enable-local-infile" |
|
|
246 | |
|
|
247 | if useq "static" ; then |
|
|
248 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
249 | myconf="${myconf} --disable-shared" |
|
|
250 | else |
|
|
251 | myconf="${myconf} --enable-shared --enable-static" |
|
|
252 | fi |
|
|
253 | |
|
|
254 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
255 | myconf="${myconf} --with-charset=utf8" |
|
|
256 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
257 | else |
|
|
258 | myconf="${myconf} --with-charset=latin1" |
|
|
259 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
260 | fi |
|
|
261 | } |
|
|
262 | |
|
|
263 | configure_common() { |
|
|
264 | myconf="${myconf} $(use_with big-tables)" |
|
|
265 | myconf="${myconf} --enable-local-infile" |
|
|
266 | myconf="${myconf} --with-extra-charsets=all" |
|
|
267 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
268 | myconf="${myconf} --with-server" |
|
|
269 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
270 | myconf="${myconf} --without-libwrap" |
|
|
271 | |
|
|
272 | if useq "static" ; then |
|
|
273 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
274 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
275 | myconf="${myconf} --disable-shared" |
|
|
276 | else |
|
|
277 | myconf="${myconf} --enable-shared --enable-static" |
|
|
278 | fi |
|
|
279 | |
|
|
280 | if useq "debug" ; then |
|
|
281 | myconf="${myconf} --with-debug=full" |
|
|
282 | else |
|
|
283 | myconf="${myconf} --without-debug" |
|
|
284 | mysql_version_is_at_least "4.1.3" \ |
|
|
285 | && useq "cluster" \ |
|
|
286 | && myconf="${myconf} --without-ndb-debug" |
|
|
287 | fi |
|
|
288 | |
|
|
289 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
|
|
290 | myconf="${myconf} --with-charset=utf8" |
|
|
291 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
292 | else |
|
|
293 | myconf="${myconf} --with-charset=latin1" |
|
|
294 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
295 | fi |
|
|
296 | |
|
|
297 | if useq "embedded" ; then |
|
|
298 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
299 | myconf="${myconf} --with-embedded-server" |
|
|
300 | else |
|
|
301 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
302 | myconf="${myconf} --without-embedded-server" |
|
|
303 | fi |
|
|
304 | |
|
|
305 | } |
|
|
306 | |
|
|
307 | configure_40_41_50() { |
|
|
308 | myconf="${myconf} $(use_with perl bench)" |
|
|
309 | myconf="${myconf} --enable-assembler" |
|
|
310 | myconf="${myconf} --with-extra-tools" |
|
|
311 | myconf="${myconf} --with-innodb" |
|
|
312 | myconf="${myconf} --without-readline" |
|
|
313 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
|
|
314 | |
|
|
315 | if useq "ssl" ; then |
|
|
316 | # --with-vio is not needed anymore, it's on by default and |
|
|
317 | # has been removed from configure |
|
|
318 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
319 | if mysql_version_is_at_least "5.0.6" ; then |
|
|
320 | # myconf="${myconf} --with-yassl" |
|
|
321 | myconf="${myconf} --with-openssl" |
|
|
322 | else |
|
|
323 | myconf="${myconf} --with-openssl" |
|
|
324 | fi |
|
|
325 | else |
|
|
326 | myconf="${myconf} --without-openssl" |
|
|
327 | fi |
|
|
328 | |
|
|
329 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
330 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
331 | # It comes down to non-64-bit safety problems. |
|
|
332 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
333 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
334 | myconf="${myconf} --without-berkeley-db" |
|
|
335 | else |
|
|
336 | if useq "berkdb" ; then |
|
|
337 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
338 | else |
|
|
339 | myconf="${myconf} --without-berkeley-db" |
|
|
340 | fi |
|
|
341 | fi |
|
|
342 | |
|
|
343 | if mysql_version_is_at_least "4.1.3" ; then |
|
|
344 | myconf="${myconf} --with-geometry" |
|
|
345 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
346 | fi |
|
|
347 | |
|
|
348 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
|
|
349 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
350 | myconf="${myconf} --with-archive-storage-engine" |
|
|
351 | |
|
|
352 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
353 | myconf="${myconf} --with-csv-storage-engine" |
|
|
354 | |
|
|
355 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
356 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
357 | |
|
|
358 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
359 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
360 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
361 | if mysql_version_is_at_least "5.0.3" ; then |
|
|
362 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
363 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
364 | myconf="${myconf} --with-federated-storage-engine" |
|
|
365 | fi |
|
|
366 | fi |
|
|
367 | |
|
|
368 | mysql_version_is_at_least "5.0.18" \ |
|
|
369 | && useq "max-idx-128" \ |
|
|
370 | && myconf="${myconf} --with-max-indexes=128" |
|
|
371 | } |
|
|
372 | |
|
|
373 | configure_51() { |
|
|
374 | # TODO: !!!! readd --without-readline |
|
|
375 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
376 | # readline.h instead of history.h |
|
|
377 | myconf="${myconf} $(use_with ssl)" |
|
|
378 | myconf="${myconf} --enable-assembler" |
|
|
379 | myconf="${myconf} --with-geometry" |
|
|
380 | myconf="${myconf} --with-readline" |
|
|
381 | myconf="${myconf} --with-row-based-replication" |
|
|
382 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
383 | myconf="${myconf} --without-pstack" |
|
|
384 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
|
|
385 | |
|
|
386 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
387 | # like configuration=none |
|
|
388 | local plugins="csv,myisam,myisammrg,heap" |
|
|
389 | if useq "extraengine" ; then |
|
|
390 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
391 | plugins="${plugins},archive,blackhole,example,federated,partition" |
|
|
392 | |
|
|
393 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
394 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
395 | fi |
|
|
396 | |
|
|
397 | if useq "innodb" ; then |
|
|
398 | plugins="${plugins},innobase" |
|
|
399 | fi |
|
|
400 | |
|
|
401 | # like configuration=max-no-ndb |
|
|
402 | if useq "cluster" ; then |
|
|
403 | plugins="${plugins},ndbcluster" |
|
|
404 | myconf="${myconf} --with-ndb-binlog" |
|
|
405 | fi |
|
|
406 | |
|
|
407 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
408 | } |
|
|
409 | |
|
|
410 | pbxt_src_compile() { |
|
|
411 | mysql_init_vars |
|
|
412 | |
|
|
413 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
414 | |
|
|
415 | einfo "Reconfiguring dir '${PWD}'" |
|
|
416 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
417 | |
|
|
418 | local myconf |
|
|
419 | myconf="${myconf} --with-mysql=${S}" |
|
|
420 | mkdir -p ${T}/lib |
|
|
421 | myconf="${myconf} --libdir=${D}/${MY_LIBDIR}" |
|
|
422 | useq "debug" && myconf="${myconf} --with-debug=full" |
|
|
423 | # TODO is safe/needed to use econf here ? |
|
|
424 | ./configure ${myconf} || die "problem configuring pbxt storage engine" |
|
|
425 | # TODO is safe/needed to use emake here ? |
|
|
426 | make || die "problem making pbxt storage engine (${myconf})" |
|
|
427 | |
|
|
428 | popd |
|
|
429 | # TODO: modify test suite |
|
|
430 | } |
|
|
431 | |
|
|
432 | pbxt_src_install() { |
|
|
433 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
434 | make install || die "failed pbxt install" |
|
|
435 | popd |
|
|
436 | } |
|
|
437 | |
|
|
438 | # |
|
|
439 | # EBUILD FUNCTIONS |
|
|
440 | # |
|
|
441 | |
| 142 | mysql_pkg_setup() { |
442 | mysql_pkg_setup() { |
| 143 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
443 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 144 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
444 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 145 | |
445 | |
| 146 | # Check for USE flag problems in pkg_setup |
446 | # Check for USE flag problems in pkg_setup |
| 147 | if useq "static" && useq "ssl" ; then |
447 | if useq "static" && useq "ssl" ; then |
| 148 | eerror "MySQL does not support being built statically with SSL support enabled!" |
448 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 149 | die "MySQL does not support being built statically with SSL support enabled!" |
449 | die "MySQL does not support being built statically with SSL support enabled!" |
| 150 | fi |
450 | fi |
| 151 | |
451 | |
| 152 | if ! mysql_version_is_at_least "5.00.00.00" \ |
452 | if ! mysql_version_is_at_least "5.0" \ |
| 153 | && useq "raid" \ |
453 | && useq "raid" \ |
| 154 | && useq "static" ; then |
454 | && useq "static" ; then |
| 155 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
455 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 156 | eerror "with RAID support enabled." |
456 | eerror "with RAID support enabled." |
| 157 | die "USE flags 'raid' and 'static' conflict!" |
457 | die "USE flags 'raid' and 'static' conflict!" |
| 158 | fi |
458 | fi |
| 159 | |
459 | |
| 160 | if mysql_version_is_at_least "4.01.03.00" \ |
460 | if mysql_version_is_at_least "4.1.3" \ |
| 161 | && ( useq "cluster" || useq "extraengine" ) \ |
461 | && ( useq "cluster" || useq "extraengine" ) \ |
| 162 | && useq "minimal" ; then |
462 | && useq "minimal" ; then |
| 163 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
463 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 164 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
464 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 165 | fi |
465 | fi |
|
|
466 | |
|
|
467 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
468 | && useq "berkdb" \ |
|
|
469 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 166 | } |
470 | } |
| 167 | |
471 | |
| 168 | mysql_src_unpack() { |
472 | mysql_src_unpack() { |
| 169 | # Initialize the proper variables first |
473 | # Initialize the proper variables first |
| 170 | mysql_init_vars |
474 | mysql_init_vars |
| 171 | |
475 | |
| 172 | unpack ${A} |
476 | unpack ${A} |
| 173 | |
477 | |
| 174 | mv -f "${WORKDIR}/${P/_/-}" "${S}" |
478 | mv -f "${WORKDIR}/${MY_P}${MYSQL_RERELEASE}" "${S}" |
| 175 | cd "${S}" |
479 | cd "${S}" |
| 176 | |
480 | |
| 177 | # Apply the patches for this MySQL version |
481 | # Apply the patches for this MySQL version |
| 178 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
482 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
| 179 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
483 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
| … | |
… | |
| 183 | rm -f "${S}/zlib/"*.[ch] |
487 | rm -f "${S}/zlib/"*.[ch] |
| 184 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
488 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 185 | rm -f "scripts/mysqlbug" |
489 | rm -f "scripts/mysqlbug" |
| 186 | |
490 | |
| 187 | # Make charsets install in the right place |
491 | # Make charsets install in the right place |
|
|
492 | find . -name 'Makefile.am' \ |
| 188 | find . -name 'Makefile.am' -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
493 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 189 | |
494 | |
| 190 | # Manage mysqlmanager |
495 | # Manage mysqlmanager |
| 191 | mysql_version_is_at_least "5.00.15.00" \ |
496 | mysql_version_is_at_least "5.00.15.00" \ |
| 192 | && sed -i -e "s!@GENTOO_EXT@!!g" -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" "${S}/server-tools/instance-manager/Makefile.am" |
497 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
498 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
499 | "${S}/server-tools/instance-manager/Makefile.am" |
| 193 | |
500 | |
| 194 | if mysql_version_is_at_least "4.01.00.00" ; then |
501 | if mysql_version_is_at_least "4.01.00.00" ; then |
| 195 | # Remove what needs to be recreated, so we're sure it's actually done |
502 | # Remove what needs to be recreated, so we're sure it's actually done |
| 196 | find . -name Makefile \ |
503 | find . -name Makefile \ |
| 197 | -o -name Makefile.in \ |
504 | -o -name Makefile.in \ |
| 198 | -o -name configure \ |
505 | -o -name configure \ |
| 199 | -exec rm -f {} \; |
506 | -exec rm -f {} \; |
| 200 | rm -f "ltmain.sh" |
507 | rm -f "ltmain.sh" |
|
|
508 | rm -f "scripts/mysqlbug" |
| 201 | fi |
509 | fi |
| 202 | |
510 | |
| 203 | local rebuilddirlist bdbdir d |
511 | local rebuilddirlist d |
| 204 | |
512 | |
| 205 | if mysql_version_is_at_least "5.01.00.00" ; then |
513 | if mysql_version_is_at_least "5.1.12" ; then |
| 206 | rebuilddirlist=". storage/innobase" |
514 | rebuilddirlist="." |
| 207 | bdbdir='storage/bdb/dist' |
515 | # TODO IMPO! Check this with a cmake expert |
|
|
516 | useq "innodb" \ |
|
|
517 | && cmake \ |
|
|
518 | -DCMAKE_C_COMPILER=$(which $(tc-getCC)) \ |
|
|
519 | -DCMAKE_CXX_COMPILER=$(which $(tc-getCC)) \ |
|
|
520 | "storage/innobase" |
| 208 | else |
521 | else |
| 209 | rebuilddirlist=". innobase" |
522 | rebuilddirlist=". innobase" |
| 210 | bdbdir='bdb/dist' |
|
|
| 211 | fi |
523 | fi |
| 212 | |
524 | |
| 213 | for d in ${rebuilddirlist} ; do |
525 | for d in ${rebuilddirlist} ; do |
| 214 | einfo "Reconfiguring dir '${d}'" |
526 | einfo "Reconfiguring dir '${d}'" |
| 215 | pushd "${d}" &>/dev/null |
527 | pushd "${d}" &>/dev/null |
| 216 | AT_GNUCONF_UPDATE="yes" eautoreconf |
528 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 217 | popd &>/dev/null |
529 | popd &>/dev/null |
| 218 | done |
530 | done |
| 219 | |
531 | |
| 220 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 221 | if useq "berkdb" \ |
|
|
| 222 | && ! mysql_check_version_range "4.00.00.00 to 4.00.99.99" \ |
532 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 223 | && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
533 | && useq "berkdb" ; then |
| 224 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
534 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 225 | pushd "${bdbdir}" \ |
535 | pushd "bdb/dist" \ |
| 226 | && sh s_all \ |
536 | && sh s_all \ |
| 227 | || die "Failed bdb reconfigure" \ |
537 | || die "Failed bdb reconfigure" \ |
| 228 | &>/dev/null |
538 | &>/dev/null |
| 229 | popd &>/dev/null |
539 | popd &>/dev/null |
| 230 | fi |
540 | fi |
| … | |
… | |
| 232 | |
542 | |
| 233 | mysql_src_compile() { |
543 | mysql_src_compile() { |
| 234 | # Make sure the vars are correctly initialized |
544 | # Make sure the vars are correctly initialized |
| 235 | mysql_init_vars |
545 | mysql_init_vars |
| 236 | |
546 | |
|
|
547 | # $myconf is modified by the configure_* functions |
| 237 | local myconf |
548 | local myconf="" |
| 238 | |
549 | |
| 239 | if useq "static" ; then |
|
|
| 240 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
| 241 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
| 242 | myconf="${myconf} --disable-shared" |
|
|
| 243 | else |
|
|
| 244 | myconf="${myconf} --enable-shared --enable-static" |
|
|
| 245 | fi |
|
|
| 246 | |
|
|
| 247 | myconf="${myconf} --without-libwrap" |
|
|
| 248 | |
|
|
| 249 | if useq "ssl" ; then |
550 | if useq "minimal" ; then |
| 250 | # --with-vio is not needed anymore, it's on by default and |
551 | configure_minimal |
| 251 | # has been removed from configure |
552 | else |
| 252 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
553 | configure_common |
| 253 | if mysql_version_is_at_least "5.00.06.00" ; then |
554 | if mysql_version_is_at_least "5.1.10" ; then |
| 254 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
555 | configure_51 |
| 255 | # myconf="${myconf} --with-yassl" |
|
|
| 256 | myconf="${myconf} --with-openssl" |
|
|
| 257 | else |
556 | else |
| 258 | myconf="${myconf} --with-openssl" |
557 | configure_40_41_50 |
| 259 | fi |
|
|
| 260 | else |
|
|
| 261 | myconf="${myconf} --without-openssl" |
|
|
| 262 | fi |
|
|
| 263 | |
|
|
| 264 | if useq "debug" ; then |
|
|
| 265 | myconf="${myconf} --with-debug=full" |
|
|
| 266 | else |
|
|
| 267 | myconf="${myconf} --without-debug" |
|
|
| 268 | |
|
|
| 269 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
|
|
| 270 | && myconf="${myconf} --without-ndb-debug" |
|
|
| 271 | fi |
|
|
| 272 | |
|
|
| 273 | # These are things we exclude from a minimal build. |
|
|
| 274 | # Note that the server actually does get built and installed, |
|
|
| 275 | # but we then delete it. |
|
|
| 276 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
| 277 | |
|
|
| 278 | if ! useq "minimal" ; then |
|
|
| 279 | myconf="${myconf} --with-server" |
|
|
| 280 | myconf="${myconf} --with-extra-tools" |
|
|
| 281 | |
|
|
| 282 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 283 | if useq "raid" ; then |
|
|
| 284 | myconf="${myconf} --with-raid" |
|
|
| 285 | else |
|
|
| 286 | myconf="${myconf} --without-raid" |
|
|
| 287 | fi |
558 | fi |
| 288 | fi |
|
|
| 289 | |
|
|
| 290 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
| 291 | myconf="${myconf} --with-charset=utf8" |
|
|
| 292 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
| 293 | else |
|
|
| 294 | myconf="${myconf} --with-charset=latin1" |
|
|
| 295 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
| 296 | fi |
|
|
| 297 | |
|
|
| 298 | # Optional again with MySQL 5.1 |
|
|
| 299 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 300 | if useq "innodb" ; then |
|
|
| 301 | myconf="${myconf} --with-innodb" |
|
|
| 302 | else |
|
|
| 303 | myconf="${myconf} --without-innodb" |
|
|
| 304 | fi |
|
|
| 305 | fi |
|
|
| 306 | |
|
|
| 307 | # Lots of charsets |
|
|
| 308 | myconf="${myconf} --with-extra-charsets=all" |
|
|
| 309 | |
|
|
| 310 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 311 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 312 | # It comes down to non-64-bit safety problems. |
|
|
| 313 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 314 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
| 315 | myconf="${myconf} --without-berkeley-db" |
|
|
| 316 | else |
|
|
| 317 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 318 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 319 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 320 | else |
|
|
| 321 | myconf="${myconf} --without-berkeley-db" |
|
|
| 322 | fi |
|
|
| 323 | fi |
|
|
| 324 | |
|
|
| 325 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
| 326 | myconf="${myconf} --with-geometry" |
|
|
| 327 | |
|
|
| 328 | if useq "cluster" ; then |
|
|
| 329 | myconf="${myconf} --with-ndbcluster" |
|
|
| 330 | else |
|
|
| 331 | myconf="${myconf} --without-ndbcluster" |
|
|
| 332 | fi |
|
|
| 333 | fi |
|
|
| 334 | |
|
|
| 335 | if useq "big-tables" ; then |
|
|
| 336 | myconf="${myconf} --with-big-tables" |
|
|
| 337 | else |
|
|
| 338 | myconf="${myconf} --without-big-tables" |
|
|
| 339 | fi |
|
|
| 340 | |
|
|
| 341 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
| 342 | && myconf="${myconf} --with-ndb-binlog" |
|
|
| 343 | |
|
|
| 344 | if useq "embedded" ; then |
|
|
| 345 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
| 346 | myconf="${myconf} --with-embedded-server" |
|
|
| 347 | else |
|
|
| 348 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 349 | myconf="${myconf} --without-embedded-server" |
|
|
| 350 | fi |
|
|
| 351 | |
|
|
| 352 | # Benchmarking stuff needs Perl |
|
|
| 353 | if useq "perl" ; then |
|
|
| 354 | myconf="${myconf} --with-bench" |
|
|
| 355 | else |
|
|
| 356 | myconf="${myconf} --without-bench" |
|
|
| 357 | fi |
|
|
| 358 | else |
|
|
| 359 | for i in ${minimal_exclude_list} ; do |
|
|
| 360 | myconf="${myconf} --without-${i}" |
|
|
| 361 | done |
|
|
| 362 | myconf="${myconf} --without-berkeley-db" |
|
|
| 363 | myconf="${myconf} --with-extra-charsets=none" |
|
|
| 364 | fi |
|
|
| 365 | |
|
|
| 366 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
| 367 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
| 368 | myconf="${myconf} --with-archive-storage-engine" |
|
|
| 369 | |
|
|
| 370 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
| 371 | myconf="${myconf} --with-csv-storage-engine" |
|
|
| 372 | |
|
|
| 373 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
| 374 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
| 375 | |
|
|
| 376 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
| 377 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
| 378 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
| 379 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
| 380 | einfo "Before using the Federated storage engine, please be sure to read" |
|
|
| 381 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
| 382 | myconf="${myconf} --with-federated-storage-engine" |
|
|
| 383 | fi |
|
|
| 384 | |
|
|
| 385 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
| 386 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 387 | myconf="${myconf} --with-partition" |
|
|
| 388 | fi |
|
|
| 389 | fi |
|
|
| 390 | |
|
|
| 391 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
| 392 | && useq "max-idx-128" \ |
|
|
| 393 | && myconf="${myconf} --with-max-indexes=128" |
|
|
| 394 | |
|
|
| 395 | mysql_version_is_at_least "5.01.05.00" \ |
|
|
| 396 | && myconf="${myconf} --with-row-based-replication" |
|
|
| 397 | |
|
|
| 398 | # TODO: Rechek again later, there were problems with assembler enabled |
|
|
| 399 | # and some combination of USE flags with MySQL 5.1 |
|
|
| 400 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 401 | myconf="${myconf} --disable-assembler" |
|
|
| 402 | else |
|
|
| 403 | myconf="${myconf} --enable-assembler" |
|
|
| 404 | fi |
559 | fi |
| 405 | |
560 | |
| 406 | # Bug #114895, bug #110149 |
561 | # Bug #114895, bug #110149 |
| 407 | filter-flags "-O" "-O[01]" |
562 | filter-flags "-O" "-O[01]" |
| 408 | |
563 | |
| 409 | # glib-2.3.2_pre fix, bug #16496 |
564 | # glib-2.3.2_pre fix, bug #16496 |
| 410 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
565 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 411 | |
566 | |
| 412 | # The compiler flags are as their "official" spec says ;) |
567 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 413 | # CFLAGS="${CFLAGS/-O?/} -O3" |
|
|
| 414 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
568 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 415 | mysql_version_is_at_least "5.00.00.00" \ |
569 | mysql_version_is_at_least "5.0" \ |
| 416 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
570 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
571 | export CXXFLAGS |
| 417 | |
572 | |
| 418 | econf \ |
573 | econf \ |
| 419 | --libexecdir="/usr/sbin" \ |
574 | --libexecdir="/usr/sbin" \ |
| 420 | --sysconfdir="${MY_SYSCONFDIR}" \ |
575 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 421 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
576 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 422 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
577 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 423 | --libdir="${MY_LIBDIR}" \ |
578 | --libdir="${MY_LIBDIR}" \ |
| 424 | --includedir="${MY_INCLUDEDIR}" \ |
579 | --includedir="${MY_INCLUDEDIR}" \ |
| 425 | --with-low-memory \ |
580 | --with-low-memory \ |
| 426 | --enable-local-infile \ |
|
|
| 427 | --with-mysqld-user=mysql \ |
|
|
| 428 | --with-client-ldflags=-lstdc++ \ |
581 | --with-client-ldflags=-lstdc++ \ |
| 429 | --enable-thread-safe-client \ |
582 | --enable-thread-safe-client \ |
| 430 | --with-comment="Gentoo Linux ${PF}" \ |
583 | --with-comment="Gentoo Linux ${PF}" \ |
| 431 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
| 432 | --without-readline \ |
|
|
| 433 | --without-docs \ |
584 | --without-docs \ |
| 434 | ${myconf} || die "bad ./configure" |
585 | ${myconf} || die "econf failed" |
| 435 | |
586 | |
| 436 | # TODO: Move this before autoreconf !!! |
587 | # TODO: Move this before autoreconf !!! |
| 437 | find . -type f -name Makefile -print0 \ |
588 | find . -type f -name Makefile -print0 \ |
| 438 | | xargs -0 -n100 sed -i \ |
589 | | xargs -0 -n100 sed -i \ |
| 439 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
590 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 440 | |
591 | |
| 441 | emake || die "compile problem" |
592 | emake || die "emake failed" |
| 442 | } |
593 | } |
| 443 | |
594 | |
| 444 | mysql_src_install() { |
595 | mysql_src_install() { |
| 445 | # Make sure the vars are correctly initialized |
596 | # Make sure the vars are correctly initialized |
| 446 | mysql_init_vars |
597 | mysql_init_vars |
| 447 | |
598 | |
| 448 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "make install error" |
599 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 449 | |
600 | |
| 450 | insinto "${MY_INCLUDEDIR}" |
601 | insinto "${MY_INCLUDEDIR}" |
| 451 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
602 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 452 | |
603 | |
| 453 | # Convenience links |
604 | # Convenience links |
| … | |
… | |
| 455 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
606 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 456 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
607 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 457 | |
608 | |
| 458 | # Various junk (my-*.cnf moved elsewhere) |
609 | # Various junk (my-*.cnf moved elsewhere) |
| 459 | rm -Rf "${D}/usr/share/info" |
610 | rm -Rf "${D}/usr/share/info" |
| 460 | for removeme in "mysql-log-rotate" mysql.server* binary-configure* my-*.cnf mi_test_all* ; do |
611 | for removeme in "mysql-log-rotate" mysql.server* \ |
|
|
612 | binary-configure* my-*.cnf mi_test_all* |
|
|
613 | do |
| 461 | rm -f "${D}"/usr/share/mysql/${removeme} |
614 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 462 | done |
615 | done |
| 463 | |
616 | |
| 464 | # Clean up stuff for a minimal build |
617 | # Clean up stuff for a minimal build |
| 465 | if useq "minimal" ; then |
618 | if useq "minimal" ; then |
| … | |
… | |
| 468 | rm -f "${D}/usr/sbin/mysqld" |
621 | rm -f "${D}/usr/sbin/mysqld" |
| 469 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
622 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 470 | fi |
623 | fi |
| 471 | |
624 | |
| 472 | # Configuration stuff |
625 | # Configuration stuff |
| 473 | if mysql_version_is_at_least "4.01.00.00" ; then |
626 | if mysql_version_is_at_least "4.1" ; then |
| 474 | mysql_mycnf_version="4.1" |
627 | mysql_mycnf_version="4.1" |
| 475 | else |
628 | else |
| 476 | mysql_mycnf_version="4.0" |
629 | mysql_mycnf_version="4.0" |
| 477 | fi |
630 | fi |
| 478 | insinto "${MY_SYSCONFDIR}" |
631 | insinto "${MY_SYSCONFDIR}" |
| 479 | doins "scripts/mysqlaccess.conf" |
632 | doins "scripts/mysqlaccess.conf" |
| 480 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
633 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
| 481 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
634 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 482 | > "${TMPDIR}/my.cnf.ok" |
635 | > "${TMPDIR}/my.cnf.ok" |
| 483 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
636 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
| 484 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
637 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 485 | fi |
638 | fi |
| 486 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
639 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 487 | |
640 | |
| 488 | insinto "/etc/conf.d" |
641 | insinto "/etc/conf.d" |
| … | |
… | |
| 547 | mysql_pkg_postinst() { |
700 | mysql_pkg_postinst() { |
| 548 | # Make sure the vars are correctly initialized |
701 | # Make sure the vars are correctly initialized |
| 549 | mysql_init_vars |
702 | mysql_init_vars |
| 550 | |
703 | |
| 551 | # Check FEATURES="collision-protect" before removing this |
704 | # Check FEATURES="collision-protect" before removing this |
|
|
705 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
| 552 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
706 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
| 553 | |
707 | |
| 554 | # Secure the logfiles |
708 | # Secure the logfiles |
| 555 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
709 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 556 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
710 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 557 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
711 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 558 | |
712 | |
| 559 | if ! useq "minimal" ; then |
713 | if ! useq "minimal" ; then |
| 560 | # Your friendly public service announcement ... |
714 | # Your friendly public service announcement ... |
| 561 | einfo |
715 | einfo |
| 562 | einfo "You might want to run:" |
716 | elog "You might want to run:" |
| 563 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
717 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 564 | einfo "if this is a new install." |
718 | elog "if this is a new install." |
| 565 | einfo |
719 | einfo |
| 566 | mysql_version_is_at_least "5.01.00.00" \ |
720 | mysql_version_is_at_least "5.01.00.00" \ |
| 567 | || einfo "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
721 | || elog "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
| 568 | fi |
722 | fi |
|
|
723 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
724 | && useq "berkdb" \ |
|
|
725 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 569 | } |
726 | } |
| 570 | |
727 | |
| 571 | mysql_pkg_config() { |
728 | mysql_pkg_config() { |
| 572 | # Make sure the vars are correctly initialized |
729 | # Make sure the vars are correctly initialized |
| 573 | mysql_init_vars |
730 | mysql_init_vars |
| 574 | |
731 | |
| 575 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
732 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
| 576 | |
733 | |
| 577 | if built_with_use dev-db/mysql minimal ; then |
734 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 578 | die "Minimal builds do NOT include the MySQL server" |
735 | die "Minimal builds do NOT include the MySQL server" |
| 579 | fi |
736 | fi |
| 580 | |
737 | |
| 581 | local pwd1="a" |
738 | local pwd1="a" |
| 582 | local pwd2="b" |
739 | local pwd2="b" |
| … | |
… | |
| 618 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
775 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
| 619 | || die "MySQL databases not installed" |
776 | || die "MySQL databases not installed" |
| 620 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
777 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
| 621 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
778 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
| 622 | |
779 | |
| 623 | if mysql_version_is_at_least "4.01.03.00" ; then |
780 | if mysql_version_is_at_least "4.1.3" ; then |
| 624 | options="--skip-ndbcluster" |
781 | options="--skip-ndbcluster" |
| 625 | |
782 | |
| 626 | # Filling timezones, see |
783 | # Filling timezones, see |
| 627 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
784 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 628 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
785 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| … | |
… | |
| 677 | wait %1 |
834 | wait %1 |
| 678 | einfo "Done" |
835 | einfo "Done" |
| 679 | } |
836 | } |
| 680 | |
837 | |
| 681 | mysql_pkg_postrm() { |
838 | mysql_pkg_postrm() { |
| 682 | mysql_lib_symlinks |
839 | : #mysql_lib_symlinks |
| 683 | } |
840 | } |