1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2009 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/Attic/mysql.eclass,v 1.4 2006/01/07 16:43:39 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.159 2011/04/21 12:15:19 robbat2 Exp $ |
4 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
5 | # Author: Francesco Riosa <vivo at gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
6 | # Maintainer: Francesco Riosa <vivo at gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
|
|
9 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
7 | |
17 | |
8 | inherit eutils flag-o-matic gnuconfig mysql_fx |
18 | WANT_AUTOCONF="latest" |
|
|
19 | WANT_AUTOMAKE="latest" |
9 | |
20 | |
10 | #major, minor only in the slot |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
11 | SLOT=$(( ${MYSQL_VERSION_ID} / 10000 )) |
|
|
12 | |
22 | |
13 | # shorten the path because the socket path length must be shorter than 107 chars |
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
14 | # and we will run a mysql server during test phase |
24 | # and we will run a mysql server during test phase |
15 | S="${WORKDIR}/${PN}" |
25 | S="${WORKDIR}/mysql" |
16 | |
26 | |
|
|
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
29 | EGIT_PROJECT=mysql-extras |
|
|
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
31 | inherit git |
|
|
32 | fi |
|
|
33 | |
|
|
34 | case "${EAPI:-0}" in |
|
|
35 | 2) |
|
|
36 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
37 | src_unpack src_prepare \ |
|
|
38 | src_configure src_compile \ |
|
|
39 | src_install \ |
|
|
40 | pkg_preinst pkg_postinst \ |
|
|
41 | pkg_config pkg_postrm |
|
|
42 | IUSE_DEFAULT_ON='+' |
|
|
43 | ;; |
|
|
44 | 0 | 1) |
|
|
45 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
46 | src_unpack \ |
|
|
47 | src_compile \ |
|
|
48 | src_install \ |
|
|
49 | pkg_preinst pkg_postinst \ |
|
|
50 | pkg_config pkg_postrm |
|
|
51 | ;; |
|
|
52 | *) |
|
|
53 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
54 | esac |
|
|
55 | |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Upstream MySQL considers the first two parts of the version number to be the |
|
|
60 | # major version. Upgrades that change major version should always run |
|
|
61 | # mysql_upgrade. |
|
|
62 | MYSQL_PV_MAJOR="$(get_version_component_range 1-2 ${PV})" |
|
|
63 | |
|
|
64 | # Cluster is a special case... |
|
|
65 | if [[ "${PN}" == "mysql-cluster" ]]; then |
|
|
66 | case $PV in |
|
|
67 | 6.1*|7.0*|7.1*) MYSQL_PV_MAJOR=5.1 ;; |
|
|
68 | esac |
|
|
69 | fi |
|
|
70 | |
|
|
71 | |
|
|
72 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
73 | # @DESCRIPTION: |
|
|
74 | # MYSQL_VERSION_ID will be: |
|
|
75 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
|
|
76 | # This is an important part, because many of the choices the MySQL ebuild will do |
|
|
77 | # depend on this variable. |
|
|
78 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
79 | # We also strip off upstream's trailing letter that they use to respin tarballs |
|
|
80 | |
|
|
81 | MYSQL_VERSION_ID="" |
|
|
82 | tpv="${PV%[a-z]}" |
|
|
83 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
|
|
84 | for vatom in 0 1 2 3 ; do |
|
|
85 | # pad to length 2 |
|
|
86 | tpv[${vatom}]="00${tpv[${vatom}]}" |
|
|
87 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
|
|
88 | done |
|
|
89 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
|
|
90 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
91 | |
|
|
92 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
93 | # @DESCRIPTION: |
|
|
94 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
95 | # and 0 (no). |
|
|
96 | # Community features are available in mysql-community |
|
|
97 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
98 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
|
|
99 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
100 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
101 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
102 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
103 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
104 | elif [ "${PV#5.4}" != "${PV}" ] ; then |
|
|
105 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
106 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
107 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
108 | elif [ "${PV#6}" != "${PV}" ] ; then |
|
|
109 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
110 | elif [ "${PV#7}" != "${PV}" ] ; then |
|
|
111 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
112 | else |
|
|
113 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
114 | fi |
|
|
115 | |
|
|
116 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
117 | # @DESCRIPTION: |
|
|
118 | # Version of the XTRADB storage engine |
|
|
119 | XTRADB_VER="${XTRADB_VER}" |
|
|
120 | |
|
|
121 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
122 | # @DESCRIPTION: |
|
|
123 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
124 | PERCONA_VER="${PERCONA_VER}" |
|
|
125 | |
|
|
126 | # Be warned, *DEPEND are version-dependant |
|
|
127 | # These are used for both runtime and compiletime |
|
|
128 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
|
|
129 | userland_GNU? ( sys-process/procps ) |
|
|
130 | >=sys-apps/sed-4 |
|
|
131 | >=sys-apps/texinfo-4.7-r1 |
|
|
132 | >=sys-libs/readline-4.1 |
|
|
133 | >=sys-libs/zlib-1.2.3" |
|
|
134 | |
|
|
135 | [[ "${PN}" == "mariadb" ]] \ |
|
|
136 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
137 | |
|
|
138 | # Having different flavours at the same time is not a good idea |
|
|
139 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
|
|
140 | [[ "${i}" == ${PN} ]] || |
|
|
141 | DEPEND="${DEPEND} !dev-db/${i}" |
|
|
142 | done |
|
|
143 | |
|
|
144 | RDEPEND="${DEPEND} |
|
|
145 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
146 | selinux? ( sec-policy/selinux-mysql )" |
|
|
147 | |
|
|
148 | if [ "${EAPI:-0}" = "2" ]; then |
|
|
149 | DEPEND="${DEPEND} static? ( || ( sys-libs/ncurses[static-libs] <=sys-libs/ncurses-5.7-r3 ) )" |
|
|
150 | fi |
|
|
151 | |
|
|
152 | # compile-time-only |
|
|
153 | mysql_version_is_at_least "5.1" \ |
|
|
154 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
155 | |
|
|
156 | # compile-time-only |
|
|
157 | mysql_version_is_at_least "5.1.12" \ |
|
|
158 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
159 | |
|
|
160 | [[ "${PN}" == "mariadb" ]] \ |
|
|
161 | && mysql_version_is_at_least "5.2" \ |
|
|
162 | && DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" |
|
|
163 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
164 | # sphinx? ( app-misc/sphinx )" |
|
|
165 | |
|
|
166 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
|
|
167 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
|
|
168 | |
|
|
169 | # For other stuff to bring us in |
|
|
170 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
|
|
171 | |
|
|
172 | # Work out the default SERVER_URI correctly |
|
|
173 | if [ -z "${SERVER_URI}" ]; then |
|
|
174 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
175 | if [ "${PN}" == "mariadb" ]; then |
|
|
176 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
|
|
177 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
|
|
178 | SERVER_URI=" |
|
|
179 | http://ftp.osuosl.org/pub/mariadb/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
180 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
181 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
182 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
183 | http://mirrors.fe.up.pt/pub/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
184 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
185 | " |
|
|
186 | # The community and cluster builds are on the mirrors |
|
|
187 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
|
|
188 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
189 | URI_DIR="MySQL-Cluster" |
|
|
190 | URI_FILE="mysql-cluster-gpl" |
|
|
191 | else |
|
|
192 | URI_DIR="MySQL" |
|
|
193 | URI_FILE="mysql" |
|
|
194 | fi |
|
|
195 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
196 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
197 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
198 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
199 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
|
|
200 | # The (old) enterprise source is on the primary site only |
|
|
201 | elif [ "${PN}" == "mysql" ]; then |
|
|
202 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
|
|
203 | fi |
|
|
204 | fi |
|
|
205 | |
|
|
206 | # Define correct SRC_URIs |
|
|
207 | SRC_URI="${SERVER_URI}" |
|
|
208 | |
|
|
209 | # Gentoo patches to MySQL |
|
|
210 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
211 | && SRC_URI="${SRC_URI} |
|
|
212 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
213 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
214 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
215 | |
17 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
216 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
18 | HOMEPAGE="http://www.mysql.com/" |
217 | HOMEPAGE="http://www.mysql.com/" |
19 | NEWP="${PN}-${PV/_/-}" |
218 | if [[ "${PN}" == "mariadb" ]]; then |
20 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
219 | HOMEPAGE="http://askmonty.org/" |
21 | mirror://gentoo/mysql-extras-20051220.tar.bz2" |
220 | DESCRIPTION="MariaDB is a MySQL fork with 3rd-party patches and additional storage engines merged." |
|
|
221 | fi |
|
|
222 | if [[ "${PN}" == "mysql-community" ]]; then |
|
|
223 | DESCRIPTION="${DESCRIPTION} (obsolete, move to dev-db/mysql)" |
|
|
224 | fi |
22 | LICENSE="GPL-2" |
225 | LICENSE="GPL-2" |
23 | IUSE="big-tables berkdb debug minimal perl selinux ssl static" |
226 | SLOT="0" |
24 | RESTRICT="primaryuri" |
227 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
25 | DEPEND="app-admin/eselect-mysql" |
|
|
26 | |
228 | |
27 | mysql_version_is_at_least "4.01.03.00" \ |
229 | mysql_version_is_at_least "4.1" \ |
|
|
230 | && IUSE="${IUSE} latin1" |
|
|
231 | |
|
|
232 | if mysql_version_is_at_least "4.1.3" ; then |
28 | && IUSE="${IUSE} cluster utf8 extraengine" |
233 | IUSE="${IUSE} extraengine" |
|
|
234 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
235 | IUSE="${IUSE} cluster" |
|
|
236 | fi |
|
|
237 | fi |
29 | |
238 | |
|
|
239 | mysql_version_is_at_least "5.0" \ |
|
|
240 | || IUSE="${IUSE} raid" |
|
|
241 | |
30 | mysql_version_is_at_least "5.00.18.00" \ |
242 | mysql_version_is_at_least "5.0.18" \ |
31 | && IUSE="${IUSE} max-idx-128" |
243 | && IUSE="${IUSE} max-idx-128" |
32 | |
244 | |
33 | mysql_version_is_at_least "5.01.00.00" \ |
245 | mysql_version_is_at_least "5.1" \ |
|
|
246 | || IUSE="${IUSE} berkdb" |
|
|
247 | |
|
|
248 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
249 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
250 | |
|
|
251 | [[ "${PN}" == "mariadb" ]] \ |
|
|
252 | && IUSE="${IUSE} libevent" |
|
|
253 | |
|
|
254 | [[ "${PN}" == "mariadb" ]] \ |
|
|
255 | && mysql_version_is_at_least "5.2" \ |
|
|
256 | && IUSE="${IUSE} oqgraph" |
|
|
257 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
258 | #&& IUSE="${IUSE} oqgraph sphinx" |
|
|
259 | |
|
|
260 | # MariaDB has integrated PBXT |
|
|
261 | # PBXT_VERSION means that we have a PBXT patch for this PV |
|
|
262 | # PBXT was only introduced after 5.1.12 |
|
|
263 | pbxt_patch_available() { |
|
|
264 | [[ "${PN}" != "mariadb" ]] \ |
|
|
265 | && mysql_version_is_at_least "5.1.12" \ |
|
|
266 | && [[ -n "${PBXT_VERSION}" ]] |
|
|
267 | return $? |
|
|
268 | } |
|
|
269 | |
|
|
270 | pbxt_available() { |
|
|
271 | pbxt_patch_available || [[ "${PN}" == "mariadb" ]] |
|
|
272 | return $? |
|
|
273 | } |
|
|
274 | |
|
|
275 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
276 | # MariaDB has integrated XtraDB |
|
|
277 | # XTRADB_VERS means that we have a XTRADB patch for this PV |
|
|
278 | # XTRADB was only introduced after 5.1.26 |
|
|
279 | xtradb_patch_available() { |
|
|
280 | [[ "${PN}" != "mariadb" ]] \ |
|
|
281 | && mysql_version_is_at_least "5.1.26" \ |
|
|
282 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] |
|
|
283 | return $? |
|
|
284 | } |
|
|
285 | |
|
|
286 | |
|
|
287 | pbxt_patch_available \ |
|
|
288 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
289 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
290 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
|
|
291 | |
|
|
292 | # PBXT_NEWSTYLE means pbxt is in storage/ and gets enabled as other plugins |
|
|
293 | # vs. built outside the dir |
|
|
294 | pbxt_available \ |
|
|
295 | && IUSE="${IUSE} pbxt" \ |
|
|
296 | && mysql_version_is_at_least "5.1.40" \ |
|
|
297 | && PBXT_NEWSTYLE=1 |
|
|
298 | |
|
|
299 | xtradb_patch_available \ |
|
|
300 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
301 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
302 | && XTRADB_SRC_B1="http://www.percona.com/" \ |
|
|
303 | && XTRADB_SRC_B2="${XTRADB_SRC_B1}/percona-builds/" \ |
|
|
304 | && XTRADB_SRC_URI1="${XTRADB_SRC_B2}/Percona-Server/Percona-Server-${XTRADB_SRC_URI_COMMON}" \ |
|
|
305 | && XTRADB_SRC_URI2="${XTRADB_SRC_B2}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
306 | && XTRADB_SRC_URI3="${XTRADB_SRC_B1}/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
307 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} ${XTRADB_SRC_URI3} )" \ |
34 | && IUSE="${IUSE} innodb" |
308 | && IUSE="${IUSE} xtradb" |
35 | |
309 | |
36 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_config pkg_postrm |
310 | # |
|
|
311 | # HELPER FUNCTIONS: |
|
|
312 | # |
37 | |
313 | |
|
|
314 | # @FUNCTION: mysql_disable_test |
|
|
315 | # @DESCRIPTION: |
|
|
316 | # Helper function to disable specific tests. |
|
|
317 | mysql_disable_test() { |
|
|
318 | local rawtestname testname testsuite reason mysql_disable_file |
|
|
319 | rawtestname="${1}" ; shift |
|
|
320 | reason="${@}" |
|
|
321 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
322 | |
|
|
323 | testsuite="${rawtestname/.*}" |
|
|
324 | testname="${rawtestname/*.}" |
|
|
325 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
326 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
|
|
327 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
328 | |
|
|
329 | # ${S}/mysql-tests/t/disabled.def |
|
|
330 | # |
|
|
331 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
332 | # |
|
|
333 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
334 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
335 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
336 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
337 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
338 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
339 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
340 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
341 | if [ -n "${testsuite}" ]; then |
|
|
342 | for mysql_disable_file in \ |
|
|
343 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
344 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
345 | FAILED ; do |
|
|
346 | [ -f "${mysql_disable_file}" ] && break |
|
|
347 | done |
|
|
348 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
349 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
350 | else |
|
|
351 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
352 | fi |
|
|
353 | fi |
|
|
354 | } |
|
|
355 | |
|
|
356 | # @FUNCTION: mysql_init_vars |
|
|
357 | # @DESCRIPTION: |
|
|
358 | # void mysql_init_vars() |
|
|
359 | # Initialize global variables |
|
|
360 | # 2005-11-19 <vivo@gentoo.org> |
|
|
361 | mysql_init_vars() { |
|
|
362 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
|
|
363 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
|
|
364 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
|
|
365 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
|
|
366 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
|
|
367 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
|
|
368 | |
|
|
369 | if [[ -z "${MY_DATADIR}" ]] ; then |
|
|
370 | MY_DATADIR="" |
|
|
371 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
|
|
372 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
373 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
374 | | tail -n1` |
|
|
375 | if [[ -z "${MY_DATADIR}" ]] ; then |
|
|
376 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
|
|
377 | | sed -e 's/.*=\s*//' \ |
|
|
378 | | tail -n1` |
|
|
379 | fi |
|
|
380 | fi |
|
|
381 | if [[ -z "${MY_DATADIR}" ]] ; then |
|
|
382 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
|
|
383 | einfo "Using default MY_DATADIR" |
|
|
384 | fi |
|
|
385 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
|
|
386 | |
|
|
387 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
|
|
388 | if [[ -e "${MY_DATADIR}" ]] ; then |
|
|
389 | # If you get this and you're wondering about it, see bug #207636 |
|
|
390 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
391 | elog "A new one will not be created." |
|
|
392 | PREVIOUS_DATADIR="yes" |
|
|
393 | else |
|
|
394 | PREVIOUS_DATADIR="no" |
|
|
395 | fi |
|
|
396 | export PREVIOUS_DATADIR |
|
|
397 | fi |
|
|
398 | else |
|
|
399 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
400 | local new_MY_DATADIR |
|
|
401 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
402 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
403 | | tail -n1` |
|
|
404 | |
|
|
405 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
406 | ewarn "MySQL MY_DATADIR has changed" |
|
|
407 | ewarn "from ${MY_DATADIR}" |
|
|
408 | ewarn "to ${new_MY_DATADIR}" |
|
|
409 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
410 | fi |
|
|
411 | fi |
|
|
412 | fi |
|
|
413 | |
|
|
414 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
|
|
415 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
416 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
417 | fi |
|
|
418 | |
|
|
419 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
|
|
420 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
|
|
421 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
|
|
422 | } |
|
|
423 | |
|
|
424 | configure_minimal() { |
|
|
425 | # These are things we exclude from a minimal build, please |
|
|
426 | # note that the server actually does get built and installed, |
|
|
427 | # but we then delete it before packaging. |
|
|
428 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
|
|
429 | |
|
|
430 | for i in ${minimal_exclude_list} ; do |
|
|
431 | myconf="${myconf} --without-${i}" |
|
|
432 | done |
|
|
433 | myconf="${myconf} --with-extra-charsets=none" |
|
|
434 | myconf="${myconf} --enable-local-infile" |
|
|
435 | |
|
|
436 | if use static ; then |
|
|
437 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
438 | myconf="${myconf} --disable-shared --with-pic" |
|
|
439 | else |
|
|
440 | myconf="${myconf} --enable-shared --enable-static" |
|
|
441 | fi |
|
|
442 | |
|
|
443 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
444 | myconf="${myconf} --with-charset=utf8" |
|
|
445 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
446 | else |
|
|
447 | myconf="${myconf} --with-charset=latin1" |
|
|
448 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
449 | fi |
|
|
450 | } |
|
|
451 | |
|
|
452 | configure_common() { |
|
|
453 | myconf="${myconf} $(use_with big-tables)" |
|
|
454 | myconf="${myconf} --enable-local-infile" |
|
|
455 | myconf="${myconf} --with-extra-charsets=all" |
|
|
456 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
457 | myconf="${myconf} --with-server" |
|
|
458 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
459 | myconf="${myconf} --without-libwrap" |
|
|
460 | |
|
|
461 | if use static ; then |
|
|
462 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
463 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
464 | myconf="${myconf} --disable-shared --with-pic" |
|
|
465 | else |
|
|
466 | myconf="${myconf} --enable-shared --enable-static" |
|
|
467 | fi |
|
|
468 | |
|
|
469 | if use debug ; then |
|
|
470 | myconf="${myconf} --with-debug=full" |
|
|
471 | else |
|
|
472 | myconf="${myconf} --without-debug" |
|
|
473 | mysql_version_is_at_least "4.1.3" \ |
|
|
474 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
|
|
475 | && myconf="${myconf} --without-ndb-debug" |
|
|
476 | fi |
|
|
477 | |
|
|
478 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
479 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
480 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
481 | ewarn "You MUST file bugs without these variables set." |
|
|
482 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
483 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
|
|
484 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
485 | myconf="${myconf} --with-charset=utf8" |
|
|
486 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
487 | else |
|
|
488 | myconf="${myconf} --with-charset=latin1" |
|
|
489 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
490 | fi |
|
|
491 | |
|
|
492 | if use embedded ; then |
|
|
493 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
494 | myconf="${myconf} --with-embedded-server" |
|
|
495 | else |
|
|
496 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
497 | myconf="${myconf} --without-embedded-server" |
|
|
498 | fi |
|
|
499 | |
|
|
500 | } |
|
|
501 | |
|
|
502 | configure_40_41_50() { |
|
|
503 | myconf="${myconf} $(use_with perl bench)" |
|
|
504 | myconf="${myconf} --enable-assembler" |
|
|
505 | myconf="${myconf} --with-extra-tools" |
|
|
506 | myconf="${myconf} --with-innodb" |
|
|
507 | myconf="${myconf} --without-readline" |
|
|
508 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
509 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
|
|
510 | |
|
|
511 | # --with-vio is not needed anymore, it's on by default and |
|
|
512 | # has been removed from configure |
|
|
513 | # Apply to 4.x and 5.0.[0-3] |
|
|
514 | if use ssl ; then |
|
|
515 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
516 | fi |
|
|
517 | |
|
|
518 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
519 | if use berkdb ; then |
|
|
520 | elog "Berkeley DB support was disabled due to build failures" |
|
|
521 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
522 | elog "if you want it again. Gentoo bug #224067." |
|
|
523 | fi |
|
|
524 | myconf="${myconf} --without-berkeley-db" |
|
|
525 | elif use berkdb ; then |
|
|
526 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
527 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
528 | # It comes down to non-64-bit safety problems. |
|
|
529 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
530 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
531 | myconf="${myconf} --without-berkeley-db" |
|
|
532 | else |
|
|
533 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
534 | fi |
|
|
535 | else |
|
|
536 | myconf="${myconf} --without-berkeley-db" |
|
|
537 | fi |
|
|
538 | |
|
|
539 | if mysql_version_is_at_least "4.1.3" ; then |
|
|
540 | myconf="${myconf} --with-geometry" |
|
|
541 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
542 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
543 | fi |
|
|
544 | fi |
|
|
545 | |
|
|
546 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
|
|
547 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
548 | myconf="${myconf} --with-archive-storage-engine" |
|
|
549 | |
|
|
550 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
551 | myconf="${myconf} --with-csv-storage-engine" |
|
|
552 | |
|
|
553 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
554 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
555 | |
|
|
556 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
557 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
558 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
559 | if mysql_version_is_at_least "5.0.3" ; then |
|
|
560 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
561 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
562 | myconf="${myconf} --with-federated-storage-engine" |
|
|
563 | fi |
|
|
564 | fi |
|
|
565 | |
|
|
566 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
567 | myconf="${myconf} `use_enable community community-features`" |
|
|
568 | if use community; then |
|
|
569 | myconf="${myconf} `use_enable profiling`" |
|
|
570 | else |
|
|
571 | myconf="${myconf} --disable-profiling" |
|
|
572 | fi |
|
|
573 | fi |
|
|
574 | |
|
|
575 | mysql_version_is_at_least "5.0.18" \ |
|
|
576 | && use max-idx-128 \ |
|
|
577 | && myconf="${myconf} --with-max-indexes=128" |
|
|
578 | } |
|
|
579 | |
|
|
580 | configure_51() { |
|
|
581 | # TODO: !!!! readd --without-readline |
|
|
582 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
583 | # readline.h instead of history.h |
|
|
584 | myconf="${myconf} $(use_with ssl ssl /usr)" |
|
|
585 | myconf="${myconf} --enable-assembler" |
|
|
586 | myconf="${myconf} --with-geometry" |
|
|
587 | myconf="${myconf} --with-readline" |
|
|
588 | myconf="${myconf} --with-zlib-dir=/usr/" |
|
|
589 | myconf="${myconf} --without-pstack" |
|
|
590 | myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin" |
|
|
591 | |
|
|
592 | # This is an explict die here, because if we just forcibly disable it, then the |
|
|
593 | # user's data is not accessible. |
|
|
594 | use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently" |
|
|
595 | #use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
596 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
597 | myconf="${myconf} $(use_enable community community-features)" |
|
|
598 | if use community; then |
|
|
599 | myconf="${myconf} $(use_enable profiling)" |
|
|
600 | else |
|
|
601 | myconf="${myconf} --disable-profiling" |
|
|
602 | fi |
|
|
603 | fi |
|
|
604 | |
|
|
605 | # Scan for all available plugins |
|
|
606 | local plugins_avail="$( |
|
|
607 | LANG=C \ |
|
|
608 | find "${S}" \ |
|
|
609 | \( \ |
|
|
610 | -name 'plug.in' \ |
|
|
611 | -o -iname 'configure.in' \ |
|
|
612 | -o -iname 'configure.ac' \ |
|
|
613 | \) \ |
|
|
614 | -print0 \ |
|
|
615 | | xargs -0 sed -r -n \ |
|
|
616 | -e '/^MYSQL_STORAGE_ENGINE/{ |
|
|
617 | s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ; |
|
|
618 | s~^([^ ]+).*~\1~gp; |
|
|
619 | }' \ |
|
|
620 | | tr -s '\n' ' ' |
|
|
621 | )" |
|
|
622 | |
|
|
623 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
624 | # like configuration=none |
|
|
625 | # This base set are required, and will always be statically built. |
|
|
626 | local plugins_sta="csv myisam myisammrg heap" |
|
|
627 | local plugins_dyn="" |
|
|
628 | local plugins_dis="example ibmdb2i" |
|
|
629 | |
|
|
630 | # These aren't actually required by the base set, but are really useful: |
|
|
631 | plugins_sta="${plugins_sta} archive blackhole" |
|
|
632 | |
|
|
633 | # default in 5.5.4 |
|
|
634 | if mysql_version_is_at_least "5.5.4" ; then |
|
|
635 | plugins_sta="${plugins_sta} partition" |
|
|
636 | fi |
|
|
637 | # Now the extras |
|
|
638 | if use extraengine ; then |
|
|
639 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
640 | # not added yet: ibmdb2i |
|
|
641 | # Not supporting as examples: example,daemon_example,ftexample |
|
|
642 | plugins_sta="${plugins_sta} partition" |
|
|
643 | |
|
|
644 | if [[ "${PN}" != "mariadb" ]] ; then |
|
|
645 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
646 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
647 | plugins_dyn="${plugins_sta} federated" |
|
|
648 | else |
|
|
649 | elog "MariaDB includes the FederatedX engine. Be sure to read" |
|
|
650 | elog "http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine" |
|
|
651 | plugins_dyn="${plugins_sta} federatedx" |
|
|
652 | fi |
|
|
653 | else |
|
|
654 | plugins_dis="${plugins_dis} partition federated" |
|
|
655 | fi |
|
|
656 | |
|
|
657 | # Upstream specifically requests that InnoDB always be built: |
|
|
658 | # - innobase, innodb_plugin |
|
|
659 | # Build falcon if available for 6.x series. |
|
|
660 | for i in innobase falcon ; do |
|
|
661 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
662 | done |
|
|
663 | for i in innodb_plugin ; do |
|
|
664 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
|
|
665 | done |
|
|
666 | |
|
|
667 | # like configuration=max-no-ndb |
|
|
668 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
|
|
669 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
670 | plugins_dis="${plugins_dis//partition}" |
|
|
671 | myconf="${myconf} --with-ndb-binlog" |
|
|
672 | else |
|
|
673 | plugins_dis="${plugins_dis} ndbcluster" |
|
|
674 | fi |
|
|
675 | |
|
|
676 | if [[ "${PN}" == "mariadb" ]] ; then |
|
|
677 | # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not |
|
|
678 | # caught above. |
|
|
679 | # This is not optional, without it several upstream testcases fail. |
|
|
680 | # Also strongly recommended by upstream. |
|
|
681 | if [[ "${PV}" < "5.2.0" ]] ; then |
|
|
682 | myconf="${myconf} --with-maria-tmp-tables" |
|
|
683 | plugins_sta="${plugins_sta} maria" |
|
|
684 | else |
|
|
685 | myconf="${myconf} --with-aria-tmp-tables" |
|
|
686 | plugins_sta="${plugins_sta} aria" |
|
|
687 | fi |
|
|
688 | |
|
|
689 | [ -e "${S}"/storage/innobase ] || [ -e "${S}"/storage/xtradb ] || |
|
|
690 | die "The ${P} package doesn't provide innobase nor xtradb" |
|
|
691 | |
|
|
692 | for i in innobase xtradb ; do |
|
|
693 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
694 | done |
|
|
695 | |
|
|
696 | myconf="${myconf} $(use_with libevent)" |
|
|
697 | |
|
|
698 | if mysql_version_is_at_least "5.2" ; then |
|
|
699 | #This should include sphinx, but the 5.2.4 archive forgot the plug.in file |
|
|
700 | #for i in oqgraph sphinx ; do |
|
|
701 | for i in oqgraph ; do |
|
|
702 | use ${i} \ |
|
|
703 | && plugins_dyn="${plugins_dyn} ${i}" \ |
|
|
704 | || plugins_dis="${plugins_dis} ${i}" |
|
|
705 | done |
|
|
706 | fi |
|
|
707 | fi |
|
|
708 | |
|
|
709 | if pbxt_available && [[ "${PBXT_NEWSTYLE}" == "1" ]]; then |
|
|
710 | use pbxt \ |
|
|
711 | && plugins_dyn="${plugins_dyn} pbxt" \ |
|
|
712 | || plugins_dis="${plugins_dis} pbxt" |
|
|
713 | fi |
|
|
714 | |
|
|
715 | use static && \ |
|
|
716 | plugins_sta="${plugins_sta} ${plugins_dyn}" && \ |
|
|
717 | plugins_dyn="" |
|
|
718 | |
|
|
719 | einfo "Available plugins: ${plugins_avail}" |
|
|
720 | einfo "Dynamic plugins: ${plugins_dyn}" |
|
|
721 | einfo "Static plugins: ${plugins_sta}" |
|
|
722 | einfo "Disabled plugins: ${plugins_dis}" |
|
|
723 | |
|
|
724 | # These are the static plugins |
|
|
725 | myconf="${myconf} --with-plugins=${plugins_sta// /,}" |
|
|
726 | # And the disabled ones |
|
|
727 | for i in ${plugins_dis} ; do |
|
|
728 | myconf="${myconf} --without-plugin-${i}" |
|
|
729 | done |
|
|
730 | } |
|
|
731 | |
|
|
732 | pbxt_src_configure() { |
|
|
733 | mysql_init_vars |
|
|
734 | |
|
|
735 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
736 | |
|
|
737 | einfo "Reconfiguring dir '${PWD}'" |
|
|
738 | eautoreconf |
|
|
739 | |
|
|
740 | local myconf="" |
|
|
741 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
|
|
742 | use debug && myconf="${myconf} --with-debug=full" |
|
|
743 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
744 | } |
|
|
745 | |
|
|
746 | pbxt_src_compile() { |
|
|
747 | |
|
|
748 | # Be backwards compatible for now |
|
|
749 | if [[ $EAPI != 2 ]]; then |
|
|
750 | pbxt_src_configure |
|
|
751 | fi |
|
|
752 | # TODO: is it safe/needed to use emake here ? |
|
|
753 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
754 | |
|
|
755 | popd |
|
|
756 | # TODO: modify test suite for PBXT |
|
|
757 | } |
|
|
758 | |
|
|
759 | pbxt_src_install() { |
|
|
760 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
761 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
|
|
762 | popd |
|
|
763 | } |
|
|
764 | |
|
|
765 | # |
|
|
766 | # EBUILD FUNCTIONS |
|
|
767 | # |
|
|
768 | # @FUNCTION: mysql_pkg_setup |
|
|
769 | # @DESCRIPTION: |
|
|
770 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
771 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
772 | # check for conflicting use flags |
|
|
773 | # create new user and group for mysql |
|
|
774 | # warn about deprecated features |
38 | mysql_pkg_setup() { |
775 | mysql_pkg_setup() { |
|
|
776 | if hasq test ${FEATURES} ; then |
|
|
777 | if ! use minimal ; then |
|
|
778 | if [[ $UID -eq 0 ]]; then |
|
|
779 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
780 | fi |
|
|
781 | fi |
|
|
782 | fi |
39 | |
783 | |
|
|
784 | # bug 350844 |
|
|
785 | case "${EAPI:-0}" in |
|
|
786 | 0 | 1) |
|
|
787 | if use static && !built_with_use sys-libs/ncurses static-libs; then |
|
|
788 | die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" |
|
|
789 | fi |
|
|
790 | ;; |
|
|
791 | esac |
|
|
792 | |
|
|
793 | # Check for USE flag problems in pkg_setup |
|
|
794 | if use static && use ssl ; then |
|
|
795 | M="MySQL does not support being built statically with SSL support enabled!" |
|
|
796 | eerror "${M}" |
|
|
797 | die "${M}" |
|
|
798 | fi |
|
|
799 | |
|
|
800 | if mysql_version_is_at_least "5.1.51" \ |
|
|
801 | && ! mysql_version_is_at_least "5.2" \ |
|
|
802 | && use debug ; then |
|
|
803 | # Also in package.use.mask |
|
|
804 | die "Bug #344885: Upstream has broken USE=debug for 5.1 series >=5.1.51" |
|
|
805 | fi |
|
|
806 | |
|
|
807 | if ! mysql_version_is_at_least "5.0" \ |
|
|
808 | && use raid \ |
|
|
809 | && use static ; then |
|
|
810 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
811 | eerror "with RAID support enabled." |
|
|
812 | die "USE flags 'raid' and 'static' conflict!" |
|
|
813 | fi |
|
|
814 | |
|
|
815 | if mysql_version_is_at_least "4.1.3" \ |
|
|
816 | && ( use cluster || use extraengine || use embedded ) \ |
|
|
817 | && use minimal ; then |
|
|
818 | M="USE flags 'cluster', 'extraengine', 'embedded' conflict with 'minimal' USE flag!" |
|
|
819 | eerror "${M}" |
|
|
820 | die "${M}" |
|
|
821 | fi |
|
|
822 | |
|
|
823 | if mysql_version_is_at_least "5.1" \ |
|
|
824 | && xtradb_patch_available \ |
|
|
825 | && use xtradb \ |
|
|
826 | && use embedded ; then |
|
|
827 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
|
|
828 | eerror "${M}" |
|
|
829 | die "${M}" |
|
|
830 | fi |
|
|
831 | |
|
|
832 | # Bug #290570, 284946, 307251 |
|
|
833 | # Upstream changes made us need a fairly new GCC4. |
|
|
834 | # But only for 5.0.8[3-6]! |
|
|
835 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
|
|
836 | GCC_VER=$(gcc-version) |
|
|
837 | case ${GCC_VER} in |
|
|
838 | 2*|3*|4.0|4.1|4.2) |
|
|
839 | eerror "Some releases of MySQL required a very new GCC, and then" |
|
|
840 | eerror "later release relaxed that requirement again. Either pick a" |
|
|
841 | eerror "MySQL >=5.0.87, or use a newer GCC." |
|
|
842 | die "Active GCC too old!" ;; |
|
|
843 | esac |
|
|
844 | fi |
|
|
845 | |
|
|
846 | # This should come after all of the die statements |
40 | enewgroup mysql 60 || die "problem adding group mysql" |
847 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
41 | enewuser mysql 60 -1 /dev/null mysql \ |
848 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
42 | || die "problem adding user mysql" |
|
|
43 | } |
|
|
44 | |
849 | |
|
|
850 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
851 | && use berkdb \ |
|
|
852 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
853 | |
|
|
854 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
855 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
856 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
857 | ewarn "future, it will be disabled from building." |
|
|
858 | ewarn "" |
|
|
859 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
860 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
861 | ewarn "development." |
|
|
862 | fi |
|
|
863 | } |
|
|
864 | |
|
|
865 | # @FUNCTION: mysql_src_unpack |
|
|
866 | # @DESCRIPTION: |
|
|
867 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
45 | mysql_src_unpack() { |
868 | mysql_src_unpack() { |
46 | |
869 | # Initialize the proper variables first |
47 | mysql_init_vars |
870 | mysql_init_vars |
48 | |
871 | |
49 | if useq static && useq ssl; then |
|
|
50 | local msg="MySQL does not support building statically with SSL support" |
|
|
51 | eerror "${msg}" |
|
|
52 | die "${msg}" |
|
|
53 | fi |
|
|
54 | |
|
|
55 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
56 | && useq cluster \ |
|
|
57 | || useq extraengine \ |
|
|
58 | && useq minimal ; then |
|
|
59 | die "USEs cluster, extraengine conflicts with \"minimal\"" |
|
|
60 | fi |
|
|
61 | |
|
|
62 | unpack ${A} || die |
872 | unpack ${A} |
|
|
873 | # Grab the patches |
|
|
874 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
63 | |
875 | |
64 | mv -f "${WORKDIR}/${NEWP}" "${S}" |
876 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
877 | |
|
|
878 | # Be backwards compatible for now |
|
|
879 | case ${EAPI:-0} in |
|
|
880 | 2) : ;; |
|
|
881 | 0 | 1) mysql_src_prepare ;; |
|
|
882 | esac |
|
|
883 | } |
|
|
884 | |
|
|
885 | # @FUNCTION: mysql_src_prepare |
|
|
886 | # @DESCRIPTION: |
|
|
887 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
888 | mysql_src_prepare() { |
65 | cd "${S}" |
889 | cd "${S}" |
66 | |
890 | |
|
|
891 | # Apply the patches for this MySQL version |
67 | EPATCH_SUFFIX="patch" |
892 | EPATCH_SUFFIX="patch" |
68 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
893 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
894 | # Clean out old items |
|
|
895 | rm -f "${EPATCH_SOURCE}"/* |
|
|
896 | # Now link in right patches |
69 | mysql_mv_patches |
897 | mysql_mv_patches |
70 | epatch || die "failed to apply all patches" |
898 | # And apply |
|
|
899 | epatch |
71 | |
900 | |
72 | # additional check, remove bundled zlib |
901 | # last -fPIC fixup, per bug #305873 |
|
|
902 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
903 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
|
|
904 | |
|
|
905 | # Additional checks, remove bundled zlib (Cluster needs this, for static |
|
|
906 | # memory management in zlib, leave available for Cluster) |
|
|
907 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
73 | rm -f "${S}/zlib/"*.[ch] |
908 | rm -f "${S}/zlib/"*.[ch] |
74 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
909 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
910 | fi |
75 | rm -f scripts/mysqlbug |
911 | rm -f "scripts/mysqlbug" |
76 | |
|
|
77 | # Multilib issue with zlib detection |
|
|
78 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
79 | && sed -i -e "s:zlib_dir/lib:zlib_dir/$(get_libdir):g" \ |
|
|
80 | "${S}/config/ac-macros/zlib.m4" |
|
|
81 | |
912 | |
82 | # Make charsets install in the right place |
913 | # Make charsets install in the right place |
83 | find . -name 'Makefile.am' \ |
914 | find . -name 'Makefile.am' \ |
84 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
915 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
85 | |
916 | |
86 | # Manage mysqlmanager |
|
|
87 | mysql_version_is_at_least "5.00.15.00" \ |
917 | if mysql_version_is_at_least "4.1" ; then |
88 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
|
|
89 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
90 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
91 | |
|
|
92 | # remove what need to be recreated, so we are sure it's actually done |
918 | # Remove what needs to be recreated, so we're sure it's actually done |
93 | find . -name Makefile -o -name Makefile.in -o -name configure -exec rm -f {} \; |
919 | einfo "Cleaning up old buildscript files" |
|
|
920 | find . -name Makefile \ |
|
|
921 | -o -name Makefile.in \ |
|
|
922 | -o -name configure \ |
|
|
923 | -exec rm -f {} \; |
94 | rm ltmain.sh |
924 | rm -f "ltmain.sh" |
|
|
925 | rm -f "scripts/mysqlbug" |
|
|
926 | fi |
95 | |
927 | |
96 | local rebuilddirlist d buildstep bdbdir |
928 | local rebuilddirlist d |
97 | |
929 | |
|
|
930 | if xtradb_patch_available && use xtradb ; then |
|
|
931 | einfo "Adding storage engine: Percona XtraDB (replacing InnoDB)" |
|
|
932 | pushd "${S}"/storage >/dev/null |
|
|
933 | i="innobase" |
|
|
934 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
935 | # Have we been here already? |
|
|
936 | [ -d "${o}" ] && rm -f "${i}" |
|
|
937 | # Or maybe we haven't |
|
|
938 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
939 | cp -ral "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
940 | popd >/dev/null |
|
|
941 | fi |
|
|
942 | |
|
|
943 | if pbxt_patch_available && [[ "${PBXT_NEWSTYLE}" == "1" ]] && use pbxt ; then |
|
|
944 | einfo "Adding storage engine: PBXT" |
|
|
945 | pushd "${S}"/storage >/dev/null |
|
|
946 | i='pbxt' |
|
|
947 | [ -d "${i}" ] && rm -rf "${i}" |
|
|
948 | cp -ral "${WORKDIR}/${PBXT_P}" "${i}" |
|
|
949 | popd >/dev/null |
|
|
950 | fi |
|
|
951 | |
98 | if mysql_version_is_at_least "5.01.00.00" ; then |
952 | if mysql_version_is_at_least "5.1.12" ; then |
99 | rebuilddirlist=". storage/innobase" |
953 | rebuilddirlist="." |
100 | bdbdir='storage/bdb/dist' |
954 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
955 | #einfo "Updating innobase cmake" |
|
|
956 | ## TODO: check this with a cmake expert |
|
|
957 | #cmake \ |
|
|
958 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
959 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
|
|
960 | # "storage/innobase" |
101 | else |
961 | else |
102 | rebuilddirlist=". innobase" |
962 | rebuilddirlist=". innobase" |
103 | bdbdir='bdb/dist' |
|
|
104 | fi |
963 | fi |
105 | |
964 | |
106 | for d in ${rebuilddirlist}; do |
965 | for d in ${rebuilddirlist} ; do |
107 | einfo "reconfiguring dir \"${d}\"" |
966 | einfo "Reconfiguring dir '${d}'" |
108 | pushd "${d}" &>/dev/null |
967 | pushd "${d}" &>/dev/null |
109 | for buildstep in \ |
968 | eautoreconf |
110 | 'libtoolize --copy --force' \ |
|
|
111 | 'aclocal --force' \ |
|
|
112 | 'autoheader --force -Wnone' \ |
|
|
113 | 'autoconf --force -Wnone' \ |
|
|
114 | 'automake --force --force-missing -Wnone' \ |
|
|
115 | 'gnuconfig_update' |
|
|
116 | do |
|
|
117 | einfo "performing ${buildstep}" |
|
|
118 | ${buildstep} || die "failed ${buildstep/ */} dir \"${d}\"" |
|
|
119 | done |
|
|
120 | popd &>/dev/null |
969 | popd &>/dev/null |
121 | done |
970 | done |
122 | |
971 | |
123 | if ! mysql_check_version_range "5.01.00.00 to 5.01.06.99" ; then |
972 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
|
|
973 | && use berkdb ; then |
|
|
974 | einfo "Fixing up berkdb buildsystem" |
124 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
975 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
125 | pushd "${bdbdir}" && sh s_all || die "failed bdb reconfigure" &>/dev/null |
976 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
977 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
978 | #These files exist only with libtool-2*, and need to be included. |
|
|
979 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
980 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
981 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
982 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
983 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
984 | fi |
|
|
985 | pushd "bdb/dist" &>/dev/null |
|
|
986 | sh s_all \ |
|
|
987 | || die "Failed bdb reconfigure" |
126 | popd &>/dev/null |
988 | popd &>/dev/null |
127 | fi |
989 | fi |
128 | |
|
|
129 | } |
990 | } |
130 | |
991 | |
131 | src_compile() { |
992 | # @FUNCTION: mysql_src_configure |
132 | |
993 | # @DESCRIPTION: |
|
|
994 | # Configure mysql to build the code for Gentoo respecting the use flags. |
|
|
995 | mysql_src_configure() { |
|
|
996 | # Make sure the vars are correctly initialized |
133 | mysql_init_vars |
997 | mysql_init_vars |
|
|
998 | |
|
|
999 | # $myconf is modified by the configure_* functions |
134 | local myconf |
1000 | local myconf="" |
135 | |
1001 | |
136 | if useq static ; then |
1002 | if use minimal ; then |
137 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
1003 | configure_minimal |
138 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
139 | myconf="${myconf} --disable-shared" |
|
|
140 | else |
1004 | else |
141 | myconf="${myconf} --enable-shared --enable-static" |
1005 | configure_common |
142 | fi |
|
|
143 | |
|
|
144 | #myconf="${myconf} `use_with tcpd libwrap`" |
|
|
145 | myconf="${myconf} --without-libwrap" |
|
|
146 | |
|
|
147 | if useq ssl ; then |
|
|
148 | # --with-vio is not needed anymore, it's on by default and |
|
|
149 | # has been removed from configure |
|
|
150 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
151 | if mysql_version_is_at_least "5.00.06.00" ; then |
1006 | if mysql_version_is_at_least "5.1.10" ; then |
152 | # yassl-0.96 is young break with gcc-4.0 || amd64 |
1007 | configure_51 |
153 | #myconf="${myconf} --with-yassl" |
|
|
154 | myconf="${myconf} --with-openssl" |
|
|
155 | else |
1008 | else |
156 | myconf="${myconf} --with-openssl" |
1009 | configure_40_41_50 |
157 | fi |
|
|
158 | else |
|
|
159 | myconf="${myconf} --without-openssl" |
|
|
160 | fi |
|
|
161 | |
|
|
162 | if useq debug; then |
|
|
163 | myconf="${myconf} --with-debug=full" |
|
|
164 | else |
|
|
165 | myconf="${myconf} --without-debug" |
|
|
166 | mysql_version_is_at_least "4.01.03.00" && useq cluster && myconf="${myconf} --without-ndb-debug" |
|
|
167 | fi |
|
|
168 | |
|
|
169 | # benchmarking stuff needs perl |
|
|
170 | # and shouldn't be bothered with on minimal builds |
|
|
171 | if useq perl && ! useq minimal; then |
|
|
172 | myconf="${myconf} --with-bench" |
|
|
173 | else |
|
|
174 | myconf="${myconf} --without-bench" |
|
|
175 | fi |
|
|
176 | |
|
|
177 | # these are things we exclude from a minimal build |
|
|
178 | # note that the server actually does get built and installed |
|
|
179 | # but we then delete it before packaging. |
|
|
180 | local minimal_exclude_list="server embedded-server extra-tools innodb" |
|
|
181 | if ! useq minimal; then |
|
|
182 | for i in ${minimal_exclude_list}; do |
|
|
183 | myconf="${myconf} --with-${i}" |
|
|
184 | done |
|
|
185 | |
|
|
186 | if useq static ; then |
|
|
187 | myconf="${myconf} --without-raid" |
|
|
188 | ewarn "disabling raid support, has problem with static" |
|
|
189 | else |
|
|
190 | myconf="${myconf} --with-raid" |
|
|
191 | fi |
|
|
192 | |
|
|
193 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
194 | if mysql_version_is_at_least "4.01.00.00" && useq utf8; then |
|
|
195 | myconf="${myconf} --with-charset=utf8" |
|
|
196 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
197 | else |
|
|
198 | myconf="${myconf} --with-charset=latin1" |
|
|
199 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
200 | fi |
1010 | fi |
201 | fi |
1011 | fi |
202 | |
1012 | |
203 | # optional again from 2005-12-05 |
|
|
204 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
205 | myconf="${myconf} $(use_with innodb)" |
|
|
206 | else |
|
|
207 | myconf="${myconf} --with-innodb" |
|
|
208 | fi |
|
|
209 | |
|
|
210 | # lots of chars |
|
|
211 | myconf="${myconf} --with-extra-charsets=all" |
|
|
212 | |
|
|
213 | #The following fix is due to a bug with bdb on sparc's. See: |
|
|
214 | #http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
215 | # it comes down to non-64-bit safety problems |
|
|
216 | if useq sparc || useq alpha || useq hppa || useq mips || useq amd64 \ |
|
|
217 | || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
|
|
218 | then |
|
|
219 | ewarn "bdb berkeley-db disabled due to arch or version" |
|
|
220 | myconf="${myconf} --without-berkeley-db" |
|
|
221 | else |
|
|
222 | useq berkdb \ |
|
|
223 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
|
|
224 | || myconf="${myconf} --without-berkeley-db" |
|
|
225 | fi |
|
|
226 | |
|
|
227 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
228 | #myconf="${myconf} $(use_with geometry)" |
|
|
229 | myconf="${myconf} --with-geometry" |
|
|
230 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
231 | fi |
|
|
232 | |
|
|
233 | mysql_version_is_at_least "4.01.11.00" && myconf="${myconf} `use_with big-tables`" |
|
|
234 | else |
|
|
235 | for i in ${minimal_exclude_list}; do |
|
|
236 | myconf="${myconf} --without-${i}" |
|
|
237 | done |
|
|
238 | myconf="${myconf} --without-berkeley-db" |
|
|
239 | myconf="${myconf} --with-extra-charsets=none" |
|
|
240 | fi |
|
|
241 | |
|
|
242 | if mysql_version_is_at_least "4.01.03.00" && useq extraengine; then |
|
|
243 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
244 | myconf="${myconf} --with-archive-storage-engine" |
|
|
245 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
246 | |
|
|
247 | mysql_version_is_at_least "4.01.04.00" \ |
|
|
248 | && myconf="${myconf} --with-csv-storage-engine" |
|
|
249 | |
|
|
250 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
251 | && myconf="${myconf} --with-blackhole-storage-engine" |
|
|
252 | |
|
|
253 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
254 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
255 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
256 | einfo "before to use federated engine be sure to read" |
|
|
257 | einfo "http://dev.mysql.com/doc/refman/5.0/en/federated-limitations.html" |
|
|
258 | myconf="${myconf} --with-federated-storage-engine" |
|
|
259 | |
|
|
260 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
|
|
261 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
262 | myconf="${myconf} --with-partition" |
|
|
263 | fi |
|
|
264 | fi |
|
|
265 | |
|
|
266 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
267 | && useq "max-idx-128" \ |
|
|
268 | && myconf="${myconf} --with-max-indexes=128" |
|
|
269 | fi |
|
|
270 | |
|
|
271 | #Bug #114895,Bug #110149 |
1013 | # Bug #114895, bug #110149 |
272 | filter-flags "-O" "-O[01]" |
1014 | filter-flags "-O" "-O[01]" |
|
|
1015 | |
273 | #glibc-2.3.2_pre fix; bug #16496 |
1016 | # glib-2.3.2_pre fix, bug #16496 |
274 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
1017 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
275 | |
1018 | |
276 | #the compiler flags are as per their "official" spec ;) |
1019 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
277 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
1020 | # fail badly during cluster startup. |
|
|
1021 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
1022 | filter-flags "-fstack-protector-all" |
|
|
1023 | fi |
|
|
1024 | |
|
|
1025 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
278 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
1026 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
279 | mysql_version_is_at_least "5.00.00.00" \ |
1027 | mysql_version_is_at_least "5.0" \ |
280 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
1028 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
1029 | export CXXFLAGS |
|
|
1030 | |
|
|
1031 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
1032 | append-flags -fno-strict-aliasing |
|
|
1033 | |
|
|
1034 | # bug #335185, #335995, with >= GCC4.3.3 on x86 only, omit-frame-pointer |
|
|
1035 | # causes a mis-compile. |
|
|
1036 | # Upstream bugs: |
|
|
1037 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38562 |
|
|
1038 | # http://bugs.mysql.com/bug.php?id=45205 |
|
|
1039 | use x86 && version_is_at_least "4.3.3" "$(gcc-fullversion)" && \ |
|
|
1040 | append-flags -fno-omit-frame-pointer && \ |
|
|
1041 | filter-flags -fomit-frame-pointer |
281 | |
1042 | |
282 | econf \ |
1043 | econf \ |
283 | --program-suffix="${MY_SUFFIX}" \ |
|
|
284 | --libexecdir="/usr/sbin" \ |
1044 | --libexecdir="/usr/sbin" \ |
285 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1045 | --sysconfdir="${MY_SYSCONFDIR}" \ |
286 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1046 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
287 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
1047 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
288 | --libdir="${MY_LIBDIR}" \ |
1048 | --libdir="${MY_LIBDIR}" \ |
289 | --includedir="${MY_INCLUDEDIR}" \ |
1049 | --includedir="${MY_INCLUDEDIR}" \ |
290 | --with-low-memory \ |
1050 | --with-low-memory \ |
291 | --enable-assembler \ |
|
|
292 | --enable-local-infile \ |
|
|
293 | --with-mysqld-user=mysql \ |
|
|
294 | --with-client-ldflags=-lstdc++ \ |
1051 | --with-client-ldflags=-lstdc++ \ |
295 | --enable-thread-safe-client \ |
1052 | --enable-thread-safe-client \ |
296 | --with-comment="Gentoo Linux ${PF}" \ |
1053 | --with-comment="Gentoo Linux ${PF}" \ |
297 | --with-unix-socket-path="/var/run/mysqld/mysqld${MY_SUFFIX}.sock" \ |
|
|
298 | --with-zlib-dir=/usr \ |
|
|
299 | --with-lib-ccflags="-fPIC" \ |
|
|
300 | --without-readline \ |
|
|
301 | --without-docs \ |
1054 | --without-docs \ |
|
|
1055 | --with-LIBDIR="$(get_libdir)" \ |
302 | ${myconf} || die "bad ./configure" |
1056 | ${myconf} || die "econf failed" |
303 | |
1057 | |
304 | # TODO Move this before autoreconf !!! |
1058 | # TODO: Move this before autoreconf !!! |
305 | find . -name 'Makefile' \ |
1059 | find . -type f -name Makefile -print0 \ |
306 | -exec sed --in-place \ |
1060 | | xargs -0 -n100 sed -i \ |
307 | -e 's|^pkglibdir\s*=\s*$(libdir)/mysql|pkglibdir = $(libdir)|' \ |
1061 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
308 | -e 's|^pkgincludedir\s*=\s*$(includedir)/mysql|pkgincludedir = $(includedir)|' \ |
|
|
309 | {} \; |
|
|
310 | |
1062 | |
311 | emake || die "compile problem" |
1063 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1064 | pbxt_patch_available && use pbxt && pbxt_src_configure |
|
|
1065 | fi |
312 | } |
1066 | } |
313 | |
1067 | |
|
|
1068 | # @FUNCTION: mysql_src_compile |
|
|
1069 | # @DESCRIPTION: |
|
|
1070 | # Compile the mysql code. |
|
|
1071 | mysql_src_compile() { |
|
|
1072 | # Be backwards compatible for now |
|
|
1073 | case ${EAPI:-0} in |
|
|
1074 | 2) : ;; |
|
|
1075 | 0 | 1) mysql_src_configure ;; |
|
|
1076 | esac |
|
|
1077 | |
|
|
1078 | emake || die "emake failed" |
|
|
1079 | |
|
|
1080 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1081 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
1082 | fi |
|
|
1083 | } |
|
|
1084 | |
|
|
1085 | # @FUNCTION: mysql_src_install |
|
|
1086 | # @DESCRIPTION: |
|
|
1087 | # Install mysql. |
314 | mysql_src_install() { |
1088 | mysql_src_install() { |
315 | |
1089 | # Make sure the vars are correctly initialized |
316 | mysql_init_vars |
1090 | mysql_init_vars |
317 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
|
|
318 | |
1091 | |
319 | insinto "${MY_INCLUDEDIR}" |
1092 | emake install \ |
320 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
1093 | DESTDIR="${D}" \ |
|
|
1094 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
1095 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
1096 | || die "emake install failed" |
321 | |
1097 | |
|
|
1098 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1099 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1100 | fi |
|
|
1101 | |
322 | # convenience links |
1102 | # Convenience links |
|
|
1103 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
323 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
1104 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
324 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
1105 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
325 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
1106 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
326 | |
1107 | |
327 | # various junk (my-*.cnf moved elsewhere) |
1108 | # Various junk (my-*.cnf moved elsewhere) |
|
|
1109 | einfo "Removing duplicate /usr/share/mysql files" |
328 | rm -rf "${D}/usr/share/info" |
1110 | rm -Rf "${D}/usr/share/info" |
329 | for removeme in "mysql-log-rotate" mysql.server* \ |
1111 | for removeme in "mysql-log-rotate" mysql.server* \ |
330 | binary-configure* my-*.cnf mi_test_all* |
1112 | binary-configure* my-*.cnf mi_test_all* |
331 | do |
1113 | do |
332 | rm -f ${D}/usr/share/mysql/${removeme} |
1114 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
333 | done |
1115 | done |
334 | |
1116 | |
335 | # TODO change at Makefile-am level |
|
|
336 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
337 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
338 | do |
|
|
339 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
340 | done |
|
|
341 | |
|
|
342 | if [[ -n "${MY_SUFFIX}" ]] ; then |
|
|
343 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
|
|
344 | if [[ -n "${notcatched}" ]] ; then |
|
|
345 | ewarn "QA notice" |
|
|
346 | ewarn "${notcatched} files in /usr/share/mysql" |
|
|
347 | ewarn "bug mysql-herd to manage them" |
|
|
348 | fi |
|
|
349 | rm -rf "${D}/usr/share/mysql" |
|
|
350 | fi |
|
|
351 | |
|
|
352 | # clean up stuff for a minimal build |
1117 | # Clean up stuff for a minimal build |
353 | # this is anything server-specific |
|
|
354 | if useq minimal; then |
1118 | if use minimal ; then |
|
|
1119 | einfo "Remove all extra content for minimal build" |
355 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
1120 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
356 | 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} |
1121 | 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} |
357 | rm -f "${D}/usr/sbin/mysqld${MY_SUFFIX}" |
1122 | rm -f "${D}/usr/sbin/mysqld" |
358 | rm -f ${D}${MY_LIBDIR}/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
1123 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
359 | fi |
1124 | fi |
360 | |
1125 | |
|
|
1126 | # Unless they explicitly specific USE=test, then do not install the |
|
|
1127 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
|
|
1128 | # validation of your database configuration after tuning it. |
|
|
1129 | if use !test ; then |
|
|
1130 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
|
|
1131 | fi |
|
|
1132 | |
361 | # config stuff |
1133 | # Configuration stuff |
|
|
1134 | case ${MYSQL_PV_MAJOR} in |
|
|
1135 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
|
|
1136 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
|
|
1137 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1138 | esac |
|
|
1139 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
362 | insinto "${MY_SYSCONFDIR}" |
1140 | insinto "${MY_SYSCONFDIR}" |
363 | doins scripts/mysqlaccess.conf |
1141 | doins scripts/mysqlaccess.conf |
|
|
1142 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
|
|
1143 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
|
|
1144 | "${FILESDIR}/${mycnf_src}" \ |
|
|
1145 | > "${TMPDIR}/my.cnf.ok" |
|
|
1146 | if use latin1 ; then |
|
|
1147 | sed -i \ |
|
|
1148 | -e "/character-set/s|utf8|latin1|g" \ |
|
|
1149 | "${TMPDIR}/my.cnf.ok" |
|
|
1150 | fi |
364 | newins "${FILESDIR}/my.cnf-4.1" my.cnf |
1151 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
365 | insinto "/etc/conf.d" |
|
|
366 | newins "${FILESDIR}/mysql-slot.conf.d-r1" "mysql" |
|
|
367 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
368 | && newins "${FILESDIR}/mysqlmanager-slot.conf.d" "mysqlmanager" |
|
|
369 | |
1152 | |
370 | local charset='utf8' |
|
|
371 | ! useq utf8 && local charset='latin1' |
|
|
372 | sed --in-place \ |
|
|
373 | -e "s/@MY_SUFFIX@/${MY_SUFFIX}/" \ |
|
|
374 | -e "s/@CHARSET@/${charset}/" \ |
|
|
375 | "${D}/etc/mysql${MY_SUFFIX}/my.cnf" |
|
|
376 | |
|
|
377 | # minimal builds don't have the server |
1153 | # Minimal builds don't have the MySQL server |
378 | if ! useq minimal; then |
1154 | if ! use minimal ; then |
379 | exeinto /etc/init.d |
1155 | einfo "Creating initial directories" |
380 | newexe "${FILESDIR}/mysql-slot.rc6-r1" "mysql" |
1156 | # Empty directories ... |
381 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
382 | && newexe "${FILESDIR}/mysqlmanager-slot.rc6" "mysqlmanager" |
|
|
383 | insinto /etc/logrotate.d |
|
|
384 | # TODO |
|
|
385 | newins "${FILESDIR}/logrotate.mysql" "mysql${MY_SUFFIX}" |
|
|
386 | |
|
|
387 | #empty dirs... |
|
|
388 | diropts "-m0750" |
1157 | diropts "-m0750" |
389 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
1158 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
390 | dodir "${DATADIR}" |
1159 | dodir "${MY_DATADIR}" |
391 | keepdir "${DATADIR}" |
1160 | keepdir "${MY_DATADIR}" |
392 | chown -R mysql:mysql "${D}/${DATADIR}" |
1161 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
393 | fi |
1162 | fi |
394 | |
1163 | |
395 | diropts "-m0755" |
1164 | diropts "-m0755" |
396 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
1165 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
397 | dodir "${folder}" |
1166 | dodir "${folder}" |
398 | keepdir "${folder}" |
1167 | keepdir "${folder}" |
399 | chown -R mysql:mysql "${D}/${folder}" |
1168 | chown -R mysql:mysql "${D}/${folder}" |
400 | done |
1169 | done |
401 | fi |
1170 | fi |
402 | |
1171 | |
403 | # docs |
1172 | # Docs |
|
|
1173 | einfo "Installing docs" |
404 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
1174 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
1175 | doinfo "${S}"/Docs/mysql.info |
|
|
1176 | |
405 | # minimal builds don't have the server |
1177 | # Minimal builds don't have the MySQL server |
406 | if ! useq minimal; then |
1178 | if ! use minimal ; then |
|
|
1179 | einfo "Including support files and sample configurations" |
|
|
1180 | docinto "support-files" |
|
|
1181 | for script in \ |
|
|
1182 | "${S}"/support-files/my-*.cnf \ |
|
|
1183 | "${S}"/support-files/magic \ |
|
|
1184 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
1185 | do |
|
|
1186 | [[ -f "$script" ]] && dodoc "${script}" |
|
|
1187 | done |
|
|
1188 | |
|
|
1189 | docinto "scripts" |
|
|
1190 | for script in "${S}"/scripts/mysql* ; do |
|
|
1191 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
1192 | done |
|
|
1193 | |
|
|
1194 | fi |
|
|
1195 | |
|
|
1196 | mysql_lib_symlinks "${D}" |
|
|
1197 | } |
|
|
1198 | |
|
|
1199 | # @FUNCTION: mysql_pkg_preinst |
|
|
1200 | # @DESCRIPTION: |
|
|
1201 | # Create the user and groups for mysql - die if that fails. |
|
|
1202 | mysql_pkg_preinst() { |
|
|
1203 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
1204 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
1205 | } |
|
|
1206 | |
|
|
1207 | # @FUNCTION: mysql_pkg_postinst |
|
|
1208 | # @DESCRIPTION: |
|
|
1209 | # Run post-installation tasks: |
|
|
1210 | # create the dir for logfiles if non-existant |
|
|
1211 | # touch the logfiles and secure them |
|
|
1212 | # install scripts |
|
|
1213 | # issue required steps for optional features |
|
|
1214 | # issue deprecation warnings |
|
|
1215 | mysql_pkg_postinst() { |
|
|
1216 | # Make sure the vars are correctly initialized |
|
|
1217 | mysql_init_vars |
|
|
1218 | |
|
|
1219 | # Check FEATURES="collision-protect" before removing this |
|
|
1220 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
1221 | |
|
|
1222 | # Secure the logfiles |
|
|
1223 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
1224 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1225 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1226 | |
|
|
1227 | # Minimal builds don't have the MySQL server |
|
|
1228 | if ! use minimal ; then |
407 | docinto "support-files" |
1229 | docinto "support-files" |
408 | for script in \ |
1230 | for script in \ |
409 | support-files/my-*.cnf \ |
1231 | support-files/my-*.cnf \ |
410 | support-files/magic \ |
1232 | support-files/magic \ |
411 | support-files/ndb-config-2-node.ini |
1233 | support-files/ndb-config-2-node.ini |
412 | do |
1234 | do |
|
|
1235 | [[ -f "${script}" ]] \ |
413 | dodoc "${script}" |
1236 | && dodoc "${script}" |
414 | done |
1237 | done |
415 | |
1238 | |
416 | docinto "scripts" |
1239 | docinto "scripts" |
417 | for script in scripts/mysql* ; do |
1240 | for script in scripts/mysql* ; do |
|
|
1241 | [[ -f "${script}" ]] \ |
418 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1242 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1243 | && dodoc "${script}" |
419 | done |
1244 | done |
420 | fi |
|
|
421 | |
1245 | |
422 | # oops, temporary fix |
1246 | einfo |
423 | mysql_check_version_range "5.00.16.00 to 5.00.18.99" \ |
1247 | elog "You might want to run:" |
424 | && cp -f \ |
1248 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
425 | "${WORKDIR}/mysql-extras/fill_help_tables.sql-5.0.15" \ |
1249 | elog "if this is a new install." |
426 | "${D}/usr/share/mysql${MY_SUFFIX}/fill_help_tables.sql" |
1250 | einfo |
427 | |
1251 | |
428 | # create a list of executable files, to be used |
1252 | einfo |
429 | # by external utilities |
1253 | elog "If you are upgrading major versions, you should run the" |
430 | # uncompressed because of the small size |
1254 | elog "mysql_upgrade tool." |
431 | local exelist="usr/share/mysql${MY_SUFFIX}/.exe-list" |
1255 | einfo |
432 | pushd "${D}/" &>/dev/null |
1256 | fi |
433 | env -i find usr/bin/ usr/sbin/ usr/share/man \ |
|
|
434 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
435 | > "${exelist}" |
|
|
436 | echo "${MY_SYSCONFDIR##"/"}" >> "${exelist}" |
|
|
437 | echo "${MY_INCLUDEDIR##"/"}" >> "${exelist}" |
|
|
438 | echo "${MY_LIBDIR##"/"}" >> "${exelist}" |
|
|
439 | echo "${MY_SHAREDSTATEDIR##"/"}" >> "${exelist}" |
|
|
440 | popd &>/dev/null |
|
|
441 | } |
|
|
442 | |
1257 | |
443 | mysql_pkg_preinst() { |
1258 | if pbxt_available && use pbxt ; then |
|
|
1259 | # TODO: explain it better |
|
|
1260 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
1261 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
1262 | elog "if, after that, you cannot start the MySQL server," |
|
|
1263 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
1264 | elog "use the MySQL upgrade script to restore the table" |
|
|
1265 | elog "or execute the following SQL command:" |
|
|
1266 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
1267 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
1268 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
1269 | elog " PRIMARY KEY (name)" |
|
|
1270 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
1271 | fi |
444 | |
1272 | |
445 | enewgroup mysql 60 || die "problem adding group mysql" |
1273 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
446 | enewuser mysql 60 -1 /dev/null mysql \ |
1274 | && use berkdb \ |
447 | || die "problem adding user mysql" |
1275 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
448 | } |
1276 | } |
449 | |
1277 | |
|
|
1278 | # @FUNCTION: mysql_pkg_config |
|
|
1279 | # @DESCRIPTION: |
|
|
1280 | # Configure mysql environment. |
450 | mysql_pkg_postinst() { |
1281 | mysql_pkg_config() { |
|
|
1282 | local old_MY_DATADIR="${MY_DATADIR}" |
451 | |
1283 | |
|
|
1284 | # Make sure the vars are correctly initialized |
452 | mysql_init_vars |
1285 | mysql_init_vars |
453 | mysql_lib_symlinks |
|
|
454 | |
1286 | |
455 | # mind at FEATURES=collision-protect before to remove this |
|
|
456 | [ -d "${ROOT}/var/log/mysql" ] \ |
|
|
457 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
458 | |
|
|
459 | #secure the logfiles... does this bother anybody? |
|
|
460 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
461 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
462 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
463 | |
|
|
464 | if ! useq minimal; then |
|
|
465 | # your friendly public service announcement... |
|
|
466 | einfo |
|
|
467 | einfo "You might want to run:" |
|
|
468 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
469 | einfo "if this is a new install." |
|
|
470 | einfo |
|
|
471 | fi |
|
|
472 | |
|
|
473 | einfo "InnoDB is not optional as of MySQL-4.0.24, at the request of upstream." |
|
|
474 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
475 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
|
|
476 | einfo "\"eselect myqsl list\" to chose the default mysql server" |
|
|
477 | einfo "Prior to do this unmerge any unslotted MySQL versions with " |
|
|
478 | einfo "emerge -C -p dev-db/mysql <<< NOTICE the \"-p\"" |
|
|
479 | einfo "emerge -C =dev-db/mysql-X.Y.Z" |
|
|
480 | fi |
|
|
481 | } |
|
|
482 | |
|
|
483 | mysql_pkg_config() { |
|
|
484 | mysql_init_vars |
|
|
485 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
1287 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
486 | |
1288 | |
487 | if built_with_use dev-db/mysql minimal; then |
1289 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
488 | die "Minimal builds do NOT include the MySQL server" |
1290 | die "Minimal builds do NOT include the MySQL server" |
|
|
1291 | fi |
|
|
1292 | |
|
|
1293 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1294 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1295 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1296 | |
|
|
1297 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1298 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1299 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1300 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1301 | else |
|
|
1302 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1303 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1304 | || die "Moving MY_DATADIR failed" |
|
|
1305 | fi |
|
|
1306 | else |
|
|
1307 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1308 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1309 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1310 | else |
|
|
1311 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1312 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1313 | fi |
|
|
1314 | fi |
489 | fi |
1315 | fi |
490 | |
1316 | |
491 | local pwd1="a" |
1317 | local pwd1="a" |
492 | local pwd2="b" |
1318 | local pwd2="b" |
493 | local maxtry=5 |
1319 | local maxtry=15 |
494 | |
1320 | |
|
|
1321 | if [ -z "${MYSQL_ROOT_PASSWORD}" -a -f "${ROOT}/root/.my.cnf" ]; then |
|
|
1322 | MYSQL_ROOT_PASSWORD="$(sed -n -e '/^password=/s,^password=,,gp' "${ROOT}/root/.my.cnf")" |
|
|
1323 | fi |
|
|
1324 | |
495 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
1325 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
496 | ewarn "You have already a MySQL database in place." |
1326 | ewarn "You have already a MySQL database in place." |
497 | ewarn "(${ROOT}/${DATADIR}/*)" |
1327 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
498 | ewarn "Please rename or delete it if you wish to replace it." |
1328 | ewarn "Please rename or delete it if you wish to replace it." |
499 | die "MySQL database already exists!" |
1329 | die "MySQL database already exists!" |
500 | fi |
1330 | fi |
501 | |
1331 | |
502 | einfo "Creating the mysql database and setting proper" |
1332 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
503 | einfo "permissions on it..." |
1333 | # localhost. Also causes weird failures. |
|
|
1334 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
504 | |
1335 | |
|
|
1336 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
|
|
1337 | |
505 | einfo "Insert a password for the mysql 'root' user" |
1338 | einfo "Please provide a password for the mysql 'root' user now, in the" |
|
|
1339 | einfo "MYSQL_ROOT_PASSWORD env var or through the /root/.my.cnf file." |
506 | ewarn "Avoid [\"'\\_%] characters in the password" |
1340 | ewarn "Avoid [\"'\\_%] characters in the password" |
507 | |
|
|
508 | read -rsp " >" pwd1 ; echo |
1341 | read -rsp " >" pwd1 ; echo |
|
|
1342 | |
509 | einfo "Check the password" |
1343 | einfo "Retype the password" |
510 | read -rsp " >" pwd2 ; echo |
1344 | read -rsp " >" pwd2 ; echo |
511 | |
1345 | |
512 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1346 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
513 | die "Passwords are not the same" |
1347 | die "Passwords are not the same" |
|
|
1348 | fi |
|
|
1349 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1350 | unset pwd1 pwd2 |
514 | fi |
1351 | fi |
515 | |
1352 | |
516 | local options="" |
1353 | local options="" |
517 | local sqltmp="$(emktemp)" |
1354 | local sqltmp="$(emktemp)" |
518 | |
1355 | |
519 | local help_tables="${ROOT}/usr/share/doc/mysql-${PVR}/scripts/fill_help_tables.sql.gz" |
1356 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
520 | [[ -r "${help_tables}" ]] \ |
1357 | [[ -r "${help_tables}" ]] \ |
521 | && zcat "${help_tables}" > "${TMPDIR}/fill_help_tables.sql" \ |
1358 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
522 | || touch "${TMPDIR}/fill_help_tables.sql" |
1359 | || touch "${TMPDIR}/fill_help_tables.sql" |
523 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1360 | help_tables="${TMPDIR}/fill_help_tables.sql" |
524 | |
1361 | |
525 | pushd "${TMPDIR}" &>/dev/null |
1362 | pushd "${TMPDIR}" &>/dev/null |
526 | ${ROOT}/usr/bin/mysql_install_db${MY_SUFFIX} | grep -B5 -A999 -i "ERROR" |
1363 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1364 | if [ $? -ne 0 ]; then |
|
|
1365 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1366 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1367 | fi |
527 | popd &>/dev/null |
1368 | popd &>/dev/null |
528 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] || die "MySQL databases not installed" |
1369 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
|
|
1370 | || die "MySQL databases not installed" |
529 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
1371 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
530 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
1372 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
531 | |
1373 | |
|
|
1374 | # Figure out which options we need to disable to do the setup |
|
|
1375 | helpfile="${TMPDIR}/mysqld-help" |
|
|
1376 | ${ROOT}/usr/sbin/mysqld --verbose --help >"${helpfile}" 2>/dev/null |
|
|
1377 | for opt in grant-tables host-cache name-resolve networking slave-start bdb \ |
|
|
1378 | federated innodb ssl log-bin relay-log slow-query-log external-locking \ |
|
|
1379 | ndbcluster \ |
|
|
1380 | ; do |
|
|
1381 | optexp="--(skip-)?${opt}" optfull="--skip-${opt}" |
|
|
1382 | egrep -sq -- "${optexp}" "${helpfile}" && options="${options} ${optfull}" |
|
|
1383 | done |
|
|
1384 | # But some options changed names |
|
|
1385 | egrep -sq external-locking "${helpfile}" && \ |
|
|
1386 | options="${options/skip-locking/skip-external-locking}" |
|
|
1387 | |
532 | if mysql_version_is_at_least "4.01.03.00" ; then |
1388 | if mysql_version_is_at_least "4.1.3" ; then |
533 | options="--skip-ndbcluster" |
|
|
534 | |
|
|
535 | # Filling timezones, see |
1389 | # Filling timezones, see |
536 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1390 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
537 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql${MY_SUFFIX} ${ROOT}/usr/share/zoneinfo \ |
1391 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
538 | > "${sqltmp}" 2>/dev/null |
|
|
539 | |
1392 | |
540 | if [[ -r "${help_tables}" ]] ; then |
1393 | if [[ -r "${help_tables}" ]] ; then |
541 | cat "${help_tables}" >> "${sqltmp}" |
1394 | cat "${help_tables}" >> "${sqltmp}" |
542 | fi |
1395 | fi |
543 | fi |
1396 | fi |
544 | |
1397 | |
|
|
1398 | einfo "Creating the mysql database and setting proper" |
|
|
1399 | einfo "permissions on it ..." |
|
|
1400 | |
545 | local socket=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.sock |
1401 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
546 | local pidfile=${ROOT}/var/run/mysqld/mysqld${MY_SUFFIX}${RANDOM}.sock |
1402 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
547 | local mysqld="${ROOT}/usr/sbin/mysqld${MY_SUFFIX} \ |
1403 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
548 | ${options} \ |
1404 | ${options} \ |
549 | --user=mysql \ |
1405 | --user=mysql \ |
550 | --skip-grant-tables \ |
|
|
551 | --basedir=${ROOT}/usr \ |
1406 | --basedir=${ROOT}/usr \ |
552 | --datadir=${ROOT}/${DATADIR} \ |
1407 | --datadir=${ROOT}/${MY_DATADIR} \ |
553 | --skip-innodb \ |
|
|
554 | --skip-bdb \ |
|
|
555 | --skip-networking \ |
|
|
556 | --max_allowed_packet=8M \ |
1408 | --max_allowed_packet=8M \ |
557 | --net_buffer_length=16K \ |
1409 | --net_buffer_length=16K \ |
|
|
1410 | --default-storage-engine=MyISAM \ |
558 | --socket=${socket} \ |
1411 | --socket=${socket} \ |
559 | --pid-file=${pidfile}" |
1412 | --pid-file=${pidfile}" |
|
|
1413 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1414 | ebegin "Starting mysqld" |
560 | $mysqld & |
1415 | ${mysqld} & |
|
|
1416 | rc=$? |
561 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1417 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
562 | maxtry=$(($maxtry-1)) |
1418 | maxtry=$((${maxtry}-1)) |
563 | echo -n "." |
1419 | echo -n "." |
564 | sleep 1 |
1420 | sleep 1 |
565 | done |
1421 | done |
|
|
1422 | eend $rc |
566 | |
1423 | |
|
|
1424 | if ! [[ -S "${socket}" ]]; then |
|
|
1425 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1426 | fi |
|
|
1427 | |
|
|
1428 | ebegin "Setting root password" |
567 | # do this from memory we don't want clear text password in temp files |
1429 | # Do this from memory, as we don't want clear text passwords in temp files |
568 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
1430 | local sql="UPDATE mysql.user SET Password = PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'" |
569 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
1431 | "${ROOT}/usr/bin/mysql" \ |
570 | --socket=${socket} \ |
1432 | --socket=${socket} \ |
571 | -hlocalhost \ |
1433 | -hlocalhost \ |
572 | -e "${sql}" |
1434 | -e "${sql}" |
|
|
1435 | eend $? |
573 | |
1436 | |
574 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
1437 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
575 | |
|
|
576 | ${ROOT}/usr/bin/mysql${MY_SUFFIX} \ |
1438 | "${ROOT}/usr/bin/mysql" \ |
577 | --socket=${socket} \ |
1439 | --socket=${socket} \ |
578 | -hlocalhost \ |
1440 | -hlocalhost \ |
579 | -uroot \ |
1441 | -uroot \ |
580 | -p"${pwd1}" \ |
1442 | -p"${MYSQL_ROOT_PASSWORD}" \ |
581 | mysql < "${sqltmp}" |
1443 | mysql < "${sqltmp}" |
|
|
1444 | rc=$? |
|
|
1445 | eend $? |
|
|
1446 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
582 | |
1447 | |
583 | # server stop and cleanup |
1448 | # Stop the server and cleanup |
|
|
1449 | einfo "Stopping the server ..." |
584 | kill $(< "${pidfile}" ) |
1450 | kill $(< "${pidfile}" ) |
585 | rm "${sqltmp}" |
1451 | rm -f "${sqltmp}" |
586 | einfo "stopping the server," |
|
|
587 | wait %1 |
1452 | wait %1 |
588 | einfo "done" |
1453 | einfo "Done" |
589 | } |
1454 | } |
590 | |
1455 | |
|
|
1456 | # @FUNCTION: mysql_pkg_postrm |
|
|
1457 | # @DESCRIPTION: |
|
|
1458 | # Remove mysql symlinks. |
591 | mysql_pkg_postrm() { |
1459 | mysql_pkg_postrm() { |
592 | mysql_lib_symlinks |
1460 | : # mysql_lib_symlinks "${D}" |
593 | if [[ ${SLOT} -gt 0 ]] ; then |
|
|
594 | einfo "you may want to run \"eselect myqsl list\" followed by a " |
|
|
595 | einfo "\"eselect myqsl list\" to chose the default mysql server" |
|
|
596 | fi |
|
|
597 | } |
1461 | } |