| 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.39 2006/10/20 14:44:01 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 | |
| 53 | MY_P="${P/_/-}" |
68 | MY_P="${P/_/-}" |
|
|
69 | MY_P="${MY_P/-alpha/-bk-}" # BitKeeper ebuilds |
|
|
70 | MY_P="${MY_P/-community/}" |
| 54 | |
71 | |
| 55 | # Define correct SRC_URIs |
72 | # Define correct SRC_URIs |
| 56 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
73 | SRC_URI="${BASE_URI}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
| 57 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
74 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
| 58 | 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" |
| 59 | # 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 |
| 60 | SRC_URI="${SRC_URI} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
77 | SRC_URI="${SRC_URI} http://g3nt8.org/patches/${MYSQL_PATCHSET_FILENAME}" |
| 61 | fi |
78 | fi |
| 62 | |
79 | |
| 63 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 64 | HOMEPAGE="http://www.mysql.com/" |
81 | HOMEPAGE="http://www.mysql.com/" |
| 65 | SLOT="0" |
82 | SLOT="0" |
| 66 | LICENSE="GPL-2" |
83 | LICENSE="GPL-2" |
| 67 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
84 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
| 68 | RESTRICT="confcache" |
85 | RESTRICT="confcache" |
| 69 | |
86 | |
| 70 | mysql_version_is_at_least "4.01.00.00" \ |
87 | mysql_version_is_at_least "4.01.00.00" \ |
| 71 | && IUSE="${IUSE} latin1" |
88 | && IUSE="${IUSE} latin1" |
| 72 | |
89 | |
| 73 | mysql_version_is_at_least "4.01.03.00" \ |
90 | mysql_version_is_at_least "4.01.03.00" \ |
| 74 | && IUSE="${IUSE} cluster extraengine" |
91 | && IUSE="${IUSE} cluster extraengine" |
| 75 | |
92 | |
| 76 | mysql_version_is_at_least "5.00.00.00" \ |
93 | mysql_version_is_at_least "5.00.00.00" \ |
| 77 | || IUSE="${IUSE} raid" |
94 | || IUSE="${IUSE} raid" |
| 78 | |
95 | |
| 79 | mysql_version_is_at_least "5.00.18.00" \ |
96 | mysql_version_is_at_least "5.00.18.00" \ |
| 80 | && IUSE="${IUSE} max-idx-128" |
97 | && IUSE="${IUSE} max-idx-128" |
| 81 | |
98 | |
| 82 | mysql_version_is_at_least "5.01.00.00" \ |
99 | mysql_version_is_at_least "5.01.00.00" \ |
| 83 | && IUSE="${IUSE} innodb" |
100 | && IUSE="${IUSE} innodb" |
| 84 | |
101 | |
| 85 | mysql_version_is_at_least "5.01.00.00" \ |
102 | mysql_version_is_at_least "5.01.00.00" \ |
| 86 | || IUSE="${IUSE} berkdb" |
103 | || IUSE="${IUSE} berkdb" |
|
|
104 | fi # if [[ "${_MYPVR}" != "${PVR}" ]] |
| 87 | |
105 | |
| 88 | 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 \ |
| 89 | pkg_postinst pkg_config pkg_postrm |
107 | pkg_postinst pkg_config pkg_postrm |
| 90 | |
108 | |
| 91 | # |
109 | # |
| 92 | # HELPER FUNCTIONS: |
110 | # HELPER FUNCTIONS: |
| 93 | # |
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 | } |
| 94 | |
178 | |
| 95 | # void mysql_init_vars() |
179 | # void mysql_init_vars() |
| 96 | # |
180 | # |
| 97 | # Initialize global variables |
181 | # Initialize global variables |
| 98 | # 2005-11-19 <vivo@gentoo.org> |
182 | # 2005-11-19 <vivo@gentoo.org> |
| … | |
… | |
| 147 | export MY_INCLUDEDIR |
231 | export MY_INCLUDEDIR |
| 148 | export DATADIR |
232 | export DATADIR |
| 149 | } |
233 | } |
| 150 | |
234 | |
| 151 | configure_minimal() { |
235 | configure_minimal() { |
| 152 | # These are things we exclude from a minimal build, please |
236 | # These are things we exclude from a minimal build, please |
| 153 | # note that the server actually does get built and installed, |
237 | # note that the server actually does get built and installed, |
| 154 | # but we then delete it before packaging. |
238 | # but we then delete it before packaging. |
| 155 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
239 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
| 156 | |
240 | |
| 157 | for i in ${minimal_exclude_list} ; do |
241 | for i in ${minimal_exclude_list} ; do |
| 158 | myconf="${myconf} --without-${i}" |
242 | myconf="${myconf} --without-${i}" |
| 159 | done |
243 | done |
| 160 | myconf="${myconf} --with-extra-charsets=none" |
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 |
| 161 | } |
261 | } |
| 162 | |
262 | |
| 163 | configure_common() { |
263 | configure_common() { |
| 164 | myconf="${myconf} $(use_with big-tables)" |
264 | myconf="${myconf} $(use_with big-tables)" |
| 165 | myconf="${myconf} --enable-local-infile" |
265 | myconf="${myconf} --enable-local-infile" |
| 166 | myconf="${myconf} --with-extra-charsets=all" |
266 | myconf="${myconf} --with-extra-charsets=all" |
| 167 | myconf="${myconf} --with-mysqld-user=mysql" |
267 | myconf="${myconf} --with-mysqld-user=mysql" |
| 168 | myconf="${myconf} --with-server" |
268 | myconf="${myconf} --with-server" |
| 169 | myconf="${myconf} --with-unix-socket-path='/var/run/mysqld/mysqld.sock'" |
269 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
| 170 | myconf="${myconf} --without-libwrap" |
270 | myconf="${myconf} --without-libwrap" |
| 171 | |
271 | |
| 172 | if useq "static" ; then |
272 | if useq "static" ; then |
| 173 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
273 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 174 | myconf="${myconf} --with-client-ldflags=-all-static" |
274 | myconf="${myconf} --with-client-ldflags=-all-static" |
| … | |
… | |
| 179 | |
279 | |
| 180 | if useq "debug" ; then |
280 | if useq "debug" ; then |
| 181 | myconf="${myconf} --with-debug=full" |
281 | myconf="${myconf} --with-debug=full" |
| 182 | else |
282 | else |
| 183 | myconf="${myconf} --without-debug" |
283 | myconf="${myconf} --without-debug" |
| 184 | mysql_version_is_at_least "4.01.03.00" \ |
284 | mysql_version_is_at_least "4.1.3" \ |
| 185 | && useq "cluster" \ |
285 | && useq "cluster" \ |
| 186 | && myconf="${myconf} --without-ndb-debug" |
286 | && myconf="${myconf} --without-ndb-debug" |
| 187 | fi |
287 | fi |
| 188 | |
288 | |
| 189 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
289 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
| 190 | myconf="${myconf} --with-charset=utf8" |
290 | myconf="${myconf} --with-charset=utf8" |
| 191 | myconf="${myconf} --with-collation=utf8_general_ci" |
291 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 192 | else |
292 | else |
| 193 | myconf="${myconf} --with-charset=latin1" |
293 | myconf="${myconf} --with-charset=latin1" |
| 194 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
294 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| … | |
… | |
| 208 | myconf="${myconf} $(use_with perl bench)" |
308 | myconf="${myconf} $(use_with perl bench)" |
| 209 | myconf="${myconf} --enable-assembler" |
309 | myconf="${myconf} --enable-assembler" |
| 210 | myconf="${myconf} --with-extra-tools" |
310 | myconf="${myconf} --with-extra-tools" |
| 211 | myconf="${myconf} --with-innodb" |
311 | myconf="${myconf} --with-innodb" |
| 212 | myconf="${myconf} --without-readline" |
312 | myconf="${myconf} --without-readline" |
| 213 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
313 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 214 | |
314 | |
| 215 | if useq "ssl" ; then |
315 | if useq "ssl" ; then |
| 216 | # --with-vio is not needed anymore, it's on by default and |
316 | # --with-vio is not needed anymore, it's on by default and |
| 217 | # has been removed from configure |
317 | # has been removed from configure |
| 218 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
318 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 219 | if mysql_version_is_at_least "5.00.06.00" ; then |
319 | if mysql_version_is_at_least "5.0.6" ; then |
| 220 | # myconf="${myconf} --with-yassl" |
320 | # myconf="${myconf} --with-yassl" |
| 221 | myconf="${myconf} --with-openssl" |
321 | myconf="${myconf} --with-openssl" |
| 222 | else |
322 | else |
| 223 | myconf="${myconf} --with-openssl" |
323 | myconf="${myconf} --with-openssl" |
| 224 | fi |
324 | fi |
| … | |
… | |
| 238 | else |
338 | else |
| 239 | myconf="${myconf} --without-berkeley-db" |
339 | myconf="${myconf} --without-berkeley-db" |
| 240 | fi |
340 | fi |
| 241 | fi |
341 | fi |
| 242 | |
342 | |
| 243 | if mysql_version_is_at_least "4.01.03.00" ; then |
343 | if mysql_version_is_at_least "4.1.3" ; then |
| 244 | myconf="${myconf} --with-geometry" |
344 | myconf="${myconf} --with-geometry" |
| 245 | myconf="${myconf} $(use_with cluster ndbcluster)" |
345 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| 246 | fi |
346 | fi |
| 247 | |
347 | |
| 248 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
348 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
| 249 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
349 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 250 | myconf="${myconf} --with-archive-storage-engine" |
350 | myconf="${myconf} --with-archive-storage-engine" |
| 251 | |
351 | |
| 252 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
352 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 253 | myconf="${myconf} --with-csv-storage-engine" |
353 | myconf="${myconf} --with-csv-storage-engine" |
| … | |
… | |
| 256 | myconf="${myconf} --with-blackhole-storage-engine" |
356 | myconf="${myconf} --with-blackhole-storage-engine" |
| 257 | |
357 | |
| 258 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
358 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 259 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
359 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 260 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
360 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 261 | if mysql_version_is_at_least "5.00.03.00" ; then |
361 | if mysql_version_is_at_least "5.0.3" ; then |
| 262 | elog "Before using the Federated storage engine, please be sure to read" |
362 | elog "Before using the Federated storage engine, please be sure to read" |
| 263 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
363 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 264 | myconf="${myconf} --with-federated-storage-engine" |
364 | myconf="${myconf} --with-federated-storage-engine" |
| 265 | fi |
365 | fi |
| 266 | fi |
366 | fi |
| 267 | |
367 | |
| 268 | mysql_version_is_at_least "5.00.18.00" \ |
368 | mysql_version_is_at_least "5.0.18" \ |
| 269 | && useq "max-idx-128" \ |
369 | && useq "max-idx-128" \ |
| 270 | && myconf="${myconf} --with-max-indexes=128" |
370 | && myconf="${myconf} --with-max-indexes=128" |
| 271 | } |
371 | } |
| 272 | |
372 | |
| 273 | configure_51() { |
373 | configure_51() { |
| 274 | # TODO : !!!!! readd --withouth-readline |
374 | # TODO: !!!! readd --without-readline |
| 275 | # the failure depend upon config/ac-macros/readline.m4 checking into |
375 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 276 | # readline.h instead of history.h |
376 | # readline.h instead of history.h |
| 277 | myconf="${myconf} $(use_with ssl)" |
377 | myconf="${myconf} $(use_with ssl)" |
| 278 | myconf="${myconf} --enable-assembler" |
378 | myconf="${myconf} --enable-assembler" |
| 279 | myconf="${myconf} --with-geometry" |
379 | myconf="${myconf} --with-geometry" |
| … | |
… | |
| 286 | # 5.1 introduces a new way to manage storage engines (plugins) |
386 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 287 | # like configuration=none |
387 | # like configuration=none |
| 288 | local plugins="csv,myisam,myisammrg,heap" |
388 | local plugins="csv,myisam,myisammrg,heap" |
| 289 | if useq "extraengine" ; then |
389 | if useq "extraengine" ; then |
| 290 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
390 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 291 | plugins="${plugins},blackhole,federated,ftexample,partition" |
391 | plugins="${plugins},archive,blackhole,example,federated,partition" |
| 292 | |
392 | |
| 293 | elog "Before using the Federated storage engine, please be sure to read" |
393 | elog "Before using the Federated storage engine, please be sure to read" |
| 294 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
394 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 295 | fi |
395 | fi |
| 296 | |
396 | |
| … | |
… | |
| 305 | fi |
405 | fi |
| 306 | |
406 | |
| 307 | myconf="${myconf} --with-plugins=${plugins}" |
407 | myconf="${myconf} --with-plugins=${plugins}" |
| 308 | } |
408 | } |
| 309 | |
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 | |
| 310 | # |
438 | # |
| 311 | # EBUILD FUNCTIONS |
439 | # EBUILD FUNCTIONS |
| 312 | # |
440 | # |
| 313 | |
441 | |
| 314 | mysql_pkg_setup() { |
442 | mysql_pkg_setup() { |
| 315 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
443 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 316 | 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" |
| 317 | |
|
|
| 318 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
|
|
| 319 | eerror "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
| 320 | die "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
| 321 | fi |
|
|
| 322 | |
445 | |
| 323 | # Check for USE flag problems in pkg_setup |
446 | # Check for USE flag problems in pkg_setup |
| 324 | if useq "static" && useq "ssl" ; then |
447 | if useq "static" && useq "ssl" ; then |
| 325 | 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!" |
| 326 | 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!" |
| 327 | fi |
450 | fi |
| 328 | |
451 | |
| 329 | if ! mysql_version_is_at_least "5.00.00.00" \ |
452 | if ! mysql_version_is_at_least "5.0" \ |
| 330 | && useq "raid" \ |
453 | && useq "raid" \ |
| 331 | && useq "static" ; then |
454 | && useq "static" ; then |
| 332 | 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" |
| 333 | eerror "with RAID support enabled." |
456 | eerror "with RAID support enabled." |
| 334 | die "USE flags 'raid' and 'static' conflict!" |
457 | die "USE flags 'raid' and 'static' conflict!" |
| 335 | fi |
458 | fi |
| 336 | |
459 | |
| 337 | if mysql_version_is_at_least "4.01.03.00" \ |
460 | if mysql_version_is_at_least "4.1.3" \ |
| 338 | && ( useq "cluster" || useq "extraengine" ) \ |
461 | && ( useq "cluster" || useq "extraengine" ) \ |
| 339 | && useq "minimal" ; then |
462 | && useq "minimal" ; then |
| 340 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
463 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 341 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
464 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 342 | fi |
465 | fi |
| 343 | |
466 | |
|
|
467 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
468 | && useq "berkdb" \ |
| 344 | useq "berkdb" && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
469 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 345 | } |
470 | } |
| 346 | |
471 | |
| 347 | mysql_src_unpack() { |
472 | mysql_src_unpack() { |
| 348 | # Initialize the proper variables first |
473 | # Initialize the proper variables first |
| 349 | mysql_init_vars |
474 | mysql_init_vars |
| … | |
… | |
| 381 | -exec rm -f {} \; |
506 | -exec rm -f {} \; |
| 382 | rm -f "ltmain.sh" |
507 | rm -f "ltmain.sh" |
| 383 | rm -f "scripts/mysqlbug" |
508 | rm -f "scripts/mysqlbug" |
| 384 | fi |
509 | fi |
| 385 | |
510 | |
| 386 | local rebuilddirlist bdbdir d |
511 | local rebuilddirlist d |
| 387 | |
512 | |
| 388 | if mysql_version_is_at_least "5.01.00.00" ; then |
513 | if mysql_version_is_at_least "5.1.12" ; then |
| 389 | rebuilddirlist=". storage/innobase" |
514 | rebuilddirlist="." |
| 390 | 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" |
| 391 | else |
521 | else |
| 392 | rebuilddirlist=". innobase" |
522 | rebuilddirlist=". innobase" |
| 393 | bdbdir='bdb/dist' |
|
|
| 394 | fi |
523 | fi |
| 395 | |
524 | |
| 396 | for d in ${rebuilddirlist} ; do |
525 | for d in ${rebuilddirlist} ; do |
| 397 | einfo "Reconfiguring dir '${d}'" |
526 | einfo "Reconfiguring dir '${d}'" |
| 398 | pushd "${d}" &>/dev/null |
527 | pushd "${d}" &>/dev/null |
| 399 | AT_GNUCONF_UPDATE="yes" eautoreconf |
528 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 400 | popd &>/dev/null |
529 | popd &>/dev/null |
| 401 | done |
530 | done |
| 402 | |
531 | |
| 403 | # Berkeley DB has been removed in MySQL 5.1 |
|
|
| 404 | if useq "berkdb" \ |
|
|
| 405 | && mysql_check_version_range "4.01.00.00 to 5.00.99.99" ; then |
532 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
|
|
533 | && useq "berkdb" ; then |
| 406 | [[ -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" |
| 407 | pushd "${bdbdir}" \ |
535 | pushd "bdb/dist" \ |
| 408 | && sh s_all \ |
536 | && sh s_all \ |
| 409 | || die "Failed bdb reconfigure" \ |
537 | || die "Failed bdb reconfigure" \ |
| 410 | &>/dev/null |
538 | &>/dev/null |
| 411 | popd &>/dev/null |
539 | popd &>/dev/null |
| 412 | fi |
540 | fi |
| … | |
… | |
| 414 | |
542 | |
| 415 | mysql_src_compile() { |
543 | mysql_src_compile() { |
| 416 | # Make sure the vars are correctly initialized |
544 | # Make sure the vars are correctly initialized |
| 417 | mysql_init_vars |
545 | mysql_init_vars |
| 418 | |
546 | |
|
|
547 | # $myconf is modified by the configure_* functions |
| 419 | local myconf |
548 | local myconf="" |
| 420 | |
549 | |
| 421 | if useq "static" ; then |
|
|
| 422 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
| 423 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
| 424 | myconf="${myconf} --disable-shared" |
|
|
| 425 | else |
|
|
| 426 | myconf="${myconf} --enable-shared --enable-static" |
|
|
| 427 | fi |
|
|
| 428 | |
|
|
| 429 | myconf="${myconf} --without-libwrap" |
|
|
| 430 | |
|
|
| 431 | if useq "ssl" ; then |
550 | if useq "minimal" ; then |
| 432 | # --with-vio is not needed anymore, it's on by default and |
551 | configure_minimal |
| 433 | # has been removed from configure |
552 | else |
| 434 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
553 | configure_common |
| 435 | if mysql_version_is_at_least "5.00.06.00" ; then |
554 | if mysql_version_is_at_least "5.1.10" ; then |
| 436 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
555 | configure_51 |
| 437 | # myconf="${myconf} --with-yassl" |
|
|
| 438 | myconf="${myconf} --with-openssl" |
|
|
| 439 | else |
556 | else |
| 440 | myconf="${myconf} --with-openssl" |
557 | configure_40_41_50 |
| 441 | fi |
|
|
| 442 | else |
|
|
| 443 | myconf="${myconf} --without-openssl" |
|
|
| 444 | fi |
|
|
| 445 | |
|
|
| 446 | if useq "debug" ; then |
|
|
| 447 | myconf="${myconf} --with-debug=full" |
|
|
| 448 | else |
|
|
| 449 | myconf="${myconf} --without-debug" |
|
|
| 450 | |
|
|
| 451 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
|
|
| 452 | && myconf="${myconf} --without-ndb-debug" |
|
|
| 453 | fi |
|
|
| 454 | |
|
|
| 455 | # These are things we exclude from a minimal build. |
|
|
| 456 | # Note that the server actually does get built and installed, |
|
|
| 457 | # but we then delete it. |
|
|
| 458 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
| 459 | |
|
|
| 460 | if ! useq "minimal" ; then |
|
|
| 461 | myconf="${myconf} --with-server" |
|
|
| 462 | myconf="${myconf} --with-extra-tools" |
|
|
| 463 | |
|
|
| 464 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 465 | if useq "raid" ; then |
|
|
| 466 | myconf="${myconf} --with-raid" |
|
|
| 467 | else |
|
|
| 468 | myconf="${myconf} --without-raid" |
|
|
| 469 | fi |
558 | fi |
| 470 | fi |
|
|
| 471 | |
|
|
| 472 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
| 473 | myconf="${myconf} --with-charset=utf8" |
|
|
| 474 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
| 475 | else |
|
|
| 476 | myconf="${myconf} --with-charset=latin1" |
|
|
| 477 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
| 478 | fi |
|
|
| 479 | |
|
|
| 480 | # Optional again with MySQL 5.1 |
|
|
| 481 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 482 | if useq "innodb" ; then |
|
|
| 483 | myconf="${myconf} --with-innodb" |
|
|
| 484 | else |
|
|
| 485 | myconf="${myconf} --without-innodb" |
|
|
| 486 | fi |
|
|
| 487 | fi |
|
|
| 488 | |
|
|
| 489 | # Lots of charsets |
|
|
| 490 | myconf="${myconf} --with-extra-charsets=all" |
|
|
| 491 | |
|
|
| 492 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 493 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 494 | # It comes down to non-64-bit safety problems. |
|
|
| 495 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 496 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
| 497 | myconf="${myconf} --without-berkeley-db" |
|
|
| 498 | else |
|
|
| 499 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
| 500 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 501 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 502 | else |
|
|
| 503 | myconf="${myconf} --without-berkeley-db" |
|
|
| 504 | fi |
|
|
| 505 | fi |
|
|
| 506 | |
|
|
| 507 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
| 508 | myconf="${myconf} --with-geometry" |
|
|
| 509 | |
|
|
| 510 | if useq "cluster" ; then |
|
|
| 511 | myconf="${myconf} --with-ndbcluster" |
|
|
| 512 | else |
|
|
| 513 | myconf="${myconf} --without-ndbcluster" |
|
|
| 514 | fi |
|
|
| 515 | fi |
|
|
| 516 | |
|
|
| 517 | if useq "big-tables" ; then |
|
|
| 518 | myconf="${myconf} --with-big-tables" |
|
|
| 519 | else |
|
|
| 520 | myconf="${myconf} --without-big-tables" |
|
|
| 521 | fi |
|
|
| 522 | |
|
|
| 523 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
| 524 | && myconf="${myconf} --with-ndb-binlog" |
|
|
| 525 | |
|
|
| 526 | if useq "embedded" ; then |
|
|
| 527 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
| 528 | myconf="${myconf} --with-embedded-server" |
|
|
| 529 | else |
|
|
| 530 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 531 | myconf="${myconf} --without-embedded-server" |
|
|
| 532 | fi |
|
|
| 533 | |
|
|
| 534 | # Benchmarking stuff needs Perl |
|
|
| 535 | if useq "perl" ; then |
|
|
| 536 | myconf="${myconf} --with-bench" |
|
|
| 537 | else |
|
|
| 538 | myconf="${myconf} --without-bench" |
|
|
| 539 | fi |
|
|
| 540 | else |
|
|
| 541 | for i in ${minimal_exclude_list} ; do |
|
|
| 542 | myconf="${myconf} --without-${i}" |
|
|
| 543 | done |
|
|
| 544 | myconf="${myconf} --without-berkeley-db" |
|
|
| 545 | myconf="${myconf} --with-extra-charsets=none" |
|
|
| 546 | fi |
|
|
| 547 | |
|
|
| 548 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
| 549 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
| 550 | myconf="${myconf} --with-archive-storage-engine" |
|
|
| 551 | |
|
|
| 552 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
| 553 | myconf="${myconf} --with-csv-storage-engine" |
|
|
| 554 | |
|
|
| 555 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
| 556 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
| 557 | |
|
|
| 558 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
| 559 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
| 560 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
| 561 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
| 562 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
| 563 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
| 564 | myconf="${myconf} --with-federated-storage-engine" |
|
|
| 565 | fi |
|
|
| 566 | |
|
|
| 567 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
| 568 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 569 | myconf="${myconf} --with-partition" |
|
|
| 570 | fi |
|
|
| 571 | fi |
|
|
| 572 | |
|
|
| 573 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
| 574 | && useq "max-idx-128" \ |
|
|
| 575 | && myconf="${myconf} --with-max-indexes=128" |
|
|
| 576 | |
|
|
| 577 | mysql_version_is_at_least "5.01.05.00" \ |
|
|
| 578 | && myconf="${myconf} --with-row-based-replication" |
|
|
| 579 | |
|
|
| 580 | # TODO: Rechek again later, there were problems with assembler enabled |
|
|
| 581 | # and some combination of USE flags with MySQL 5.1 |
|
|
| 582 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 583 | myconf="${myconf} --disable-assembler" |
|
|
| 584 | else |
|
|
| 585 | myconf="${myconf} --enable-assembler" |
|
|
| 586 | fi |
559 | fi |
| 587 | |
560 | |
| 588 | # Bug #114895, bug #110149 |
561 | # Bug #114895, bug #110149 |
| 589 | filter-flags "-O" "-O[01]" |
562 | filter-flags "-O" "-O[01]" |
| 590 | |
563 | |
| 591 | # glib-2.3.2_pre fix, bug #16496 |
564 | # glib-2.3.2_pre fix, bug #16496 |
| 592 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
565 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 593 | |
566 | |
| 594 | append-flags "-fno-exceptions -fno-strict-aliasing" |
567 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 595 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
568 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 596 | mysql_version_is_at_least "5.00.00.00" \ |
569 | mysql_version_is_at_least "5.0" \ |
| 597 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
570 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 598 | export CXXFLAGS |
571 | export CXXFLAGS |
| 599 | |
572 | |
| 600 | econf \ |
573 | econf \ |
| 601 | --libexecdir="/usr/sbin" \ |
574 | --libexecdir="/usr/sbin" \ |
| … | |
… | |
| 603 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
576 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 604 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
577 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 605 | --libdir="${MY_LIBDIR}" \ |
578 | --libdir="${MY_LIBDIR}" \ |
| 606 | --includedir="${MY_INCLUDEDIR}" \ |
579 | --includedir="${MY_INCLUDEDIR}" \ |
| 607 | --with-low-memory \ |
580 | --with-low-memory \ |
| 608 | --enable-local-infile \ |
|
|
| 609 | --with-mysqld-user=mysql \ |
|
|
| 610 | --with-client-ldflags=-lstdc++ \ |
581 | --with-client-ldflags=-lstdc++ \ |
| 611 | --enable-thread-safe-client \ |
582 | --enable-thread-safe-client \ |
| 612 | --with-comment="Gentoo Linux ${PF}" \ |
583 | --with-comment="Gentoo Linux ${PF}" \ |
| 613 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
| 614 | --without-readline \ |
|
|
| 615 | --without-docs \ |
584 | --without-docs \ |
| 616 | ${myconf} || die "econf failed" |
585 | ${myconf} || die "econf failed" |
| 617 | |
586 | |
| 618 | # TODO: Move this before autoreconf !!! |
587 | # TODO: Move this before autoreconf !!! |
| 619 | find . -type f -name Makefile -print0 \ |
588 | find . -type f -name Makefile -print0 \ |
| … | |
… | |
| 652 | rm -f "${D}/usr/sbin/mysqld" |
621 | rm -f "${D}/usr/sbin/mysqld" |
| 653 | 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 |
| 654 | fi |
623 | fi |
| 655 | |
624 | |
| 656 | # Configuration stuff |
625 | # Configuration stuff |
| 657 | if mysql_version_is_at_least "4.01.00.00" ; then |
626 | if mysql_version_is_at_least "4.1" ; then |
| 658 | mysql_mycnf_version="4.1" |
627 | mysql_mycnf_version="4.1" |
| 659 | else |
628 | else |
| 660 | mysql_mycnf_version="4.0" |
629 | mysql_mycnf_version="4.0" |
| 661 | fi |
630 | fi |
| 662 | insinto "${MY_SYSCONFDIR}" |
631 | insinto "${MY_SYSCONFDIR}" |
| 663 | doins "scripts/mysqlaccess.conf" |
632 | doins "scripts/mysqlaccess.conf" |
| 664 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
633 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
| 665 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
634 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 666 | > "${TMPDIR}/my.cnf.ok" |
635 | > "${TMPDIR}/my.cnf.ok" |
| 667 | 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 |
| 668 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
637 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 669 | fi |
638 | fi |
| 670 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
639 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 671 | |
640 | |
| 672 | insinto "/etc/conf.d" |
641 | insinto "/etc/conf.d" |
| … | |
… | |
| 749 | elog "if this is a new install." |
718 | elog "if this is a new install." |
| 750 | einfo |
719 | einfo |
| 751 | mysql_version_is_at_least "5.01.00.00" \ |
720 | mysql_version_is_at_least "5.01.00.00" \ |
| 752 | || elog "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." |
| 753 | fi |
722 | fi |
|
|
723 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
724 | && useq "berkdb" \ |
| 754 | useq "berkdb" && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
725 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 755 | } |
726 | } |
| 756 | |
727 | |
| 757 | mysql_pkg_config() { |
728 | mysql_pkg_config() { |
| 758 | # Make sure the vars are correctly initialized |
729 | # Make sure the vars are correctly initialized |
| 759 | mysql_init_vars |
730 | mysql_init_vars |
| 760 | |
731 | |
| 761 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
732 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
| 762 | |
733 | |
| 763 | if built_with_use dev-db/mysql minimal ; then |
734 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 764 | die "Minimal builds do NOT include the MySQL server" |
735 | die "Minimal builds do NOT include the MySQL server" |
| 765 | fi |
736 | fi |
| 766 | |
737 | |
| 767 | local pwd1="a" |
738 | local pwd1="a" |
| 768 | local pwd2="b" |
739 | local pwd2="b" |
| … | |
… | |
| 804 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
775 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
| 805 | || die "MySQL databases not installed" |
776 | || die "MySQL databases not installed" |
| 806 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
777 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
| 807 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
778 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
| 808 | |
779 | |
| 809 | if mysql_version_is_at_least "4.01.03.00" ; then |
780 | if mysql_version_is_at_least "4.1.3" ; then |
| 810 | options="--skip-ndbcluster" |
781 | options="--skip-ndbcluster" |
| 811 | |
782 | |
| 812 | # Filling timezones, see |
783 | # Filling timezones, see |
| 813 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
784 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 814 | "${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 |
| … | |
… | |
| 863 | wait %1 |
834 | wait %1 |
| 864 | einfo "Done" |
835 | einfo "Done" |
| 865 | } |
836 | } |
| 866 | |
837 | |
| 867 | mysql_pkg_postrm() { |
838 | mysql_pkg_postrm() { |
| 868 | mysql_lib_symlinks |
839 | : #mysql_lib_symlinks |
| 869 | } |
840 | } |