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