1 | # Copyright 1999-2006 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.56 2007/01/04 10:32:38 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/mysql.eclass,v 1.136 2010/03/09 20:37:34 robbat2 Exp $ |
4 | # kate: encoding utf-8; eol unix; |
|
|
5 | # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; |
|
|
6 | # kate: word-wrap-column 80; word-wrap off; |
|
|
7 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
9 | # Maintainer: Luca Longinotti <chtekk@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. |
10 | |
17 | |
11 | # Note that MYSQL_VERSION_ID must be empty !!! |
18 | WANT_AUTOCONF="latest" |
|
|
19 | WANT_AUTOMAKE="latest" |
12 | |
20 | |
13 | ECLASS="mysql" |
|
|
14 | INHERITED="$INHERITED $ECLASS" |
|
|
15 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
16 | |
22 | |
17 | # avoid running userspace code 8 times per ebuild :( |
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
18 | if [[ "${_MYPVR}" != "${PVR}" ]] && [[ -n "${PVR}" ]] |
24 | # and we will run a mysql server during test phase |
19 | then |
25 | S="${WORKDIR}/mysql" |
20 | _MYPVR=${PVR} |
|
|
21 | |
26 | |
22 | [[ -z ${MY_EXTRAS_VER} ]] && MY_EXTRAS_VER="20070103" |
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
23 | |
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
24 | if [[ ${PR#r} -lt 60 ]] ; then |
29 | EGIT_PROJECT=mysql-extras |
25 | IS_BITKEEPER=0 |
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
26 | elif [[ ${PR#r} -lt 90 ]] ; then |
31 | inherit git |
27 | IS_BITKEEPER=60 |
|
|
28 | else |
|
|
29 | IS_BITKEEPER=90 |
|
|
30 | fi |
32 | fi |
31 | |
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: |
32 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
33 | # 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] |
34 | # 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 |
35 | # depend on this variable. |
61 | # depend on this variable. |
36 | # 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 |
|
|
64 | |
37 | MYSQL_VERSION_ID="" |
65 | MYSQL_VERSION_ID="" |
|
|
66 | tpv="${PV%[a-z]}" |
38 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
67 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
39 | for vatom in 0 1 2 3 ; do |
68 | for vatom in 0 1 2 3 ; do |
40 | # pad to length 2 |
69 | # pad to length 2 |
41 | tpv[${vatom}]="00${tpv[${vatom}]}" |
70 | tpv[${vatom}]="00${tpv[${vatom}]}" |
42 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
43 | done |
72 | done |
44 | # 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) |
45 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
46 | |
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}" ] ; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | elif [ "${PV#5.5}" != "${PV}" ] ; then |
|
|
91 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
92 | elif [ "${PV#6.0}" != "${PV}" ] ; then |
|
|
93 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
94 | else |
|
|
95 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
96 | fi |
|
|
97 | |
|
|
98 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Version of the XTRADB storage engine |
|
|
101 | XTRADB_VER="${XTRADB_VER}" |
|
|
102 | |
|
|
103 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
106 | PERCONA_VER="${PERCONA_VER}" |
|
|
107 | |
47 | # Be warned, *DEPEND are version-dependant |
108 | # Be warned, *DEPEND are version-dependant |
|
|
109 | # These are used for both runtime and compiletime |
48 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
110 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
49 | userland_GNU? ( sys-process/procps ) |
111 | userland_GNU? ( sys-process/procps ) |
50 | >=sys-apps/sed-4 |
112 | >=sys-apps/sed-4 |
51 | >=sys-apps/texinfo-4.7-r1 |
113 | >=sys-apps/texinfo-4.7-r1 |
52 | >=sys-libs/readline-4.1 |
114 | >=sys-libs/readline-4.1 |
53 | >=sys-libs/zlib-1.2.3" |
115 | >=sys-libs/zlib-1.2.3" |
54 | |
116 | |
55 | # having different flavours at the same time is not a good idea |
117 | # Having different flavours at the same time is not a good idea |
56 | for i in "" "-community" "-slotted" ; do |
118 | for i in "" "-community" ; do |
57 | [[ "${i}" == ${PN#mysql} ]] || |
119 | [[ "${i}" == ${PN#mysql} ]] || |
58 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
120 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
59 | done |
121 | done |
60 | |
122 | |
|
|
123 | RDEPEND="${DEPEND} |
|
|
124 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
125 | selinux? ( sec-policy/selinux-mysql )" |
|
|
126 | |
|
|
127 | # compile-time-only |
61 | mysql_version_is_at_least "5.1" \ |
128 | mysql_version_is_at_least "5.1" \ |
62 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
129 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
63 | |
130 | |
|
|
131 | # compile-time-only |
|
|
132 | mysql_version_is_at_least "5.1.12" \ |
|
|
133 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
134 | |
64 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
135 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
65 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
136 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
66 | |
137 | |
67 | if mysql_version_is_at_least "5.1.12" ; then |
138 | # For other stuff to bring us in |
68 | DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
139 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
|
|
140 | |
|
|
141 | # Work out the default SERVER_URI correctly |
|
|
142 | if [ -z "${SERVER_URI}" ]; then |
|
|
143 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
|
|
144 | # The community build is on the mirrors |
|
|
145 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
146 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${MY_PV}.tar.gz" |
|
|
147 | # The (old) enterprise source is on the primary site only |
|
|
148 | elif [ "${PN}" == "mysql" ]; then |
|
|
149 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
|
|
150 | fi |
69 | fi |
151 | fi |
70 | |
152 | |
71 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
72 | # and we will run a mysql server during test phase |
|
|
73 | S="${WORKDIR}/mysql" |
|
|
74 | |
|
|
75 | # BitKeeper dependency, compile-time only |
|
|
76 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
77 | |
|
|
78 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
79 | DEPEND="${DEPEND} app-admin/eselect-mysql" |
|
|
80 | fi |
|
|
81 | |
|
|
82 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
83 | SLOT="" |
|
|
84 | tpv=( ${PV//[-._]/ } ) |
|
|
85 | for vatom in 0 1 2 ; do |
|
|
86 | SLOT="${SLOT}${tpv[${vatom}]}_" |
|
|
87 | done |
|
|
88 | #finally SLOT=5_0_24 |
|
|
89 | SLOT=${SLOT:0:${#SLOT}-1} |
|
|
90 | else |
|
|
91 | SLOT="0" |
|
|
92 | fi |
|
|
93 | |
|
|
94 | # Define correct SRC_URIs |
153 | # Define correct SRC_URIs |
95 | SRC_URI=" |
154 | SRC_URI="${SERVER_URI}" |
96 | ${SERVER_URI} |
155 | |
|
|
156 | # Gentoo patches to MySQL |
|
|
157 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
158 | && SRC_URI="${SRC_URI} |
|
|
159 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
97 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
160 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
98 | " |
161 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
99 | mysql_version_is_at_least "5.1.12" \ |
|
|
100 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
101 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
102 | |
162 | |
103 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
163 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
104 | HOMEPAGE="http://www.mysql.com/" |
164 | HOMEPAGE="http://www.mysql.com/" |
105 | LICENSE="GPL-2" |
165 | LICENSE="GPL-2" |
|
|
166 | SLOT="0" |
106 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
167 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
107 | RESTRICT="confcache" |
|
|
108 | |
168 | |
109 | mysql_version_is_at_least "4.1" \ |
169 | mysql_version_is_at_least "4.1" \ |
110 | && IUSE="${IUSE} latin1" |
170 | && IUSE="${IUSE} latin1" |
111 | |
171 | |
112 | mysql_version_is_at_least "4.1.3" \ |
172 | mysql_version_is_at_least "4.1.3" \ |
113 | && IUSE="${IUSE} cluster extraengine" |
173 | && IUSE="${IUSE} cluster extraengine" |
114 | |
174 | |
115 | mysql_version_is_at_least "5.0" \ |
175 | mysql_version_is_at_least "5.0" \ |
116 | || IUSE="${IUSE} raid" |
176 | || IUSE="${IUSE} raid" |
117 | |
177 | |
118 | mysql_version_is_at_least "5.0.18" \ |
178 | mysql_version_is_at_least "5.0.18" \ |
119 | && IUSE="${IUSE} max-idx-128" |
179 | && IUSE="${IUSE} max-idx-128" |
120 | |
180 | |
121 | mysql_version_is_at_least "5.1" \ |
181 | mysql_version_is_at_least "5.1" \ |
122 | && IUSE="${IUSE} innodb" |
|
|
123 | |
|
|
124 | mysql_version_is_at_least "5.1" \ |
|
|
125 | || IUSE="${IUSE} berkdb" |
182 | || IUSE="${IUSE} berkdb" |
126 | |
183 | |
|
|
184 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
|
|
185 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
|
|
186 | |
|
|
187 | # PBXT engine |
127 | mysql_version_is_at_least "5.1.12" \ |
188 | mysql_version_is_at_least "5.1.12" \ |
|
|
189 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
190 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
191 | && PBXT_SRC_URI="http://www.primebase.org/download/${PBXT_P}.tar.gz mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
192 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" \ |
128 | && IUSE="${IUSE} pbxt" |
193 | && IUSE="${IUSE} pbxt" |
129 | |
194 | |
130 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
195 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
131 | |
196 | mysql_version_is_at_least "5.1.26" \ |
132 | fi # if [[ "${_MYPVR}" != "${PVR}" ]] |
197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
133 | |
198 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
199 | && XTRADB_SRC_URI_COMMON="${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
135 | pkg_postinst pkg_config pkg_postrm |
200 | && XTRADB_SRC_URI1="http://www.percona.com/percona-builds/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
201 | && XTRADB_SRC_URI2="http://www.percona.com/${PN}/xtradb/${XTRADB_SRC_URI_COMMON}" \ |
|
|
202 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI1} ${XTRADB_SRC_URI2} )" \ |
|
|
203 | && IUSE="${IUSE} xtradb" |
136 | |
204 | |
137 | # |
205 | # |
138 | # HELPER FUNCTIONS: |
206 | # HELPER FUNCTIONS: |
139 | # |
207 | # |
140 | |
208 | |
141 | bitkeeper_fetch() { |
209 | # @FUNCTION: mysql_disable_test |
142 | |
210 | # @DESCRIPTION: |
143 | local reposuf |
211 | # Helper function to disable specific tests. |
144 | if [[ -z "${1}" ]] ; then |
|
|
145 | local tpv |
|
|
146 | tpv=( ${PV//[-._]/ } ) |
|
|
147 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
148 | else |
|
|
149 | reposuf="${1}" |
|
|
150 | fi |
|
|
151 | einfo "using \"${reposuf}\" repository." |
|
|
152 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
153 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
154 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
155 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
156 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
157 | # hint: does not work |
|
|
158 | local ebk_fetch_cmd="sfioball" |
|
|
159 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
160 | local ebk_update_cmd="update" |
|
|
161 | |
|
|
162 | #addread "/etc/bitkeeper" |
|
|
163 | addwrite "${ebk_store_dir}" |
|
|
164 | |
|
|
165 | if [[ ! -d "${ebk_store_dir}" ]]; then |
|
|
166 | debug-print "${FUNCNAME}: initial checkout. creating bitkeeper directory" |
|
|
167 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
|
|
168 | fi |
|
|
169 | |
|
|
170 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
|
|
171 | |
|
|
172 | local wc_path=${reposuf} |
|
|
173 | |
|
|
174 | if [[ ! -d "${wc_path}" ]]; then |
|
|
175 | local options="-r+" |
|
|
176 | # first check out |
|
|
177 | einfo "bitkeeper check out start -->" |
|
|
178 | einfo " repository: ${repo_uri}" |
|
|
179 | ${ebk_fetch_cmd} ${options} "${repo_uri}" ${wc_path} \ |
|
|
180 | || die "${EBK}: can't fetch from ${repo_uri}." |
|
|
181 | else |
|
|
182 | if [[ ! -d "${wc_path}/BK" ]]; then |
|
|
183 | popd |
|
|
184 | die "Look like ${wc_path} is not a bitkeeper path." |
|
|
185 | fi |
|
|
186 | |
|
|
187 | # update working copy |
|
|
188 | einfo "bitkeeper update start -->" |
|
|
189 | einfo " repository: ${repo_uri}" |
|
|
190 | |
|
|
191 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
192 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
|
|
193 | fi |
|
|
194 | |
|
|
195 | einfo " working copy: ${wc_path}" |
|
|
196 | cd "${wc_path}" |
|
|
197 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
|
|
198 | |
|
|
199 | echo |
|
|
200 | popd |
|
|
201 | |
|
|
202 | } |
|
|
203 | |
|
|
204 | mysql_disable_test() { |
212 | mysql_disable_test() { |
|
|
213 | local rawtestname testname testsuite reason mysql_disable_file |
205 | local testname="${1}" ; shift |
214 | rawtestname="${1}" ; shift |
206 | local reason="${@}" |
215 | reason="${@}" |
|
|
216 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
217 | |
|
|
218 | testsuite="${rawtestname/.*}" |
|
|
219 | testname="${rawtestname/*.}" |
207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
220 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
221 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
222 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
209 | ewarn "test \"${testname}\" disabled because: \"${reason}\"" |
|
|
210 | } |
|
|
211 | |
223 | |
|
|
224 | # ${S}/mysql-tests/t/disabled.def |
|
|
225 | # |
|
|
226 | # ${S}/mysql-tests/suite/federated/disabled.def |
|
|
227 | # |
|
|
228 | # ${S}/mysql-tests/suite/jp/t/disabled.def |
|
|
229 | # ${S}/mysql-tests/suite/ndb/t/disabled.def |
|
|
230 | # ${S}/mysql-tests/suite/rpl/t/disabled.def |
|
|
231 | # ${S}/mysql-tests/suite/parts/t/disabled.def |
|
|
232 | # ${S}/mysql-tests/suite/rpl_ndb/t/disabled.def |
|
|
233 | # ${S}/mysql-tests/suite/ndb_team/t/disabled.def |
|
|
234 | # ${S}/mysql-tests/suite/binlog/t/disabled.def |
|
|
235 | # ${S}/mysql-tests/suite/innodb/t/disabled.def |
|
|
236 | if [ -n "${testsuite}" ]; then |
|
|
237 | for mysql_disable_file in \ |
|
|
238 | ${S}/mysql-test/suite/${testsuite}/disabled.def \ |
|
|
239 | ${S}/mysql-test/suite/${testsuite}/t/disabled.def \ |
|
|
240 | FAILED ; do |
|
|
241 | [ -f "${mysql_disable_file}" ] && break |
|
|
242 | done |
|
|
243 | if [ "${mysql_disabled_file}" != "FAILED" ]; then |
|
|
244 | echo "${testname} : ${reason}" >> "${mysql_disable_file}" |
|
|
245 | else |
|
|
246 | ewarn "Could not find testsuite disabled.def location for ${rawtestname}" |
|
|
247 | fi |
|
|
248 | fi |
|
|
249 | } |
|
|
250 | |
|
|
251 | # @FUNCTION: mysql_init_vars |
|
|
252 | # @DESCRIPTION: |
212 | # void mysql_init_vars() |
253 | # void mysql_init_vars() |
213 | # |
|
|
214 | # Initialize global variables |
254 | # Initialize global variables |
215 | # 2005-11-19 <vivo@gentoo.org> |
255 | # 2005-11-19 <vivo@gentoo.org> |
216 | |
|
|
217 | mysql_init_vars() { |
256 | mysql_init_vars() { |
218 | if [[ ${SLOT} == "0" ]] ; then |
|
|
219 | MY_SUFFIX="" |
|
|
220 | else |
|
|
221 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
222 | fi |
|
|
223 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
257 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
224 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
258 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
225 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
259 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
226 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
260 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
227 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
261 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
228 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
262 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
229 | |
263 | |
230 | if [[ -z "${DATADIR}" ]] ; then |
264 | if [[ -z "${MY_DATADIR}" ]] ; then |
231 | DATADIR="" |
265 | MY_DATADIR="" |
232 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
266 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
233 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null \ |
267 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
234 | | sed -ne '/datadir/s|^--datadir=||p' \ |
268 | | sed -ne '/datadir/s|^--datadir=||p' \ |
235 | | tail -n1` |
269 | | tail -n1` |
236 | if [[ -z "${DATADIR}" ]] ; then |
270 | if [[ -z "${MY_DATADIR}" ]] ; then |
237 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
271 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
238 | | sed -e 's/.*=\s*//'` |
272 | | sed -e 's/.*=\s*//' \ |
|
|
273 | | tail -n1` |
239 | fi |
274 | fi |
240 | fi |
275 | fi |
241 | if [[ -z "${DATADIR}" ]] ; then |
276 | if [[ -z "${MY_DATADIR}" ]] ; then |
242 | DATADIR="${MY_LOCALSTATEDIR}" |
277 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
243 | einfo "Using default DATADIR" |
278 | einfo "Using default MY_DATADIR" |
244 | fi |
279 | fi |
245 | elog "MySQL DATADIR is ${DATADIR}" |
280 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
246 | |
281 | |
247 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
282 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
248 | if [[ -e "${DATADIR}" ]] ; then |
283 | if [[ -e "${MY_DATADIR}" ]] ; then |
249 | elog "Previous datadir found, it's YOUR job to change" |
284 | # If you get this and you're wondering about it, see bug #207636 |
250 | elog "ownership and take care of it" |
285 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
286 | elog "A new one will not be created." |
251 | PREVIOUS_DATADIR="yes" |
287 | PREVIOUS_DATADIR="yes" |
252 | else |
288 | else |
253 | PREVIOUS_DATADIR="no" |
289 | PREVIOUS_DATADIR="no" |
254 | fi |
290 | fi |
255 | export PREVIOUS_DATADIR |
291 | export PREVIOUS_DATADIR |
256 | fi |
292 | fi |
|
|
293 | else |
|
|
294 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
295 | local new_MY_DATADIR |
|
|
296 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
297 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
298 | | tail -n1` |
|
|
299 | |
|
|
300 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
301 | ewarn "MySQL MY_DATADIR has changed" |
|
|
302 | ewarn "from ${MY_DATADIR}" |
|
|
303 | ewarn "to ${new_MY_DATADIR}" |
|
|
304 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
305 | fi |
|
|
306 | fi |
257 | fi |
307 | fi |
258 | |
308 | |
259 | MY_SOURCEDIR=${SERVER_URI##*/} |
309 | MY_SOURCEDIR=${SERVER_URI##*/} |
260 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
310 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
261 | |
311 | |
262 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
312 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
263 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
313 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
264 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
314 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
265 | } |
315 | } |
266 | |
316 | |
267 | configure_minimal() { |
317 | configure_minimal() { |
268 | # These are things we exclude from a minimal build, please |
318 | # These are things we exclude from a minimal build, please |
269 | # note that the server actually does get built and installed, |
319 | # note that the server actually does get built and installed, |
270 | # but we then delete it before packaging. |
320 | # but we then delete it before packaging. |
271 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
321 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
272 | |
322 | |
273 | for i in ${minimal_exclude_list} ; do |
323 | for i in ${minimal_exclude_list} ; do |
274 | myconf="${myconf} --without-${i}" |
324 | myconf="${myconf} --without-${i}" |
275 | done |
325 | done |
276 | myconf="${myconf} --with-extra-charsets=none" |
326 | myconf="${myconf} --with-extra-charsets=none" |
277 | myconf="${myconf} --enable-local-infile" |
327 | myconf="${myconf} --enable-local-infile" |
278 | |
328 | |
279 | if useq "static" ; then |
329 | if use static ; then |
280 | myconf="${myconf} --with-client-ldflags=-all-static" |
330 | myconf="${myconf} --with-client-ldflags=-all-static" |
281 | myconf="${myconf} --disable-shared" |
331 | myconf="${myconf} --disable-shared --with-pic" |
282 | else |
332 | else |
283 | myconf="${myconf} --enable-shared --enable-static" |
333 | myconf="${myconf} --enable-shared --enable-static" |
284 | fi |
334 | fi |
285 | |
335 | |
286 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
336 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
287 | myconf="${myconf} --with-charset=utf8" |
337 | myconf="${myconf} --with-charset=utf8" |
288 | myconf="${myconf} --with-collation=utf8_general_ci" |
338 | myconf="${myconf} --with-collation=utf8_general_ci" |
289 | else |
339 | else |
290 | myconf="${myconf} --with-charset=latin1" |
340 | myconf="${myconf} --with-charset=latin1" |
291 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
341 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
… | |
… | |
299 | myconf="${myconf} --with-mysqld-user=mysql" |
349 | myconf="${myconf} --with-mysqld-user=mysql" |
300 | myconf="${myconf} --with-server" |
350 | myconf="${myconf} --with-server" |
301 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
351 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
302 | myconf="${myconf} --without-libwrap" |
352 | myconf="${myconf} --without-libwrap" |
303 | |
353 | |
304 | if useq "static" ; then |
354 | if use static ; then |
305 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
355 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
306 | myconf="${myconf} --with-client-ldflags=-all-static" |
356 | myconf="${myconf} --with-client-ldflags=-all-static" |
307 | myconf="${myconf} --disable-shared" |
357 | myconf="${myconf} --disable-shared --with-pic" |
308 | else |
358 | else |
309 | myconf="${myconf} --enable-shared --enable-static" |
359 | myconf="${myconf} --enable-shared --enable-static" |
310 | fi |
360 | fi |
311 | |
361 | |
312 | if useq "debug" ; then |
362 | if use debug ; then |
313 | myconf="${myconf} --with-debug=full" |
363 | myconf="${myconf} --with-debug=full" |
314 | else |
364 | else |
315 | myconf="${myconf} --without-debug" |
365 | myconf="${myconf} --without-debug" |
316 | mysql_version_is_at_least "4.1.3" \ |
366 | mysql_version_is_at_least "4.1.3" \ |
317 | && useq "cluster" \ |
367 | && use cluster \ |
318 | && myconf="${myconf} --without-ndb-debug" |
368 | && myconf="${myconf} --without-ndb-debug" |
319 | fi |
369 | fi |
320 | |
370 | |
|
|
371 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
372 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
373 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
374 | ewarn "You MUST file bugs without these variables set." |
|
|
375 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
376 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
321 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
377 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
322 | myconf="${myconf} --with-charset=utf8" |
378 | myconf="${myconf} --with-charset=utf8" |
323 | myconf="${myconf} --with-collation=utf8_general_ci" |
379 | myconf="${myconf} --with-collation=utf8_general_ci" |
324 | else |
380 | else |
325 | myconf="${myconf} --with-charset=latin1" |
381 | myconf="${myconf} --with-charset=latin1" |
326 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
382 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
327 | fi |
383 | fi |
328 | |
384 | |
329 | if useq "embedded" ; then |
385 | if use embedded ; then |
330 | myconf="${myconf} --with-embedded-privilege-control" |
386 | myconf="${myconf} --with-embedded-privilege-control" |
331 | myconf="${myconf} --with-embedded-server" |
387 | myconf="${myconf} --with-embedded-server" |
332 | else |
388 | else |
333 | myconf="${myconf} --without-embedded-privilege-control" |
389 | myconf="${myconf} --without-embedded-privilege-control" |
334 | myconf="${myconf} --without-embedded-server" |
390 | myconf="${myconf} --without-embedded-server" |
… | |
… | |
340 | myconf="${myconf} $(use_with perl bench)" |
396 | myconf="${myconf} $(use_with perl bench)" |
341 | myconf="${myconf} --enable-assembler" |
397 | myconf="${myconf} --enable-assembler" |
342 | myconf="${myconf} --with-extra-tools" |
398 | myconf="${myconf} --with-extra-tools" |
343 | myconf="${myconf} --with-innodb" |
399 | myconf="${myconf} --with-innodb" |
344 | myconf="${myconf} --without-readline" |
400 | myconf="${myconf} --without-readline" |
|
|
401 | myconf="${myconf} $(use_with ssl openssl)" |
345 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
402 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
346 | |
403 | |
347 | if useq "ssl" ; then |
|
|
348 | # --with-vio is not needed anymore, it's on by default and |
404 | # --with-vio is not needed anymore, it's on by default and |
349 | # has been removed from configure |
405 | # has been removed from configure |
|
|
406 | # Apply to 4.x and 5.0.[0-3] |
|
|
407 | if use ssl ; then |
350 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
408 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
409 | fi |
|
|
410 | |
351 | if mysql_version_is_at_least "5.0.6" ; then |
411 | if mysql_version_is_at_least "5.0.60" ; then |
352 | # myconf="${myconf} --with-yassl" |
412 | if use berkdb ; then |
|
|
413 | elog "Berkeley DB support was disabled due to build failures" |
|
|
414 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
415 | elog "if you want it again. Gentoo bug #224067." |
|
|
416 | fi |
353 | myconf="${myconf} --with-openssl" |
417 | myconf="${myconf} --without-berkeley-db" |
|
|
418 | elif use berkdb ; then |
|
|
419 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
420 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
421 | # It comes down to non-64-bit safety problems. |
|
|
422 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
423 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
424 | myconf="${myconf} --without-berkeley-db" |
354 | else |
425 | else |
355 | myconf="${myconf} --with-openssl" |
426 | myconf="${myconf} --with-berkeley-db=./bdb" |
356 | fi |
427 | fi |
357 | else |
428 | else |
358 | myconf="${myconf} --without-openssl" |
|
|
359 | fi |
|
|
360 | |
|
|
361 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
362 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
363 | # It comes down to non-64-bit safety problems. |
|
|
364 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
365 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
366 | myconf="${myconf} --without-berkeley-db" |
429 | myconf="${myconf} --without-berkeley-db" |
367 | else |
|
|
368 | if useq "berkdb" ; then |
|
|
369 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
370 | else |
|
|
371 | myconf="${myconf} --without-berkeley-db" |
|
|
372 | fi |
|
|
373 | fi |
430 | fi |
374 | |
431 | |
375 | if mysql_version_is_at_least "4.1.3" ; then |
432 | if mysql_version_is_at_least "4.1.3" ; then |
376 | myconf="${myconf} --with-geometry" |
433 | myconf="${myconf} --with-geometry" |
377 | myconf="${myconf} $(use_with cluster ndbcluster)" |
434 | myconf="${myconf} $(use_with cluster ndbcluster)" |
378 | fi |
435 | fi |
379 | |
436 | |
380 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
437 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
381 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
438 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
382 | myconf="${myconf} --with-archive-storage-engine" |
439 | myconf="${myconf} --with-archive-storage-engine" |
383 | |
440 | |
384 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
441 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
385 | myconf="${myconf} --with-csv-storage-engine" |
442 | myconf="${myconf} --with-csv-storage-engine" |
… | |
… | |
395 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
452 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
396 | myconf="${myconf} --with-federated-storage-engine" |
453 | myconf="${myconf} --with-federated-storage-engine" |
397 | fi |
454 | fi |
398 | fi |
455 | fi |
399 | |
456 | |
|
|
457 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
458 | myconf="${myconf} `use_enable community community-features`" |
|
|
459 | if use community; then |
|
|
460 | myconf="${myconf} `use_enable profiling`" |
|
|
461 | else |
|
|
462 | myconf="${myconf} --disable-profiling" |
|
|
463 | fi |
|
|
464 | fi |
|
|
465 | |
400 | mysql_version_is_at_least "5.0.18" \ |
466 | mysql_version_is_at_least "5.0.18" \ |
401 | && useq "max-idx-128" \ |
467 | && use max-idx-128 \ |
402 | && myconf="${myconf} --with-max-indexes=128" |
468 | && myconf="${myconf} --with-max-indexes=128" |
403 | } |
469 | } |
404 | |
470 | |
405 | configure_51() { |
471 | configure_51() { |
406 | # TODO: !!!! readd --without-readline |
472 | # TODO: !!!! readd --without-readline |
407 | # the failure depend upon config/ac-macros/readline.m4 checking into |
473 | # the failure depend upon config/ac-macros/readline.m4 checking into |
408 | # readline.h instead of history.h |
474 | # readline.h instead of history.h |
409 | myconf="${myconf} $(use_with ssl)" |
475 | myconf="${myconf} $(use_with ssl ssl /usr)" |
410 | myconf="${myconf} --enable-assembler" |
476 | myconf="${myconf} --enable-assembler" |
411 | myconf="${myconf} --with-geometry" |
477 | myconf="${myconf} --with-geometry" |
412 | myconf="${myconf} --with-readline" |
478 | myconf="${myconf} --with-readline" |
413 | myconf="${myconf} --with-row-based-replication" |
|
|
414 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
479 | myconf="${myconf} --with-zlib-dir=/usr/" |
415 | myconf="${myconf} --without-pstack" |
480 | myconf="${myconf} --without-pstack" |
416 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
481 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
482 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
483 | myconf="${myconf} $(use_enable community community-features)" |
|
|
484 | if use community; then |
|
|
485 | myconf="${myconf} $(use_enable profiling)" |
|
|
486 | else |
|
|
487 | myconf="${myconf} --disable-profiling" |
|
|
488 | fi |
|
|
489 | fi |
417 | |
490 | |
418 | # 5.1 introduces a new way to manage storage engines (plugins) |
491 | # 5.1 introduces a new way to manage storage engines (plugins) |
419 | # like configuration=none |
492 | # like configuration=none |
420 | local plugins="csv,myisam,myisammrg,heap" |
493 | local plugins="csv,myisam,myisammrg,heap" |
421 | if useq "extraengine" ; then |
494 | if use extraengine ; then |
422 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
495 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
496 | # not added yet: ibmdb2i |
|
|
497 | # Not supporting as examples: example,daemon_example,ftexample |
423 | plugins="${plugins},archive,blackhole,example,federated,partition" |
498 | plugins="${plugins},archive,blackhole,federated,partition" |
424 | |
499 | |
425 | elog "Before using the Federated storage engine, please be sure to read" |
500 | elog "Before using the Federated storage engine, please be sure to read" |
426 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
501 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
427 | fi |
502 | fi |
428 | |
503 | |
429 | if useq "innodb" ; then |
504 | # Upstream specifically requests that InnoDB always be built: |
430 | plugins="${plugins},innobase" |
505 | # - innobase, innodb_plugin |
431 | fi |
506 | # Build falcon if available for 6.x series. |
|
|
507 | for i in innobase innodb_plugin falcon ; do |
|
|
508 | [ -e "${S}"/storage/${i} ] && plugins="${plugins},${i}" |
|
|
509 | done |
432 | |
510 | |
433 | # like configuration=max-no-ndb |
511 | # like configuration=max-no-ndb |
434 | if useq "cluster" ; then |
512 | if use cluster ; then |
435 | plugins="${plugins},ndbcluster" |
513 | plugins="${plugins},ndbcluster" |
436 | myconf="${myconf} --with-ndb-binlog" |
514 | myconf="${myconf} --with-ndb-binlog" |
437 | fi |
515 | fi |
438 | |
516 | |
439 | myconf="${myconf} --with-plugins=${plugins}" |
517 | myconf="${myconf} --with-plugins=${plugins}" |
440 | } |
518 | } |
441 | |
519 | |
|
|
520 | xtradb_applicable() { |
|
|
521 | mysql_version_is_at_least "5.1.26" \ |
|
|
522 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
523 | && use xtradb |
|
|
524 | return $? |
|
|
525 | } |
|
|
526 | |
|
|
527 | pbxt_applicable() { |
|
|
528 | mysql_version_is_at_least "5.1.12" \ |
|
|
529 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
530 | && use pbxt |
|
|
531 | return $? |
|
|
532 | } |
|
|
533 | |
442 | pbxt_src_compile() { |
534 | pbxt_src_configure() { |
443 | mysql_init_vars |
535 | mysql_init_vars |
444 | |
536 | |
445 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
537 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
446 | |
538 | |
447 | einfo "Reconfiguring dir '${PWD}'" |
539 | einfo "Reconfiguring dir '${PWD}'" |
448 | AT_GNUCONF_UPDATE="yes" eautoreconf |
540 | AT_GNUCONF_UPDATE="yes" eautoreconf |
449 | |
541 | |
450 | local myconf |
542 | local myconf="" |
451 | myconf="${myconf} --with-mysql=${S}" |
|
|
452 | mkdir -p ${T}/lib |
|
|
453 | myconf="${myconf} --libdir=${D}/${MY_LIBDIR}" |
543 | myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}" |
454 | useq "debug" && myconf="${myconf} --with-debug=full" |
544 | use debug && myconf="${myconf} --with-debug=full" |
455 | # TODO is safe/needed to use econf here ? |
545 | # TODO: is it safe/needed to use econf here ? |
456 | ./configure ${myconf} || die "problem configuring pbxt storage engine" |
546 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
547 | } |
|
|
548 | |
|
|
549 | pbxt_src_compile() { |
|
|
550 | # Be backwards compatible for now |
|
|
551 | if [[ $EAPI != 2 ]]; then |
|
|
552 | pbxt_src_configure |
|
|
553 | fi |
457 | # TODO is safe/needed to use emake here ? |
554 | # TODO: is it safe/needed to use emake here ? |
458 | make || die "problem making pbxt storage engine (${myconf})" |
555 | make || die "Problem making PBXT storage engine (${myconf})" |
459 | |
556 | |
460 | popd |
557 | popd |
461 | # TODO: modify test suite |
558 | # TODO: modify test suite for PBXT |
462 | } |
559 | } |
463 | |
560 | |
464 | pbxt_src_install() { |
561 | pbxt_src_install() { |
465 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
562 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
466 | make install || die "failed pbxt install" |
563 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
467 | popd |
564 | popd |
468 | } |
565 | } |
469 | |
566 | |
470 | # |
567 | # |
471 | # EBUILD FUNCTIONS |
568 | # EBUILD FUNCTIONS |
472 | # |
569 | # |
473 | |
570 | # @FUNCTION: mysql_pkg_setup |
|
|
571 | # @DESCRIPTION: |
|
|
572 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
573 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
574 | # check for conflicting use flags |
|
|
575 | # create new user and group for mysql |
|
|
576 | # warn about deprecated features |
474 | mysql_pkg_setup() { |
577 | mysql_pkg_setup() { |
475 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
578 | if hasq test ${FEATURES} ; then |
476 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
579 | if ! use minimal ; then |
|
|
580 | if [[ $UID -eq 0 ]]; then |
|
|
581 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
582 | fi |
|
|
583 | fi |
|
|
584 | fi |
477 | |
585 | |
478 | # Check for USE flag problems in pkg_setup |
586 | # Check for USE flag problems in pkg_setup |
479 | if useq "static" && useq "ssl" ; then |
587 | if use static && use ssl ; then |
480 | eerror "MySQL does not support being built statically with SSL support enabled!" |
588 | eerror "MySQL does not support being built statically with SSL support enabled!" |
481 | die "MySQL does not support being built statically with SSL support enabled!" |
589 | die "MySQL does not support being built statically with SSL support enabled!" |
482 | fi |
590 | fi |
483 | |
591 | |
484 | if ! mysql_version_is_at_least "5.0" \ |
592 | if ! mysql_version_is_at_least "5.0" \ |
485 | && useq "raid" \ |
593 | && use raid \ |
486 | && useq "static" ; then |
594 | && use static ; then |
487 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
595 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
488 | eerror "with RAID support enabled." |
596 | eerror "with RAID support enabled." |
489 | die "USE flags 'raid' and 'static' conflict!" |
597 | die "USE flags 'raid' and 'static' conflict!" |
490 | fi |
598 | fi |
491 | |
599 | |
492 | if mysql_version_is_at_least "4.1.3" \ |
600 | if mysql_version_is_at_least "4.1.3" \ |
493 | && ( useq "cluster" || useq "extraengine" ) \ |
601 | && ( use cluster || use extraengine ) \ |
494 | && useq "minimal" ; then |
602 | && use minimal ; then |
495 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
603 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
496 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
604 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
497 | fi |
605 | fi |
498 | |
606 | |
|
|
607 | # Bug #290570 fun. Upstream made us need a fairly new GCC4. |
|
|
608 | if mysql_version_is_at_least "5.0.83" ; then |
|
|
609 | GCC_VER=$(gcc-version) |
|
|
610 | case ${GCC_VER} in |
|
|
611 | 2*|3*|4.0|4.1|4.2) die "Active GCC too old! Must have at least GCC4.3" ;; |
|
|
612 | esac |
|
|
613 | fi |
|
|
614 | |
|
|
615 | # This should come after all of the die statements |
|
|
616 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
617 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
618 | |
499 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
619 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
500 | && useq "berkdb" \ |
620 | && use berkdb \ |
501 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
621 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
502 | } |
|
|
503 | |
622 | |
|
|
623 | if [ "${PN}" != "mysql-cluster" ] && use cluster; then |
|
|
624 | ewarn "Upstream has noted that the NDB cluster support in the 5.0 and" |
|
|
625 | ewarn "5.1 series should NOT be put into production. In the near" |
|
|
626 | ewarn "future, it will be disabled from building." |
|
|
627 | ewarn "" |
|
|
628 | ewarn "If you need NDB support, you should instead move to the new" |
|
|
629 | ewarn "mysql-cluster package that represents that upstream NDB" |
|
|
630 | ewarn "development." |
|
|
631 | fi |
|
|
632 | } |
|
|
633 | |
|
|
634 | # @FUNCTION: mysql_src_unpack |
|
|
635 | # @DESCRIPTION: |
|
|
636 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
504 | mysql_src_unpack() { |
637 | mysql_src_unpack() { |
505 | # Initialize the proper variables first |
638 | # Initialize the proper variables first |
506 | mysql_init_vars |
639 | mysql_init_vars |
507 | |
640 | |
508 | unpack ${A} |
641 | unpack ${A} |
509 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
642 | # Grab the patches |
510 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
643 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
511 | bitkeeper_fetch "mysql-5.1-ndb" |
644 | |
512 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
513 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
514 | else |
|
|
515 | bitkeeper_fetch |
|
|
516 | fi |
|
|
517 | cd "${S}" |
|
|
518 | einfo "running upstream autorun on bk sources" |
|
|
519 | BUILD/autorun.sh |
|
|
520 | else |
|
|
521 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
645 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
646 | |
|
|
647 | # Be backwards compatible for now |
|
|
648 | case ${EAPI:-0} in |
|
|
649 | 2) : ;; |
|
|
650 | 0 | 1) mysql_src_prepare ;; |
|
|
651 | esac |
|
|
652 | } |
|
|
653 | |
|
|
654 | # @FUNCTION: mysql_src_prepare |
|
|
655 | # @DESCRIPTION: |
|
|
656 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
657 | mysql_src_prepare() { |
522 | cd "${S}" |
658 | cd "${S}" |
523 | fi |
|
|
524 | |
659 | |
525 | # Apply the patches for this MySQL version |
660 | # Apply the patches for this MySQL version |
526 | EPATCH_SUFFIX="patch" |
661 | EPATCH_SUFFIX="patch" |
527 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
662 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
663 | # Clean out old items |
|
|
664 | rm -f "${EPATCH_SOURCE}"/* |
|
|
665 | # Now link in right patches |
528 | mysql_mv_patches |
666 | mysql_mv_patches |
529 | epatch || die "failed to apply all patches" |
667 | # And apply |
|
|
668 | epatch |
|
|
669 | |
|
|
670 | # last -fPIC fixup, per bug #305873 |
|
|
671 | i="${S}"/storage/innodb_plugin/plug.in |
|
|
672 | [ -f "${i}" ] && sed -i -e '/CFLAGS/s,-prefer-non-pic,,g' "${i}" |
530 | |
673 | |
531 | # Additional checks, remove bundled zlib |
674 | # Additional checks, remove bundled zlib |
532 | rm -f "${S}/zlib/"*.[ch] |
675 | rm -f "${S}/zlib/"*.[ch] |
533 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
676 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
534 | rm -f "scripts/mysqlbug" |
677 | rm -f "scripts/mysqlbug" |
… | |
… | |
537 | find . -name 'Makefile.am' \ |
680 | find . -name 'Makefile.am' \ |
538 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
681 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
539 | |
682 | |
540 | if mysql_version_is_at_least "4.1" ; then |
683 | if mysql_version_is_at_least "4.1" ; then |
541 | # Remove what needs to be recreated, so we're sure it's actually done |
684 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
685 | einfo "Cleaning up old buildscript files" |
542 | find . -name Makefile \ |
686 | find . -name Makefile \ |
543 | -o -name Makefile.in \ |
687 | -o -name Makefile.in \ |
544 | -o -name configure \ |
688 | -o -name configure \ |
545 | -exec rm -f {} \; |
689 | -exec rm -f {} \; |
546 | rm -f "ltmain.sh" |
690 | rm -f "ltmain.sh" |
547 | rm -f "scripts/mysqlbug" |
691 | rm -f "scripts/mysqlbug" |
548 | fi |
692 | fi |
549 | |
693 | |
550 | local rebuilddirlist d |
694 | local rebuilddirlist d |
551 | |
695 | |
|
|
696 | if xtradb_applicable ; then |
|
|
697 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
698 | pushd "${S}"/storage |
|
|
699 | i="innobase" |
|
|
700 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
701 | # Have we been here already? |
|
|
702 | [ -d "${o}" ] && rm -f "${i}" |
|
|
703 | # Or maybe we haven't |
|
|
704 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
705 | cp -ra "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
706 | popd |
|
|
707 | fi |
|
|
708 | |
552 | if mysql_version_is_at_least "5.1.12" ; then |
709 | if mysql_version_is_at_least "5.1.12" ; then |
553 | rebuilddirlist="." |
710 | rebuilddirlist="." |
|
|
711 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
712 | #einfo "Updating innobase cmake" |
554 | # TODO IMPO! Check this with a cmake expert |
713 | ## TODO: check this with a cmake expert |
555 | useq "innodb" \ |
|
|
556 | && cmake \ |
714 | #cmake \ |
557 | -DCMAKE_C_COMPILER=$(which $(tc-getCC)) \ |
715 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
558 | -DCMAKE_CXX_COMPILER=$(which $(tc-getCC)) \ |
716 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
559 | "storage/innobase" |
717 | # "storage/innobase" |
560 | else |
718 | else |
561 | rebuilddirlist=". innobase" |
719 | rebuilddirlist=". innobase" |
562 | fi |
720 | fi |
563 | |
721 | |
564 | for d in ${rebuilddirlist} ; do |
722 | for d in ${rebuilddirlist} ; do |
… | |
… | |
567 | AT_GNUCONF_UPDATE="yes" eautoreconf |
725 | AT_GNUCONF_UPDATE="yes" eautoreconf |
568 | popd &>/dev/null |
726 | popd &>/dev/null |
569 | done |
727 | done |
570 | |
728 | |
571 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
729 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
572 | && useq "berkdb" ; then |
730 | && use berkdb ; then |
|
|
731 | einfo "Fixing up berkdb buildsystem" |
573 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
732 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
|
|
733 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
734 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
735 | #These files exist only with libtool-2*, and need to be included. |
|
|
736 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
737 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
738 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
739 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
740 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
741 | fi |
574 | pushd "bdb/dist" \ |
742 | pushd "bdb/dist" &>/dev/null |
575 | && sh s_all \ |
743 | sh s_all \ |
576 | || die "Failed bdb reconfigure" \ |
744 | || die "Failed bdb reconfigure" |
577 | &>/dev/null |
|
|
578 | popd &>/dev/null |
745 | popd &>/dev/null |
579 | fi |
746 | fi |
580 | } |
747 | } |
581 | |
748 | |
|
|
749 | # @FUNCTION: mysql_src_configure |
|
|
750 | # @DESCRIPTION: |
|
|
751 | # Configure mysql to build the code for Gentoo respecting the use flags. |
582 | mysql_src_compile() { |
752 | mysql_src_configure() { |
583 | # Make sure the vars are correctly initialized |
753 | # Make sure the vars are correctly initialized |
584 | mysql_init_vars |
754 | mysql_init_vars |
585 | |
755 | |
586 | # $myconf is modified by the configure_* functions |
756 | # $myconf is modified by the configure_* functions |
587 | local myconf="" |
757 | local myconf="" |
588 | |
758 | |
589 | if useq "minimal" ; then |
759 | if use minimal ; then |
590 | configure_minimal |
760 | configure_minimal |
591 | else |
761 | else |
592 | configure_common |
762 | configure_common |
593 | if mysql_version_is_at_least "5.1.10" ; then |
763 | if mysql_version_is_at_least "5.1.10" ; then |
594 | configure_51 |
764 | configure_51 |
… | |
… | |
601 | filter-flags "-O" "-O[01]" |
771 | filter-flags "-O" "-O[01]" |
602 | |
772 | |
603 | # glib-2.3.2_pre fix, bug #16496 |
773 | # glib-2.3.2_pre fix, bug #16496 |
604 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
774 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
605 | |
775 | |
|
|
776 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
777 | # fail badly during cluster startup. |
|
|
778 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
779 | filter-flags "-fstack-protector-all" |
|
|
780 | fi |
|
|
781 | |
606 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
782 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
607 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
783 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
608 | mysql_version_is_at_least "5.0" \ |
784 | mysql_version_is_at_least "5.0" \ |
609 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
785 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
610 | export CXXFLAGS |
786 | export CXXFLAGS |
611 | |
787 | |
|
|
788 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
789 | append-flags -fno-strict-aliasing |
|
|
790 | |
612 | econf \ |
791 | econf \ |
613 | --program-suffix="${MY_SUFFIX}" \ |
|
|
614 | --libexecdir="/usr/sbin" \ |
792 | --libexecdir="/usr/sbin" \ |
615 | --sysconfdir="${MY_SYSCONFDIR}" \ |
793 | --sysconfdir="${MY_SYSCONFDIR}" \ |
616 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
794 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
617 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
795 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
618 | --libdir="${MY_LIBDIR}" \ |
796 | --libdir="${MY_LIBDIR}" \ |
… | |
… | |
627 | # TODO: Move this before autoreconf !!! |
805 | # TODO: Move this before autoreconf !!! |
628 | find . -type f -name Makefile -print0 \ |
806 | find . -type f -name Makefile -print0 \ |
629 | | xargs -0 -n100 sed -i \ |
807 | | xargs -0 -n100 sed -i \ |
630 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
808 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
631 | |
809 | |
|
|
810 | if [[ $EAPI == 2 ]]; then |
|
|
811 | pbxt_applicable && pbxt_src_configure |
|
|
812 | fi |
|
|
813 | } |
|
|
814 | |
|
|
815 | # @FUNCTION: mysql_src_compile |
|
|
816 | # @DESCRIPTION: |
|
|
817 | # Compile the mysql code. |
|
|
818 | mysql_src_compile() { |
|
|
819 | # Be backwards compatible for now |
|
|
820 | case ${EAPI:-0} in |
|
|
821 | 2) : ;; |
|
|
822 | 0 | 1) mysql_src_configure ;; |
|
|
823 | esac |
|
|
824 | |
632 | emake || die "emake failed" |
825 | emake || die "emake failed" |
633 | |
826 | |
634 | mysql_version_is_at_least "5.1.1" && useq "pbxt" && pbxt_src_compile |
827 | pbxt_applicable && pbxt_src_compile |
635 | } |
828 | } |
636 | |
829 | |
|
|
830 | # @FUNCTION: mysql_src_install |
|
|
831 | # @DESCRIPTION: |
|
|
832 | # Install mysql. |
637 | mysql_src_install() { |
833 | mysql_src_install() { |
638 | # Make sure the vars are correctly initialized |
834 | # Make sure the vars are correctly initialized |
639 | mysql_init_vars |
835 | mysql_init_vars |
640 | |
836 | |
641 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
837 | emake install \ |
|
|
838 | DESTDIR="${D}" \ |
|
|
839 | benchdir_root="${MY_SHAREDSTATEDIR}" \ |
|
|
840 | testroot="${MY_SHAREDSTATEDIR}" \ |
|
|
841 | || die "emake install failed" |
642 | |
842 | |
643 | mysql_version_is_at_least "5.1.12" && useq "pbxt" && pbxt_src_install |
843 | pbxt_applicable && pbxt_src_install |
644 | |
|
|
645 | insinto "${MY_INCLUDEDIR}" |
|
|
646 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
647 | |
844 | |
648 | # Convenience links |
845 | # Convenience links |
|
|
846 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
649 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
847 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
650 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
848 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
651 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
849 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
652 | |
850 | |
653 | # Various junk (my-*.cnf moved elsewhere) |
851 | # Various junk (my-*.cnf moved elsewhere) |
|
|
852 | einfo "Removing duplicate /usr/share/mysql files" |
654 | rm -Rf "${D}/usr/share/info" |
853 | rm -Rf "${D}/usr/share/info" |
655 | for removeme in "mysql-log-rotate" mysql.server* \ |
854 | for removeme in "mysql-log-rotate" mysql.server* \ |
656 | binary-configure* my-*.cnf mi_test_all* |
855 | binary-configure* my-*.cnf mi_test_all* |
657 | do |
856 | do |
658 | rm -f "${D}"/usr/share/mysql/${removeme} |
857 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
659 | done |
858 | done |
660 | |
859 | |
661 | # TODO change at Makefile-am level |
|
|
662 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
663 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
664 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
665 | do |
|
|
666 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
667 | done |
|
|
668 | fi |
|
|
669 | |
|
|
670 | # clean up stuff for a minimal build |
860 | # Clean up stuff for a minimal build |
671 | if useq "minimal" ; then |
861 | if use minimal ; then |
|
|
862 | einfo "Remove all extra content for minimal build" |
672 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
863 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
673 | 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} |
864 | 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} |
674 | rm -f "${D}/usr/sbin/mysqld" |
865 | rm -f "${D}/usr/sbin/mysqld" |
675 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
866 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
676 | fi |
867 | fi |
677 | |
868 | |
678 | if [[ ${PN} == "mysql-slotted" ]] ; then |
869 | # Unless they explicitly specific USE=test, then do not install the |
679 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
870 | # testsuite. It DOES have a use to be installed, esp. when you want to do a |
680 | if [[ -n "${notcatched}" ]] ; then |
871 | # validation of your database configuration after tuning it. |
681 | ewarn "QA notice" |
872 | if use !test ; then |
682 | ewarn "${notcatched} files in /usr/share/mysql" |
873 | rm -rf "${D}"/${MY_SHAREDSTATEDIR}/mysql-test |
683 | ewarn "bug mysql-herd to manage them" |
|
|
684 | fi |
|
|
685 | rm -Rf "${D}/usr/share/mysql" |
|
|
686 | fi |
874 | fi |
687 | |
875 | |
688 | # Configuration stuff |
876 | # Configuration stuff |
689 | if mysql_version_is_at_least "4.1" ; then |
877 | if mysql_version_is_at_least "4.1" ; then |
690 | mysql_mycnf_version="4.1" |
878 | mysql_mycnf_version="4.1" |
691 | else |
879 | else |
692 | mysql_mycnf_version="4.0" |
880 | mysql_mycnf_version="4.0" |
693 | fi |
881 | fi |
|
|
882 | einfo "Building default my.cnf" |
694 | insinto "${MY_SYSCONFDIR}" |
883 | insinto "${MY_SYSCONFDIR}" |
695 | doins scripts/mysqlaccess.conf |
884 | doins scripts/mysqlaccess.conf |
696 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
|
|
697 | -e "s!@DATADIR@!${DATADIR}!g" \ |
885 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
698 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
886 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
699 | > "${TMPDIR}/my.cnf.ok" |
887 | > "${TMPDIR}/my.cnf.ok" |
700 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
888 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
701 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
889 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
702 | fi |
890 | fi |
703 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
891 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
704 | |
892 | |
705 | # Minimal builds don't have the MySQL server |
893 | # Minimal builds don't have the MySQL server |
706 | if ! useq "minimal" ; then |
894 | if ! use minimal ; then |
|
|
895 | einfo "Creating initial directories" |
707 | # Empty directories ... |
896 | # Empty directories ... |
708 | diropts "-m0750" |
897 | diropts "-m0750" |
709 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
898 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
710 | dodir "${DATADIR}" |
899 | dodir "${MY_DATADIR}" |
711 | keepdir "${DATADIR}" |
900 | keepdir "${MY_DATADIR}" |
712 | chown -R mysql:mysql "${D}/${DATADIR}" |
901 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
713 | fi |
902 | fi |
714 | |
903 | |
715 | diropts "-m0755" |
904 | diropts "-m0755" |
716 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
905 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
717 | dodir "${folder}" |
906 | dodir "${folder}" |
… | |
… | |
719 | chown -R mysql:mysql "${D}/${folder}" |
908 | chown -R mysql:mysql "${D}/${folder}" |
720 | done |
909 | done |
721 | fi |
910 | fi |
722 | |
911 | |
723 | # Docs |
912 | # Docs |
|
|
913 | einfo "Installing docs" |
724 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
914 | dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
915 | doinfo "${S}"/Docs/mysql.info |
725 | |
916 | |
726 | # Minimal builds don't have the MySQL server |
917 | # Minimal builds don't have the MySQL server |
727 | if ! useq "minimal" ; then |
918 | if ! use minimal ; then |
|
|
919 | einfo "Including support files and sample configurations" |
|
|
920 | docinto "support-files" |
|
|
921 | for script in \ |
|
|
922 | "${S}"/support-files/my-*.cnf \ |
|
|
923 | "${S}"/support-files/magic \ |
|
|
924 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
925 | do |
|
|
926 | [[ -f "$script" ]] && dodoc "${script}" |
|
|
927 | done |
|
|
928 | |
|
|
929 | docinto "scripts" |
|
|
930 | for script in "${S}"/scripts/mysql* ; do |
|
|
931 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
932 | done |
|
|
933 | |
|
|
934 | fi |
|
|
935 | |
|
|
936 | mysql_lib_symlinks "${D}" |
|
|
937 | } |
|
|
938 | |
|
|
939 | # @FUNCTION: mysql_pkg_preinst |
|
|
940 | # @DESCRIPTION: |
|
|
941 | # Create the user and groups for mysql - die if that fails. |
|
|
942 | mysql_pkg_preinst() { |
|
|
943 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
944 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
945 | } |
|
|
946 | |
|
|
947 | # @FUNCTION: mysql_pkg_postinst |
|
|
948 | # @DESCRIPTION: |
|
|
949 | # Run post-installation tasks: |
|
|
950 | # create the dir for logfiles if non-existant |
|
|
951 | # touch the logfiles and secure them |
|
|
952 | # install scripts |
|
|
953 | # issue required steps for optional features |
|
|
954 | # issue deprecation warnings |
|
|
955 | mysql_pkg_postinst() { |
|
|
956 | # Make sure the vars are correctly initialized |
|
|
957 | mysql_init_vars |
|
|
958 | |
|
|
959 | # Check FEATURES="collision-protect" before removing this |
|
|
960 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
961 | |
|
|
962 | # Secure the logfiles |
|
|
963 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
964 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
965 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
966 | |
|
|
967 | # Minimal builds don't have the MySQL server |
|
|
968 | if ! use minimal ; then |
728 | docinto "support-files" |
969 | docinto "support-files" |
729 | for script in \ |
970 | for script in \ |
730 | support-files/my-*.cnf \ |
971 | support-files/my-*.cnf \ |
731 | support-files/magic \ |
972 | support-files/magic \ |
732 | support-files/ndb-config-2-node.ini |
973 | support-files/ndb-config-2-node.ini |
… | |
… | |
736 | |
977 | |
737 | docinto "scripts" |
978 | docinto "scripts" |
738 | for script in scripts/mysql* ; do |
979 | for script in scripts/mysql* ; do |
739 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
980 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
740 | done |
981 | done |
741 | fi |
|
|
742 | |
982 | |
743 | if [[ ${PN} == "mysql-slotted" ]] ; then |
983 | einfo |
744 | # MOVED HERE DUE TO BUG #121445 |
984 | elog "You might want to run:" |
745 | # create a list of files, to be used |
985 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
746 | # by external utilities |
986 | elog "if this is a new install." |
747 | mkdir -p "${D}/var/lib/eselect/mysql/" |
987 | einfo |
748 | local filelist="${D}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
749 | pushd "${D}/" &>/dev/null |
|
|
750 | find usr/bin/ usr/sbin/ \ |
|
|
751 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
752 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
753 | > "${filelist}" |
|
|
754 | find usr/share/man \ |
|
|
755 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
756 | | sed -e 's/$/.gz/' \ |
|
|
757 | >> "${filelist}" |
|
|
758 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
759 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
760 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
761 | popd &>/dev/null |
|
|
762 | fi |
988 | fi |
763 | } |
|
|
764 | |
989 | |
765 | mysql_pkg_preinst() { |
990 | if pbxt_applicable ; then |
766 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
991 | # TODO: explain it better |
767 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
992 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
768 | } |
993 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
994 | elog "if, after that, you cannot start the MySQL server," |
|
|
995 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
996 | elog "use the MySQL upgrade script to restore the table" |
|
|
997 | elog "or execute the following SQL command:" |
|
|
998 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
999 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
1000 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
1001 | elog " PRIMARY KEY (name)" |
|
|
1002 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
1003 | fi |
769 | |
1004 | |
|
|
1005 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
1006 | && use berkdb \ |
|
|
1007 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
1008 | } |
|
|
1009 | |
|
|
1010 | # @FUNCTION: mysql_pkg_config |
|
|
1011 | # @DESCRIPTION: |
|
|
1012 | # Configure mysql environment. |
770 | mysql_pkg_postinst() { |
1013 | mysql_pkg_config() { |
|
|
1014 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
1015 | |
771 | # Make sure the vars are correctly initialized |
1016 | # Make sure the vars are correctly initialized |
772 | mysql_init_vars |
1017 | mysql_init_vars |
773 | |
1018 | |
774 | # Check FEATURES="collision-protect" before removing this |
|
|
775 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
776 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
777 | |
|
|
778 | # Secure the logfiles |
|
|
779 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
780 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
781 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
782 | |
|
|
783 | # Minimal builds don't have the MySQL server |
|
|
784 | if ! useq "minimal" ; then |
|
|
785 | docinto "support-files" |
|
|
786 | for script in \ |
|
|
787 | support-files/my-*.cnf \ |
|
|
788 | support-files/magic \ |
|
|
789 | support-files/ndb-config-2-node.ini |
|
|
790 | do |
|
|
791 | dodoc "${script}" |
|
|
792 | done |
|
|
793 | |
|
|
794 | docinto "scripts" |
|
|
795 | for script in scripts/mysql* ; do |
|
|
796 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
797 | done |
|
|
798 | fi |
|
|
799 | |
|
|
800 | einfo "you may want to read slotting upgrade documents in the overlay" |
|
|
801 | if useq "pbxt" && mysql_version_is_at_least "5.1" ; then |
|
|
802 | # TODO tell it better ;-) |
|
|
803 | einfo "mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
804 | einfo "CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
805 | einfo "if, after that you cannot start the mysql server" |
|
|
806 | einfo "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
807 | einfo "use the mysql upgrade script to restore the table" |
|
|
808 | einfo " or " |
|
|
809 | einfo "CREATE TABLE IF NOT EXISTS plugin (" |
|
|
810 | einfo " name char(64) binary DEFAULT '' NOT NULL," |
|
|
811 | einfo " dl char(128) DEFAULT '' NOT NULL," |
|
|
812 | einfo " PRIMARY KEY (name)" |
|
|
813 | einfo ") CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
814 | fi |
|
|
815 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
816 | && useq "berkdb" \ |
|
|
817 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
818 | } |
|
|
819 | |
|
|
820 | mysql_pkg_config() { |
|
|
821 | # Make sure the vars are correctly initialized |
|
|
822 | mysql_init_vars |
|
|
823 | |
|
|
824 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
1019 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
825 | |
1020 | |
826 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
1021 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
827 | die "Minimal builds do NOT include the MySQL server" |
1022 | die "Minimal builds do NOT include the MySQL server" |
|
|
1023 | fi |
|
|
1024 | |
|
|
1025 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1026 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1027 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1028 | |
|
|
1029 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1030 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1031 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1032 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1033 | else |
|
|
1034 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1035 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1036 | || die "Moving MY_DATADIR failed" |
|
|
1037 | fi |
|
|
1038 | else |
|
|
1039 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1040 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1041 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1042 | else |
|
|
1043 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1044 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1045 | fi |
|
|
1046 | fi |
828 | fi |
1047 | fi |
829 | |
1048 | |
830 | local pwd1="a" |
1049 | local pwd1="a" |
831 | local pwd2="b" |
1050 | local pwd2="b" |
832 | local maxtry=5 |
1051 | local maxtry=5 |
833 | |
1052 | |
834 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
1053 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
835 | ewarn "You have already a MySQL database in place." |
1054 | ewarn "You have already a MySQL database in place." |
836 | ewarn "(${ROOT}/${DATADIR}/*)" |
1055 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
837 | ewarn "Please rename or delete it if you wish to replace it." |
1056 | ewarn "Please rename or delete it if you wish to replace it." |
838 | die "MySQL database already exists!" |
1057 | die "MySQL database already exists!" |
839 | fi |
1058 | fi |
|
|
1059 | |
|
|
1060 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
1061 | # localhost. Also causes weird failures. |
|
|
1062 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
840 | |
1063 | |
841 | einfo "Creating the mysql database and setting proper" |
1064 | einfo "Creating the mysql database and setting proper" |
842 | einfo "permissions on it ..." |
1065 | einfo "permissions on it ..." |
843 | |
1066 | |
844 | einfo "Insert a password for the mysql 'root' user" |
1067 | einfo "Insert a password for the mysql 'root' user" |
… | |
… | |
860 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1083 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
861 | || touch "${TMPDIR}/fill_help_tables.sql" |
1084 | || touch "${TMPDIR}/fill_help_tables.sql" |
862 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1085 | help_tables="${TMPDIR}/fill_help_tables.sql" |
863 | |
1086 | |
864 | pushd "${TMPDIR}" &>/dev/null |
1087 | pushd "${TMPDIR}" &>/dev/null |
865 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
1088 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1089 | if [ $? -ne 0 ]; then |
|
|
1090 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1091 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1092 | fi |
866 | popd &>/dev/null |
1093 | popd &>/dev/null |
867 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
1094 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
868 | || die "MySQL databases not installed" |
1095 | || die "MySQL databases not installed" |
869 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
1096 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
870 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
1097 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
871 | |
1098 | |
872 | if mysql_version_is_at_least "4.1.3" ; then |
1099 | if mysql_version_is_at_least "4.1.3" ; then |
873 | options="--skip-ndbcluster" |
1100 | options="--skip-ndbcluster" |
874 | |
1101 | |
875 | # Filling timezones, see |
1102 | # Filling timezones, see |
… | |
… | |
886 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1113 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
887 | ${options} \ |
1114 | ${options} \ |
888 | --user=mysql \ |
1115 | --user=mysql \ |
889 | --skip-grant-tables \ |
1116 | --skip-grant-tables \ |
890 | --basedir=${ROOT}/usr \ |
1117 | --basedir=${ROOT}/usr \ |
891 | --datadir=${ROOT}/${DATADIR} \ |
1118 | --datadir=${ROOT}/${MY_DATADIR} \ |
892 | --skip-innodb \ |
1119 | --skip-innodb \ |
893 | --skip-bdb \ |
1120 | --skip-bdb \ |
894 | --skip-networking \ |
1121 | --skip-networking \ |
895 | --max_allowed_packet=8M \ |
1122 | --max_allowed_packet=8M \ |
896 | --net_buffer_length=16K \ |
1123 | --net_buffer_length=16K \ |
… | |
… | |
925 | einfo "Stopping the server ..." |
1152 | einfo "Stopping the server ..." |
926 | wait %1 |
1153 | wait %1 |
927 | einfo "Done" |
1154 | einfo "Done" |
928 | } |
1155 | } |
929 | |
1156 | |
|
|
1157 | # @FUNCTION: mysql_pkg_postrm |
|
|
1158 | # @DESCRIPTION: |
|
|
1159 | # Remove mysql symlinks. |
930 | mysql_pkg_postrm() { |
1160 | mysql_pkg_postrm() { |
931 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
932 | mysql_lib_symlinks |
1161 | : # mysql_lib_symlinks "${D}" |
933 | fi |
|
|
934 | } |
1162 | } |