1 | # Copyright 1999-2007 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.84 2008/01/16 04:01:14 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.131 2010/02/02 03:01:31 robbat2 Exp $ |
4 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
7 | |
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
9 | # Note that MYSQL_VERSION_ID must be empty! |
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. |
10 | |
17 | |
11 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
12 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
13 | |
20 | |
14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
15 | |
22 | |
16 | # 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 |
17 | # and we will run a mysql server during test phase |
24 | # and we will run a mysql server during test phase |
18 | S="${WORKDIR}/mysql" |
25 | S="${WORKDIR}/mysql" |
19 | |
26 | |
20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
21 | |
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
22 | if [[ ${PR#r} -lt 60 ]] ; then |
29 | EGIT_PROJECT=mysql-extras |
23 | IS_BITKEEPER=0 |
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
24 | elif [[ ${PR#r} -lt 90 ]] ; then |
31 | inherit git |
25 | IS_BITKEEPER=60 |
|
|
26 | else |
|
|
27 | IS_BITKEEPER=90 |
|
|
28 | fi |
32 | fi |
29 | |
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 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
57 | # @DESCRIPTION: |
30 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
31 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
32 | # This is an important part, because many of the choices the MySQL ebuild will do |
60 | # This is an important part, because many of the choices the MySQL ebuild will do |
33 | # depend on this variable. |
61 | # depend on this variable. |
34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
62 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
63 | # We also strip off upstream's trailing letter that they use to respin tarballs |
35 | |
64 | |
36 | MYSQL_VERSION_ID="" |
65 | MYSQL_VERSION_ID="" |
|
|
66 | tpv="${PV%[a-z]}" |
37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
67 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
38 | for vatom in 0 1 2 3 ; do |
68 | for vatom in 0 1 2 3 ; do |
39 | # pad to length 2 |
69 | # pad to length 2 |
40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
70 | tpv[${vatom}]="00${tpv[${vatom}]}" |
41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
42 | done |
72 | done |
43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
73 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
45 | |
75 | |
|
|
76 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
79 | # and 0 (no). |
|
|
80 | # Community features are available in mysql-community |
|
|
81 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
82 | if [ "${PN}" == "mysql-community" ]; then |
|
|
83 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
85 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
87 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
88 | elif [ "${PV#5.4}" != "${PV}" ] || [ "${PV#5.4}" != "${PV}" ]; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | else |
|
|
91 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
92 | fi |
|
|
93 | |
|
|
94 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
95 | # @DESCRIPTION: |
|
|
96 | # Version of the XTRADB storage engine |
|
|
97 | XTRADB_VER="${XTRADB_VER}" |
|
|
98 | |
|
|
99 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
100 | # @DESCRIPTION: |
|
|
101 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
102 | PERCONA_VER="${PERCONA_VER}" |
|
|
103 | |
46 | # Be warned, *DEPEND are version-dependant |
104 | # Be warned, *DEPEND are version-dependant |
|
|
105 | # These are used for both runtime and compiletime |
47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
106 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
48 | userland_GNU? ( sys-process/procps ) |
107 | userland_GNU? ( sys-process/procps ) |
49 | >=sys-apps/sed-4 |
108 | >=sys-apps/sed-4 |
50 | >=sys-apps/texinfo-4.7-r1 |
109 | >=sys-apps/texinfo-4.7-r1 |
51 | >=sys-libs/readline-4.1 |
110 | >=sys-libs/readline-4.1 |
… | |
… | |
55 | for i in "" "-community" ; do |
114 | for i in "" "-community" ; do |
56 | [[ "${i}" == ${PN#mysql} ]] || |
115 | [[ "${i}" == ${PN#mysql} ]] || |
57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
116 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
58 | done |
117 | done |
59 | |
118 | |
|
|
119 | RDEPEND="${DEPEND} |
|
|
120 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
121 | selinux? ( sec-policy/selinux-mysql )" |
|
|
122 | |
|
|
123 | # compile-time-only |
60 | mysql_version_is_at_least "5.1" \ |
124 | mysql_version_is_at_least "5.1" \ |
61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
125 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
62 | |
126 | |
|
|
127 | # compile-time-only |
63 | mysql_version_is_at_least "5.1.12" \ |
128 | mysql_version_is_at_least "5.1.12" \ |
64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
129 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
65 | |
130 | |
66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
131 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
132 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
68 | |
133 | |
69 | # BitKeeper dependency, compile-time only |
134 | # For other stuff to bring us in |
70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
135 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
71 | |
136 | |
72 | # Work out the default SERVER_URI correctly |
137 | # Work out the default SERVER_URI correctly |
73 | if [ -z "${SERVER_URI}" ]; then |
138 | if [ -z "${SERVER_URI}" ]; then |
74 | # The community build is on the mirrors |
139 | # The community build is on the mirrors |
75 | if [ "${PN}" == "mysql-community" ]; then |
140 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
76 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
141 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
77 | # The enterprise source is on the primary site only |
142 | # The (old) enterprise source is on the primary site only |
78 | elif [ "${PN}" == "mysql" ]; then |
143 | elif [ "${PN}" == "mysql" ]; then |
79 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
144 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
80 | fi |
145 | fi |
81 | fi |
146 | fi |
82 | |
147 | |
83 | # Define correct SRC_URIs |
148 | # Define correct SRC_URIs |
84 | SRC_URI="${SERVER_URI} |
149 | SRC_URI="${SERVER_URI}" |
|
|
150 | |
|
|
151 | # Gentoo patches to MySQL |
|
|
152 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
153 | && SRC_URI="${SRC_URI} |
85 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
154 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
86 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
155 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
156 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
157 | |
|
|
158 | # PBXT engine |
87 | mysql_version_is_at_least "5.1.12" \ |
159 | mysql_version_is_at_least "5.1.12" \ |
88 | && [[ -n "${PBXT_VERSION}" ]] \ |
160 | && [[ -n "${PBXT_VERSION}" ]] \ |
89 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
161 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
162 | && PBXT_SRC_URI="mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
163 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" |
|
|
164 | |
|
|
165 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
166 | mysql_version_is_at_least "5.1.26" \ |
|
|
167 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
168 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
169 | && XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
170 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" |
90 | |
171 | |
91 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
172 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
92 | HOMEPAGE="http://www.mysql.com/" |
173 | HOMEPAGE="http://www.mysql.com/" |
93 | LICENSE="GPL-2" |
174 | LICENSE="GPL-2" |
94 | SLOT="0" |
175 | SLOT="0" |
95 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
176 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
96 | |
177 | |
97 | mysql_version_is_at_least "4.1" \ |
178 | mysql_version_is_at_least "4.1" \ |
98 | && IUSE="${IUSE} latin1" |
179 | && IUSE="${IUSE} latin1" |
99 | |
180 | |
100 | mysql_version_is_at_least "4.1.3" \ |
181 | mysql_version_is_at_least "4.1.3" \ |
… | |
… | |
105 | |
186 | |
106 | mysql_version_is_at_least "5.0.18" \ |
187 | mysql_version_is_at_least "5.0.18" \ |
107 | && IUSE="${IUSE} max-idx-128" |
188 | && IUSE="${IUSE} max-idx-128" |
108 | |
189 | |
109 | mysql_version_is_at_least "5.1" \ |
190 | mysql_version_is_at_least "5.1" \ |
110 | && IUSE="${IUSE} innodb" |
|
|
111 | |
|
|
112 | mysql_version_is_at_least "5.1" \ |
|
|
113 | || IUSE="${IUSE} berkdb" |
191 | || IUSE="${IUSE} berkdb" |
114 | |
192 | |
115 | mysql_version_is_at_least "5.1.12" \ |
193 | mysql_version_is_at_least "5.1.12" \ |
|
|
194 | && [[ -n "${PBXT_VERSION}" ]] \ |
116 | && IUSE="${IUSE} pbxt" |
195 | && IUSE="${IUSE} pbxt" |
117 | |
196 | |
118 | RDEPEND="${DEPEND} |
197 | mysql_version_is_at_least "5.1.26" \ |
119 | !minimal? ( dev-db/mysql-init-scripts ) |
198 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
120 | selinux? ( sec-policy/selinux-mysql )" |
199 | && IUSE="${IUSE} xtradb" |
121 | |
200 | |
122 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
201 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
123 | pkg_postinst pkg_config pkg_postrm |
202 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
124 | |
203 | |
125 | # |
204 | # |
126 | # HELPER FUNCTIONS: |
205 | # HELPER FUNCTIONS: |
127 | # |
206 | # |
128 | |
207 | |
129 | bitkeeper_fetch() { |
208 | # @FUNCTION: mysql_disable_test |
130 | local reposuf |
209 | # @DESCRIPTION: |
131 | if [[ -z "${1}" ]] ; then |
210 | # Helper function to disable specific tests. |
132 | local tpv |
|
|
133 | tpv=( ${PV//[-._]/ } ) |
|
|
134 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
135 | else |
|
|
136 | reposuf="${1}" |
|
|
137 | fi |
|
|
138 | einfo "Using '${reposuf}' repository." |
|
|
139 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
140 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
141 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
142 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
143 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
144 | # hint: does not work |
|
|
145 | local ebk_fetch_cmd="sfioball" |
|
|
146 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
147 | local ebk_update_cmd="update" |
|
|
148 | |
|
|
149 | # addread "/etc/bitkeeper" |
|
|
150 | addwrite "${ebk_store_dir}" |
|
|
151 | |
|
|
152 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
153 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
154 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
155 | fi |
|
|
156 | |
|
|
157 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
158 | |
|
|
159 | local wc_path=${reposuf} |
|
|
160 | |
|
|
161 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
162 | local options="-r+" |
|
|
163 | |
|
|
164 | # first checkout |
|
|
165 | einfo "bitkeeper checkout start -->" |
|
|
166 | einfo " repository: ${repo_uri}" |
|
|
167 | |
|
|
168 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
169 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
170 | else |
|
|
171 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
172 | popd |
|
|
173 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
174 | fi |
|
|
175 | |
|
|
176 | # update working copy |
|
|
177 | einfo "bitkeeper update start -->" |
|
|
178 | einfo " repository: ${repo_uri}" |
|
|
179 | |
|
|
180 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
181 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
182 | fi |
|
|
183 | |
|
|
184 | einfo " working copy: ${wc_path}" |
|
|
185 | cd "${wc_path}" |
|
|
186 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
187 | |
|
|
188 | echo |
|
|
189 | popd |
|
|
190 | } |
|
|
191 | |
|
|
192 | mysql_disable_test() { |
211 | mysql_disable_test() { |
|
|
212 | local rawtestname testname testsuite reason mysql_disable_file |
193 | local testname="${1}" ; shift |
213 | rawtestname="${1}" ; shift |
194 | local reason="${@}" |
214 | reason="${@}" |
|
|
215 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
216 | |
|
|
217 | testsuite="${rawtestname/.*}" |
|
|
218 | testname="${rawtestname/*.}" |
195 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
219 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
220 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
196 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
221 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
197 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
198 | } |
|
|
199 | |
222 | |
|
|
223 | # ${S}/mysql-tests/t/disabled.def |
|
|
224 | # |
|
|
225 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
226 | # |
|
|
227 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
228 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
229 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
230 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
231 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
232 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
233 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
234 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
235 | if [ -n "${testsuite}" ]; then |
|
|
236 | for mysql_disable_file in \ |
|
|
237 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
238 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
239 | FAILED ; do |
|
|
240 | [ -f "${mysql_disable_file}" ] && break |
|
|
241 | done |
|
|
242 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
243 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
244 | else |
|
|
245 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
246 | fi |
|
|
247 | fi |
|
|
248 | } |
|
|
249 | |
|
|
250 | # @FUNCTION: mysql_init_vars |
|
|
251 | # @DESCRIPTION: |
200 | # void mysql_init_vars() |
252 | # void mysql_init_vars() |
201 | # |
|
|
202 | # Initialize global variables |
253 | # Initialize global variables |
203 | # 2005-11-19 <vivo@gentoo.org> |
254 | # 2005-11-19 <vivo@gentoo.org> |
204 | |
|
|
205 | mysql_init_vars() { |
255 | mysql_init_vars() { |
206 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
256 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
207 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
257 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
208 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
258 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
209 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
259 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
… | |
… | |
216 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
266 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
217 | | sed -ne '/datadir/s|^--datadir=||p' \ |
267 | | sed -ne '/datadir/s|^--datadir=||p' \ |
218 | | tail -n1` |
268 | | tail -n1` |
219 | if [[ -z "${MY_DATADIR}" ]] ; then |
269 | if [[ -z "${MY_DATADIR}" ]] ; then |
220 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
270 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
221 | | sed -e 's/.*=\s*//'` |
271 | | sed -e 's/.*=\s*//' \ |
|
|
272 | | tail -n1` |
222 | fi |
273 | fi |
223 | fi |
274 | fi |
224 | if [[ -z "${MY_DATADIR}" ]] ; then |
275 | if [[ -z "${MY_DATADIR}" ]] ; then |
225 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
276 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
226 | einfo "Using default MY_DATADIR" |
277 | einfo "Using default MY_DATADIR" |
227 | fi |
278 | fi |
228 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
279 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
229 | |
280 | |
230 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
281 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
231 | if [[ -e "${MY_DATADIR}" ]] ; then |
282 | if [[ -e "${MY_DATADIR}" ]] ; then |
232 | elog "Previous datadir found, it's YOUR job to change" |
283 | # If you get this and you're wondering about it, see bug #207636 |
233 | elog "ownership and take care of it" |
284 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
285 | elog "A new one will not be created." |
234 | PREVIOUS_DATADIR="yes" |
286 | PREVIOUS_DATADIR="yes" |
235 | else |
287 | else |
236 | PREVIOUS_DATADIR="no" |
288 | PREVIOUS_DATADIR="no" |
237 | fi |
289 | fi |
238 | export PREVIOUS_DATADIR |
290 | export PREVIOUS_DATADIR |
|
|
291 | fi |
|
|
292 | else |
|
|
293 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
294 | local new_MY_DATADIR |
|
|
295 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
296 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
297 | | tail -n1` |
|
|
298 | |
|
|
299 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
300 | ewarn "MySQL MY_DATADIR has changed" |
|
|
301 | ewarn "from ${MY_DATADIR}" |
|
|
302 | ewarn "to ${new_MY_DATADIR}" |
|
|
303 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
304 | fi |
239 | fi |
305 | fi |
240 | fi |
306 | fi |
241 | |
307 | |
242 | MY_SOURCEDIR=${SERVER_URI##*/} |
308 | MY_SOURCEDIR=${SERVER_URI##*/} |
243 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
309 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
… | |
… | |
299 | mysql_version_is_at_least "4.1.3" \ |
365 | mysql_version_is_at_least "4.1.3" \ |
300 | && use cluster \ |
366 | && use cluster \ |
301 | && myconf="${myconf} --without-ndb-debug" |
367 | && myconf="${myconf} --without-ndb-debug" |
302 | fi |
368 | fi |
303 | |
369 | |
|
|
370 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
371 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
372 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
373 | ewarn "You MUST file bugs without these variables set." |
|
|
374 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
375 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
304 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
376 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
305 | myconf="${myconf} --with-charset=utf8" |
377 | myconf="${myconf} --with-charset=utf8" |
306 | myconf="${myconf} --with-collation=utf8_general_ci" |
378 | myconf="${myconf} --with-collation=utf8_general_ci" |
307 | else |
379 | else |
308 | myconf="${myconf} --with-charset=latin1" |
380 | myconf="${myconf} --with-charset=latin1" |
309 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
381 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
310 | fi |
382 | fi |
311 | |
383 | |
312 | if use embedded ; then |
384 | if use embedded ; then |
313 | myconf="${myconf} --with-embedded-privilege-control" |
385 | myconf="${myconf} --with-embedded-privilege-control" |
314 | myconf="${myconf} --with-embedded-server" |
386 | myconf="${myconf} --with-embedded-server" |
… | |
… | |
337 | myconf="${myconf} $(use_with ssl)" |
409 | myconf="${myconf} $(use_with ssl)" |
338 | else |
410 | else |
339 | myconf="${myconf} $(use_with ssl openssl)" |
411 | myconf="${myconf} $(use_with ssl openssl)" |
340 | fi |
412 | fi |
341 | |
413 | |
|
|
414 | if mysql_version_is_at_least "5.0.60" ; then |
342 | if use berkdb ; then |
415 | if use berkdb ; then |
|
|
416 | elog "Berkeley DB support was disabled due to build failures" |
|
|
417 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
418 | elog "if you want it again. Gentoo bug #224067." |
|
|
419 | fi |
|
|
420 | myconf="${myconf} --without-berkeley-db" |
|
|
421 | elif use berkdb ; then |
343 | # The following fix is due to a bug with bdb on SPARC's. See: |
422 | # The following fix is due to a bug with bdb on SPARC's. See: |
344 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
423 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
345 | # It comes down to non-64-bit safety problems. |
424 | # It comes down to non-64-bit safety problems. |
346 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
425 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
347 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
426 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
… | |
… | |
373 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
452 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
374 | if mysql_version_is_at_least "5.0.3" ; then |
453 | if mysql_version_is_at_least "5.0.3" ; then |
375 | elog "Before using the Federated storage engine, please be sure to read" |
454 | elog "Before using the Federated storage engine, please be sure to read" |
376 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
455 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
377 | myconf="${myconf} --with-federated-storage-engine" |
456 | myconf="${myconf} --with-federated-storage-engine" |
|
|
457 | fi |
|
|
458 | fi |
|
|
459 | |
|
|
460 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
461 | myconf="${myconf} `use_enable community community-features`" |
|
|
462 | if use community; then |
|
|
463 | myconf="${myconf} `use_enable profiling`" |
|
|
464 | else |
|
|
465 | myconf="${myconf} --disable-profiling" |
378 | fi |
466 | fi |
379 | fi |
467 | fi |
380 | |
468 | |
381 | mysql_version_is_at_least "5.0.18" \ |
469 | mysql_version_is_at_least "5.0.18" \ |
382 | && use max-idx-128 \ |
470 | && use max-idx-128 \ |
… | |
… | |
399 | # 5.1 introduces a new way to manage storage engines (plugins) |
487 | # 5.1 introduces a new way to manage storage engines (plugins) |
400 | # like configuration=none |
488 | # like configuration=none |
401 | local plugins="csv,myisam,myisammrg,heap" |
489 | local plugins="csv,myisam,myisammrg,heap" |
402 | if use extraengine ; then |
490 | if use extraengine ; then |
403 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
491 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
492 | # not added yet: ibmdb2i |
|
|
493 | # Not supporting as examples: example,daemon_example,ftexample |
404 | plugins="${plugins},archive,blackhole,example,federated,partition" |
494 | plugins="${plugins},archive,blackhole,federated,partition" |
405 | |
495 | |
406 | elog "Before using the Federated storage engine, please be sure to read" |
496 | elog "Before using the Federated storage engine, please be sure to read" |
407 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
497 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
408 | fi |
498 | fi |
409 | |
499 | |
410 | if use innodb ; then |
500 | # Upstream specifically requests that InnoDB always be built: |
411 | plugins="${plugins},innobase" |
501 | # - innobase, innodb_plugin |
412 | fi |
502 | # Build falcon if available for 6.x series. |
|
|
503 | for i in innobase innodb_plugin falcon ; do |
|
|
504 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
505 | done |
413 | |
506 | |
414 | # like configuration=max-no-ndb |
507 | # like configuration=max-no-ndb |
415 | if use cluster ; then |
508 | if use cluster ; then |
416 | plugins="${plugins},ndbcluster" |
509 | plugins="${plugins},ndbcluster" |
417 | myconf="${myconf} --with-ndb-binlog" |
510 | myconf="${myconf} --with-ndb-binlog" |
418 | fi |
511 | fi |
419 | |
512 | |
420 | if mysql_version_is_at_least "5.2" ; then |
|
|
421 | plugins="${plugins},falcon" |
|
|
422 | fi |
|
|
423 | |
|
|
424 | myconf="${myconf} --with-plugins=${plugins}" |
513 | myconf="${myconf} --with-plugins=${plugins}" |
425 | } |
514 | } |
426 | |
515 | |
427 | pbxt_src_compile() { |
516 | pbxt_src_configure() { |
428 | mysql_init_vars |
517 | mysql_init_vars |
429 | |
518 | |
430 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
519 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
431 | |
520 | |
432 | einfo "Reconfiguring dir '${PWD}'" |
521 | einfo "Reconfiguring dir '${PWD}'" |
… | |
… | |
435 | local myconf="" |
524 | local myconf="" |
436 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
525 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
437 | use debug && myconf="${myconf} --with-debug=full" |
526 | use debug && myconf="${myconf} --with-debug=full" |
438 | # TODO: is it safe/needed to use econf here ? |
527 | # TODO: is it safe/needed to use econf here ? |
439 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
528 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
529 | } |
|
|
530 | |
|
|
531 | pbxt_src_compile() { |
|
|
532 | # Be backwards compatible for now |
|
|
533 | if [[ $EAPI != 2 ]]; then |
|
|
534 | pbxt_src_configure |
|
|
535 | fi |
440 | # TODO: is it safe/needed to use emake here ? |
536 | # TODO: is it safe/needed to use emake here ? |
441 | make || die "Problem making PBXT storage engine (${myconf})" |
537 | make || die "Problem making PBXT storage engine (${myconf})" |
442 | |
538 | |
443 | popd |
539 | popd |
444 | # TODO: modify test suite for PBXT |
540 | # TODO: modify test suite for PBXT |
… | |
… | |
451 | } |
547 | } |
452 | |
548 | |
453 | # |
549 | # |
454 | # EBUILD FUNCTIONS |
550 | # EBUILD FUNCTIONS |
455 | # |
551 | # |
|
|
552 | # @FUNCTION: mysql_pkg_setup |
|
|
553 | # @DESCRIPTION: |
|
|
554 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
555 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
556 | # check for conflicting use flags |
|
|
557 | # create new user and group for mysql |
|
|
558 | # warn about deprecated features |
456 | mysql_pkg_setup() { |
559 | mysql_pkg_setup() { |
457 | if hasq test ${FEATURES} ; then |
560 | if hasq test ${FEATURES} ; then |
458 | if ! use minimal ; then |
561 | if ! use minimal ; then |
459 | if ! hasq userpriv ${FEATURES} ; then |
562 | if [[ $UID -eq 0 ]]; then |
460 | die "Testing with FEATURES=-userpriv is no longer supported by upstream" |
563 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
461 | fi |
564 | fi |
462 | fi |
565 | fi |
463 | fi |
566 | fi |
464 | |
567 | |
465 | # Check for USE flag problems in pkg_setup |
568 | # Check for USE flag problems in pkg_setup |
… | |
… | |
480 | && ( use cluster || use extraengine ) \ |
583 | && ( use cluster || use extraengine ) \ |
481 | && use minimal ; then |
584 | && use minimal ; then |
482 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
585 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
483 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
586 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
484 | fi |
587 | fi |
485 | |
588 | |
|
|
589 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
590 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
591 | GCC_VER=$(gcc-version) |
|
|
592 | case ${GCC_VER} in |
|
|
593 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
594 | esac |
|
|
595 | fi |
|
|
596 | |
486 | # This should come after all of the die statements |
597 | # This should come after all of the die statements |
487 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
598 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
488 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
599 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
489 | |
600 | |
490 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
601 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
491 | && use berkdb \ |
602 | && use berkdb \ |
492 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
603 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
493 | } |
604 | } |
494 | |
605 | |
|
|
606 | # @FUNCTION: mysql_src_unpack |
|
|
607 | # @DESCRIPTION: |
|
|
608 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
495 | mysql_src_unpack() { |
609 | mysql_src_unpack() { |
496 | # Initialize the proper variables first |
610 | # Initialize the proper variables first |
497 | mysql_init_vars |
611 | mysql_init_vars |
498 | |
612 | |
499 | unpack ${A} |
613 | unpack ${A} |
500 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
614 | # Grab the patches |
501 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
615 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
502 | bitkeeper_fetch "mysql-5.1-ndb" |
616 | |
503 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
504 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
505 | else |
|
|
506 | bitkeeper_fetch |
|
|
507 | fi |
|
|
508 | cd "${S}" |
|
|
509 | einfo "Running upstream autorun over BK sources ..." |
|
|
510 | BUILD/autorun.sh |
|
|
511 | else |
|
|
512 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
617 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
618 | |
|
|
619 | # Be backwards compatible for now |
|
|
620 | case ${EAPI:-0} in |
|
|
621 | 2) : ;; |
|
|
622 | 0 | 1) mysql_src_prepare ;; |
|
|
623 | esac |
|
|
624 | } |
|
|
625 | |
|
|
626 | # @FUNCTION: mysql_src_prepare |
|
|
627 | # @DESCRIPTION: |
|
|
628 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
629 | mysql_src_prepare() { |
513 | cd "${S}" |
630 | cd "${S}" |
514 | fi |
|
|
515 | |
631 | |
516 | # Apply the patches for this MySQL version |
632 | # Apply the patches for this MySQL version |
517 | EPATCH_SUFFIX="patch" |
633 | EPATCH_SUFFIX="patch" |
518 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
634 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
635 | # Clean out old items |
|
|
636 | rm -f "${EPATCH_SOURCE}"/* |
|
|
637 | # Now link in right patches |
519 | mysql_mv_patches |
638 | mysql_mv_patches |
|
|
639 | # And apply |
520 | epatch |
640 | epatch |
521 | |
641 | |
522 | # Additional checks, remove bundled zlib |
642 | # Additional checks, remove bundled zlib |
523 | rm -f "${S}/zlib/"*.[ch] |
643 | rm -f "${S}/zlib/"*.[ch] |
524 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
644 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
… | |
… | |
528 | find . -name 'Makefile.am' \ |
648 | find . -name 'Makefile.am' \ |
529 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
649 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
530 | |
650 | |
531 | if mysql_version_is_at_least "4.1" ; then |
651 | if mysql_version_is_at_least "4.1" ; then |
532 | # Remove what needs to be recreated, so we're sure it's actually done |
652 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
653 | einfo "Cleaning up old buildscript files" |
533 | find . -name Makefile \ |
654 | find . -name Makefile \ |
534 | -o -name Makefile.in \ |
655 | -o -name Makefile.in \ |
535 | -o -name configure \ |
656 | -o -name configure \ |
536 | -exec rm -f {} \; |
657 | -exec rm -f {} \; |
537 | rm -f "ltmain.sh" |
658 | rm -f "ltmain.sh" |
538 | rm -f "scripts/mysqlbug" |
659 | rm -f "scripts/mysqlbug" |
539 | fi |
660 | fi |
540 | |
661 | |
541 | local rebuilddirlist d |
662 | local rebuilddirlist d |
542 | |
663 | |
|
|
664 | if mysql_version_is_at_least "5.1.26" && use xtradb ; then |
|
|
665 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
666 | pushd "${S}"/storage |
|
|
667 | i="innobase" |
|
|
668 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
669 | # Have we been here already? |
|
|
670 | [ -h "${i}" ] && rm -f "${i}" |
|
|
671 | # Or maybe we haven't |
|
|
672 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
673 | ln -s "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
674 | popd |
|
|
675 | fi |
|
|
676 | |
543 | if mysql_version_is_at_least "5.1.12" ; then |
677 | if mysql_version_is_at_least "5.1.12" ; then |
|
|
678 | einfo "Updating innobase cmake" |
544 | rebuilddirlist="." |
679 | rebuilddirlist="." |
545 | # TODO: check this with a cmake expert |
680 | # TODO: check this with a cmake expert |
546 | use innodb \ |
|
|
547 | && cmake \ |
681 | cmake \ |
548 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
682 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
549 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
683 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
550 | "storage/innobase" |
684 | "storage/innobase" |
551 | else |
685 | else |
552 | rebuilddirlist=". innobase" |
686 | rebuilddirlist=". innobase" |
… | |
… | |
559 | popd &>/dev/null |
693 | popd &>/dev/null |
560 | done |
694 | done |
561 | |
695 | |
562 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
696 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
563 | && use berkdb ; then |
697 | && use berkdb ; then |
|
|
698 | einfo "Fixing up berkdb buildsystem" |
564 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
699 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
565 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
700 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
566 | || die "Could not copy libtool.m4 to bdb/dist/" |
701 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
702 | #These files exist only with libtool-2*, and need to be included. |
|
|
703 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
704 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
705 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
706 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
707 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
708 | fi |
567 | pushd "bdb/dist" &>/dev/null |
709 | pushd "bdb/dist" &>/dev/null |
568 | sh s_all \ |
710 | sh s_all \ |
569 | || die "Failed bdb reconfigure" |
711 | || die "Failed bdb reconfigure" |
570 | popd &>/dev/null |
712 | popd &>/dev/null |
571 | fi |
713 | fi |
572 | } |
714 | } |
573 | |
715 | |
|
|
716 | # @FUNCTION: mysql_src_configure |
|
|
717 | # @DESCRIPTION: |
|
|
718 | # Configure mysql to build the code for Gentoo respecting the use flags. |
574 | mysql_src_compile() { |
719 | mysql_src_configure() { |
575 | # Make sure the vars are correctly initialized |
720 | # Make sure the vars are correctly initialized |
576 | mysql_init_vars |
721 | mysql_init_vars |
577 | |
722 | |
578 | # $myconf is modified by the configure_* functions |
723 | # $myconf is modified by the configure_* functions |
579 | local myconf="" |
724 | local myconf="" |
… | |
… | |
593 | filter-flags "-O" "-O[01]" |
738 | filter-flags "-O" "-O[01]" |
594 | |
739 | |
595 | # glib-2.3.2_pre fix, bug #16496 |
740 | # glib-2.3.2_pre fix, bug #16496 |
596 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
741 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
597 | |
742 | |
|
|
743 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
744 | # fail badly during cluster startup. |
|
|
745 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
746 | filter-flags "-fstack-protector-all" |
|
|
747 | fi |
|
|
748 | |
598 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
749 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
599 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
750 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
600 | mysql_version_is_at_least "5.0" \ |
751 | mysql_version_is_at_least "5.0" \ |
601 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
752 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
602 | export CXXFLAGS |
753 | export CXXFLAGS |
|
|
754 | |
|
|
755 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
756 | append-flags -fno-strict-aliasing |
603 | |
757 | |
604 | econf \ |
758 | econf \ |
605 | --libexecdir="/usr/sbin" \ |
759 | --libexecdir="/usr/sbin" \ |
606 | --sysconfdir="${MY_SYSCONFDIR}" \ |
760 | --sysconfdir="${MY_SYSCONFDIR}" \ |
607 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
761 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
… | |
… | |
618 | # TODO: Move this before autoreconf !!! |
772 | # TODO: Move this before autoreconf !!! |
619 | find . -type f -name Makefile -print0 \ |
773 | find . -type f -name Makefile -print0 \ |
620 | | xargs -0 -n100 sed -i \ |
774 | | xargs -0 -n100 sed -i \ |
621 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
775 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
622 | |
776 | |
|
|
777 | if [[ $EAPI == 2 ]]; then |
|
|
778 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
|
|
779 | fi |
|
|
780 | } |
|
|
781 | |
|
|
782 | # @FUNCTION: mysql_src_compile |
|
|
783 | # @DESCRIPTION: |
|
|
784 | # Compile the mysql code. |
|
|
785 | mysql_src_compile() { |
|
|
786 | # Be backwards compatible for now |
|
|
787 | case ${EAPI:-0} in |
|
|
788 | 2) : ;; |
|
|
789 | 0 | 1) mysql_src_configure ;; |
|
|
790 | esac |
|
|
791 | |
623 | emake || die "emake failed" |
792 | emake || die "emake failed" |
624 | |
793 | |
625 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
794 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
626 | } |
795 | } |
627 | |
796 | |
|
|
797 | # @FUNCTION: mysql_src_install |
|
|
798 | # @DESCRIPTION: |
|
|
799 | # Install mysql. |
628 | mysql_src_install() { |
800 | mysql_src_install() { |
629 | # Make sure the vars are correctly initialized |
801 | # Make sure the vars are correctly initialized |
630 | mysql_init_vars |
802 | mysql_init_vars |
631 | |
803 | |
632 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
804 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
633 | |
805 | |
634 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
806 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
635 | |
807 | |
636 | insinto "${MY_INCLUDEDIR}" |
|
|
637 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
638 | |
|
|
639 | # Convenience links |
808 | # Convenience links |
|
|
809 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
640 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
810 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
641 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
811 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
642 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
812 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
643 | |
813 | |
644 | # Various junk (my-*.cnf moved elsewhere) |
814 | # Various junk (my-*.cnf moved elsewhere) |
|
|
815 | einfo "Removing duplicate /usr/share/mysql files" |
645 | rm -Rf "${D}/usr/share/info" |
816 | rm -Rf "${D}/usr/share/info" |
646 | for removeme in "mysql-log-rotate" mysql.server* \ |
817 | for removeme in "mysql-log-rotate" mysql.server* \ |
647 | binary-configure* my-*.cnf mi_test_all* |
818 | binary-configure* my-*.cnf mi_test_all* |
648 | do |
819 | do |
649 | rm -f "${D}"/usr/share/mysql/${removeme} |
820 | rm -f "${D}"/usr/share/mysql/${removeme} |
650 | done |
821 | done |
651 | |
822 | |
652 | # Clean up stuff for a minimal build |
823 | # Clean up stuff for a minimal build |
653 | if use minimal ; then |
824 | if use minimal ; then |
|
|
825 | einfo "Remove all extra content for minimal build" |
654 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
826 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
655 | 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} |
827 | 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} |
656 | rm -f "${D}/usr/sbin/mysqld" |
828 | rm -f "${D}/usr/sbin/mysqld" |
657 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
829 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
658 | fi |
830 | fi |
… | |
… | |
661 | if mysql_version_is_at_least "4.1" ; then |
833 | if mysql_version_is_at_least "4.1" ; then |
662 | mysql_mycnf_version="4.1" |
834 | mysql_mycnf_version="4.1" |
663 | else |
835 | else |
664 | mysql_mycnf_version="4.0" |
836 | mysql_mycnf_version="4.0" |
665 | fi |
837 | fi |
|
|
838 | einfo "Building default my.cnf" |
666 | insinto "${MY_SYSCONFDIR}" |
839 | insinto "${MY_SYSCONFDIR}" |
667 | doins scripts/mysqlaccess.conf |
840 | doins scripts/mysqlaccess.conf |
668 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
841 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
669 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
842 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
670 | > "${TMPDIR}/my.cnf.ok" |
843 | > "${TMPDIR}/my.cnf.ok" |
… | |
… | |
673 | fi |
846 | fi |
674 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
847 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
675 | |
848 | |
676 | # Minimal builds don't have the MySQL server |
849 | # Minimal builds don't have the MySQL server |
677 | if ! use minimal ; then |
850 | if ! use minimal ; then |
|
|
851 | einfo "Creating initial directories" |
678 | # Empty directories ... |
852 | # Empty directories ... |
679 | diropts "-m0750" |
853 | diropts "-m0750" |
680 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
854 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
681 | dodir "${MY_DATADIR}" |
855 | dodir "${MY_DATADIR}" |
682 | keepdir "${MY_DATADIR}" |
856 | keepdir "${MY_DATADIR}" |
… | |
… | |
690 | chown -R mysql:mysql "${D}/${folder}" |
864 | chown -R mysql:mysql "${D}/${folder}" |
691 | done |
865 | done |
692 | fi |
866 | fi |
693 | |
867 | |
694 | # Docs |
868 | # Docs |
|
|
869 | einfo "Installing docs" |
695 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
870 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
696 | doinfo ${S}/Docs/mysql.info |
871 | doinfo "${S}"/Docs/mysql.info |
697 | |
872 | |
698 | # Minimal builds don't have the MySQL server |
873 | # Minimal builds don't have the MySQL server |
699 | if ! use minimal ; then |
874 | if ! use minimal ; then |
|
|
875 | einfo "Including support files and sample configurations" |
700 | docinto "support-files" |
876 | docinto "support-files" |
701 | for script in \ |
877 | for script in \ |
702 | support-files/my-*.cnf \ |
878 | "${S}"/support-files/my-*.cnf \ |
703 | support-files/magic \ |
879 | "${S}"/support-files/magic \ |
704 | support-files/ndb-config-2-node.ini |
880 | "${S}"/support-files/ndb-config-2-node.ini |
705 | do |
881 | do |
706 | dodoc "${script}" |
882 | dodoc "${script}" |
707 | done |
883 | done |
708 | |
884 | |
709 | docinto "scripts" |
885 | docinto "scripts" |
710 | for script in scripts/mysql* ; do |
886 | for script in "${S}"/scripts/mysql* ; do |
711 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
887 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
712 | done |
888 | done |
713 | |
889 | |
714 | fi |
890 | fi |
715 | |
891 | |
716 | mysql_lib_symlinks "${D}" |
892 | mysql_lib_symlinks "${D}" |
717 | } |
893 | } |
718 | |
894 | |
|
|
895 | # @FUNCTION: mysql_pkg_preinst |
|
|
896 | # @DESCRIPTION: |
|
|
897 | # Create the user and groups for mysql - die if that fails. |
719 | mysql_pkg_preinst() { |
898 | mysql_pkg_preinst() { |
720 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
899 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
721 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
900 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
722 | } |
901 | } |
723 | |
902 | |
|
|
903 | # @FUNCTION: mysql_pkg_postinst |
|
|
904 | # @DESCRIPTION: |
|
|
905 | # Run post-installation tasks: |
|
|
906 | # create the dir for logfiles if non-existant |
|
|
907 | # touch the logfiles and secure them |
|
|
908 | # install scripts |
|
|
909 | # issue required steps for optional features |
|
|
910 | # issue deprecation warnings |
724 | mysql_pkg_postinst() { |
911 | mysql_pkg_postinst() { |
725 | # Make sure the vars are correctly initialized |
912 | # Make sure the vars are correctly initialized |
726 | mysql_init_vars |
913 | mysql_init_vars |
727 | |
914 | |
728 | # Check FEATURES="collision-protect" before removing this |
915 | # Check FEATURES="collision-protect" before removing this |
… | |
… | |
774 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
961 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
775 | && use berkdb \ |
962 | && use berkdb \ |
776 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
963 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
777 | } |
964 | } |
778 | |
965 | |
|
|
966 | # @FUNCTION: mysql_pkg_config |
|
|
967 | # @DESCRIPTION: |
|
|
968 | # Configure mysql environment. |
779 | mysql_pkg_config() { |
969 | mysql_pkg_config() { |
|
|
970 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
971 | |
780 | # Make sure the vars are correctly initialized |
972 | # Make sure the vars are correctly initialized |
781 | mysql_init_vars |
973 | mysql_init_vars |
782 | |
974 | |
783 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
975 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
784 | |
976 | |
785 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
977 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
786 | die "Minimal builds do NOT include the MySQL server" |
978 | die "Minimal builds do NOT include the MySQL server" |
|
|
979 | fi |
|
|
980 | |
|
|
981 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
982 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
983 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
984 | |
|
|
985 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
986 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
987 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
988 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
989 | else |
|
|
990 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
991 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
992 | || die "Moving MY_DATADIR failed" |
|
|
993 | fi |
|
|
994 | else |
|
|
995 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
996 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
997 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
998 | else |
|
|
999 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1000 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1001 | fi |
|
|
1002 | fi |
787 | fi |
1003 | fi |
788 | |
1004 | |
789 | local pwd1="a" |
1005 | local pwd1="a" |
790 | local pwd2="b" |
1006 | local pwd2="b" |
791 | local maxtry=5 |
1007 | local maxtry=5 |
… | |
… | |
795 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1011 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
796 | ewarn "Please rename or delete it if you wish to replace it." |
1012 | ewarn "Please rename or delete it if you wish to replace it." |
797 | die "MySQL database already exists!" |
1013 | die "MySQL database already exists!" |
798 | fi |
1014 | fi |
799 | |
1015 | |
|
|
1016 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
1017 | # localhost. Also causes weird failures. |
|
|
1018 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
|
|
1019 | |
800 | einfo "Creating the mysql database and setting proper" |
1020 | einfo "Creating the mysql database and setting proper" |
801 | einfo "permissions on it ..." |
1021 | einfo "permissions on it ..." |
802 | |
1022 | |
803 | einfo "Insert a password for the mysql 'root' user" |
1023 | einfo "Insert a password for the mysql 'root' user" |
804 | ewarn "Avoid [\"'\\_%] characters in the password" |
1024 | ewarn "Avoid [\"'\\_%] characters in the password" |
… | |
… | |
819 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1039 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
820 | || touch "${TMPDIR}/fill_help_tables.sql" |
1040 | || touch "${TMPDIR}/fill_help_tables.sql" |
821 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1041 | help_tables="${TMPDIR}/fill_help_tables.sql" |
822 | |
1042 | |
823 | pushd "${TMPDIR}" &>/dev/null |
1043 | pushd "${TMPDIR}" &>/dev/null |
824 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
1044 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1045 | if [ $? -ne 0 ]; then |
|
|
1046 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1047 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1048 | fi |
825 | popd &>/dev/null |
1049 | popd &>/dev/null |
826 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
1050 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
827 | || die "MySQL databases not installed" |
1051 | || die "MySQL databases not installed" |
828 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2> /dev/null |
1052 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
829 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2> /dev/null |
1053 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
830 | |
1054 | |
831 | if mysql_version_is_at_least "4.1.3" ; then |
1055 | if mysql_version_is_at_least "4.1.3" ; then |
832 | options="--skip-ndbcluster" |
1056 | options="--skip-ndbcluster" |
833 | |
1057 | |
834 | # Filling timezones, see |
1058 | # Filling timezones, see |
… | |
… | |
884 | einfo "Stopping the server ..." |
1108 | einfo "Stopping the server ..." |
885 | wait %1 |
1109 | wait %1 |
886 | einfo "Done" |
1110 | einfo "Done" |
887 | } |
1111 | } |
888 | |
1112 | |
|
|
1113 | # @FUNCTION: mysql_pkg_postrm |
|
|
1114 | # @DESCRIPTION: |
|
|
1115 | # Remove mysql symlinks. |
889 | mysql_pkg_postrm() { |
1116 | mysql_pkg_postrm() { |
890 | : # mysql_lib_symlinks "${D}" |
1117 | : # mysql_lib_symlinks "${D}" |
891 | } |
1118 | } |