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