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