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.113 2009/07/06 19:05:07 robbat2 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> |
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
9 | |
17 | |
10 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
11 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
|
|
20 | |
|
|
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
|
|
22 | |
|
|
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
24 | # and we will run a mysql server during test phase |
|
|
25 | S="${WORKDIR}/mysql" |
|
|
26 | |
|
|
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
29 | EGIT_PROJECT=mysql-extras |
|
|
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
31 | inherit git |
|
|
32 | fi |
12 | |
33 | |
13 | case "${EAPI:-0}" in |
34 | case "${EAPI:-0}" in |
14 | 2) |
35 | 2) |
15 | EXPORT_FUNCTIONS pkg_setup \ |
36 | EXPORT_FUNCTIONS pkg_setup \ |
16 | src_unpack src_prepare \ |
37 | src_unpack src_prepare \ |
… | |
… | |
18 | src_install \ |
39 | src_install \ |
19 | pkg_preinst pkg_postinst \ |
40 | pkg_preinst pkg_postinst \ |
20 | pkg_config pkg_postrm |
41 | pkg_config pkg_postrm |
21 | IUSE_DEFAULT_ON='+' |
42 | IUSE_DEFAULT_ON='+' |
22 | ;; |
43 | ;; |
23 | *) |
44 | 0 | 1) |
24 | EXPORT_FUNCTIONS pkg_setup \ |
45 | EXPORT_FUNCTIONS pkg_setup \ |
25 | src_unpack \ |
46 | src_unpack \ |
26 | src_compile \ |
47 | src_compile \ |
27 | src_install \ |
48 | src_install \ |
28 | pkg_preinst pkg_postinst \ |
49 | pkg_preinst pkg_postinst \ |
29 | pkg_config pkg_postrm |
50 | pkg_config pkg_postrm |
30 | ;; |
51 | ;; |
|
|
52 | *) |
|
|
53 | die "Unsupported EAPI: ${EAPI}" ;; |
31 | esac |
54 | esac |
32 | |
55 | |
33 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
|
|
34 | |
56 | |
35 | # Shorten the path because the socket path length must be shorter than 107 chars |
57 | # @ECLASS-VARIABLE: MYSQL_PV_MAJOR |
36 | # and we will run a mysql server during test phase |
58 | # @DESCRIPTION: |
37 | S="${WORKDIR}/mysql" |
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})" |
38 | |
63 | |
39 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
64 | # Cluster is a special case... |
40 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
65 | if [[ "${PN}" == "mysql-cluster" ]]; then |
41 | EGIT_PROJECT=mysql-extras |
66 | case $PV in |
42 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
67 | 6.1*|7.0*|7.1*) MYSQL_PV_MAJOR=5.1 ;; |
43 | inherit git |
68 | esac |
44 | fi |
69 | fi |
45 | |
70 | |
|
|
71 | |
|
|
72 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
73 | # @DESCRIPTION: |
46 | # MYSQL_VERSION_ID will be: |
74 | # MYSQL_VERSION_ID will be: |
47 | # 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] |
48 | # 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 |
49 | # depend on this variable. |
77 | # depend on this variable. |
50 | # 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" |
… | |
… | |
59 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
87 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
60 | done |
88 | done |
61 | # 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) |
62 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
90 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
63 | |
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). |
64 | # Community features are available in mysql-community |
96 | # Community features are available in mysql-community |
65 | # AND in the re-merged mysql-5.0.82 and newer |
97 | # AND in the re-merged mysql-5.0.82 and newer |
66 | if [ "${PN}" == "mysql-community" ]; then |
98 | if [ "${PN}" == "mysql-community" -o "${PN}" == "mariadb" ]; then |
67 | MYSQL_COMMUNITY_FEATURES=1 |
99 | MYSQL_COMMUNITY_FEATURES=1 |
68 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
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 |
69 | MYSQL_COMMUNITY_FEATURES=1 |
111 | MYSQL_COMMUNITY_FEATURES=1 |
70 | else |
112 | else |
71 | MYSQL_COMMUNITY_FEATURES=0 |
113 | MYSQL_COMMUNITY_FEATURES=0 |
72 | fi |
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}" |
73 | |
125 | |
74 | # Be warned, *DEPEND are version-dependant |
126 | # Be warned, *DEPEND are version-dependant |
75 | # These are used for both runtime and compiletime |
127 | # These are used for both runtime and compiletime |
76 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
128 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
77 | userland_GNU? ( sys-process/procps ) |
129 | userland_GNU? ( sys-process/procps ) |
78 | >=sys-apps/sed-4 |
130 | >=sys-apps/sed-4 |
79 | >=sys-apps/texinfo-4.7-r1 |
131 | >=sys-apps/texinfo-4.7-r1 |
80 | >=sys-libs/readline-4.1 |
132 | >=sys-libs/readline-4.1 |
81 | >=sys-libs/zlib-1.2.3" |
133 | >=sys-libs/zlib-1.2.3" |
82 | |
134 | |
|
|
135 | [[ "${PN}" == "mariadb" ]] \ |
|
|
136 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
|
|
137 | |
83 | # 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 |
84 | for i in "" "-community" ; do |
139 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
85 | [[ "${i}" == ${PN#mysql} ]] || |
140 | [[ "${i}" == ${PN} ]] || |
86 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
141 | DEPEND="${DEPEND} !dev-db/${i}" |
87 | done |
142 | done |
88 | |
143 | |
89 | RDEPEND="${DEPEND} |
144 | RDEPEND="${DEPEND} |
90 | !minimal? ( dev-db/mysql-init-scripts ) |
145 | !minimal? ( dev-db/mysql-init-scripts ) |
91 | selinux? ( sec-policy/selinux-mysql )" |
146 | selinux? ( sec-policy/selinux-mysql )" |
92 | |
147 | |
|
|
148 | DEPEND="${DEPEND} |
|
|
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 | |
93 | # compile-time-only |
155 | # compile-time-only |
94 | mysql_version_is_at_least "5.1" \ |
156 | mysql_version_is_at_least "5.1" \ |
95 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
157 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
96 | |
158 | |
97 | # compile-time-only |
159 | # compile-time-only |
98 | mysql_version_is_at_least "5.1.12" \ |
160 | mysql_version_is_at_least "5.1.12" \ |
99 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
161 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
100 | |
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 | |
101 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
169 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
102 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
170 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
103 | |
171 | |
104 | # For other stuff to bring us in |
172 | # For other stuff to bring us in |
105 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
173 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
106 | |
174 | |
107 | # Work out the default SERVER_URI correctly |
175 | # Work out the default SERVER_URI correctly |
108 | if [ -z "${SERVER_URI}" ]; then |
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 | " |
109 | # The community build is on the mirrors |
189 | # The community and cluster builds are on the mirrors |
110 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
190 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
111 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
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}" |
112 | # The (old) enterprise source is on the primary site only |
203 | # The (old) enterprise source is on the primary site only |
113 | elif [ "${PN}" == "mysql" ]; then |
204 | elif [ "${PN}" == "mysql" ]; then |
114 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
205 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
115 | fi |
206 | fi |
116 | fi |
207 | fi |
117 | |
208 | |
118 | # Define correct SRC_URIs |
209 | # Define correct SRC_URIs |
119 | SRC_URI="${SERVER_URI}" |
210 | SRC_URI="${SERVER_URI}" |
120 | |
211 | |
121 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
212 | # Gentoo patches to MySQL |
|
|
213 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
214 | && SRC_URI="${SRC_URI} |
122 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
215 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
123 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
216 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
124 | mysql_version_is_at_least "5.1.12" \ |
217 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
125 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
126 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
|
|
127 | |
218 | |
128 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
219 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
129 | HOMEPAGE="http://www.mysql.com/" |
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 |
130 | LICENSE="GPL-2" |
228 | LICENSE="GPL-2" |
131 | SLOT="0" |
229 | SLOT="0" |
132 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
230 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
133 | |
231 | |
134 | mysql_version_is_at_least "4.1" \ |
232 | mysql_version_is_at_least "4.1" \ |
135 | && IUSE="${IUSE} latin1" |
233 | && IUSE="${IUSE} latin1" |
136 | |
234 | |
137 | mysql_version_is_at_least "4.1.3" \ |
235 | if mysql_version_is_at_least "4.1.3" ; then |
138 | && IUSE="${IUSE} cluster extraengine" |
236 | IUSE="${IUSE} extraengine" |
|
|
237 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
238 | IUSE="${IUSE} cluster" |
|
|
239 | fi |
|
|
240 | fi |
139 | |
241 | |
140 | mysql_version_is_at_least "5.0" \ |
242 | mysql_version_is_at_least "5.0" \ |
141 | || IUSE="${IUSE} raid" |
243 | || IUSE="${IUSE} raid" |
142 | |
244 | |
143 | mysql_version_is_at_least "5.0.18" \ |
245 | mysql_version_is_at_least "5.0.18" \ |
144 | && IUSE="${IUSE} max-idx-128" |
246 | && IUSE="${IUSE} max-idx-128" |
145 | |
247 | |
146 | mysql_version_is_at_least "5.1" \ |
248 | mysql_version_is_at_least "5.1" \ |
147 | || IUSE="${IUSE} berkdb" |
249 | || IUSE="${IUSE} berkdb" |
148 | |
250 | |
149 | mysql_version_is_at_least "5.1.12" \ |
|
|
150 | && IUSE="${IUSE} pbxt" |
|
|
151 | |
|
|
152 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
251 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
153 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
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" |
154 | |
312 | |
155 | # |
313 | # |
156 | # HELPER FUNCTIONS: |
314 | # HELPER FUNCTIONS: |
157 | # |
315 | # |
158 | |
316 | |
|
|
317 | # @FUNCTION: mysql_disable_test |
|
|
318 | # @DESCRIPTION: |
|
|
319 | # Helper function to disable specific tests. |
159 | mysql_disable_test() { |
320 | mysql_disable_test() { |
|
|
321 | local rawtestname testname testsuite reason mysql_disable_file |
160 | local testname="${1}" ; shift |
322 | rawtestname="${1}" ; shift |
161 | local reason="${@}" |
323 | reason="${@}" |
|
|
324 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
325 | |
|
|
326 | testsuite="${rawtestname/.*}" |
|
|
327 | testname="${rawtestname/*.}" |
162 | 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}" |
163 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
330 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
164 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
165 | } |
|
|
166 | |
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: |
167 | # void mysql_init_vars() |
361 | # void mysql_init_vars() |
168 | # |
|
|
169 | # Initialize global variables |
362 | # Initialize global variables |
170 | # 2005-11-19 <vivo@gentoo.org> |
363 | # 2005-11-19 <vivo@gentoo.org> |
171 | |
|
|
172 | mysql_init_vars() { |
364 | mysql_init_vars() { |
173 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
365 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
174 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
366 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
175 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
367 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
176 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
368 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
… | |
… | |
220 | MY_DATADIR="${new_MY_DATADIR}" |
412 | MY_DATADIR="${new_MY_DATADIR}" |
221 | fi |
413 | fi |
222 | fi |
414 | fi |
223 | fi |
415 | fi |
224 | |
416 | |
|
|
417 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
225 | MY_SOURCEDIR=${SERVER_URI##*/} |
418 | MY_SOURCEDIR=${SERVER_URI##*/} |
226 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
419 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
|
|
420 | fi |
227 | |
421 | |
228 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
422 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
229 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
423 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
230 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
424 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
231 | } |
425 | } |
… | |
… | |
278 | if use debug ; then |
472 | if use debug ; then |
279 | myconf="${myconf} --with-debug=full" |
473 | myconf="${myconf} --with-debug=full" |
280 | else |
474 | else |
281 | myconf="${myconf} --without-debug" |
475 | myconf="${myconf} --without-debug" |
282 | mysql_version_is_at_least "4.1.3" \ |
476 | mysql_version_is_at_least "4.1.3" \ |
283 | && use cluster \ |
477 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
284 | && myconf="${myconf} --without-ndb-debug" |
478 | && myconf="${myconf} --without-ndb-debug" |
285 | fi |
479 | fi |
286 | |
480 | |
287 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
481 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
288 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
482 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
… | |
… | |
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 |
|
|
324 | |
|
|
325 | if mysql_version_is_at_least "5.1.11" ; then |
|
|
326 | myconf="${myconf} $(use_with ssl)" |
|
|
327 | else |
|
|
328 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
329 | fi |
519 | fi |
330 | |
520 | |
331 | if mysql_version_is_at_least "5.0.60" ; then |
521 | if mysql_version_is_at_least "5.0.60" ; then |
332 | if use berkdb ; then |
522 | if use berkdb ; then |
333 | elog "Berkeley DB support was disabled due to build failures" |
523 | elog "Berkeley DB support was disabled due to build failures" |
… | |
… | |
349 | myconf="${myconf} --without-berkeley-db" |
539 | myconf="${myconf} --without-berkeley-db" |
350 | fi |
540 | fi |
351 | |
541 | |
352 | if mysql_version_is_at_least "4.1.3" ; then |
542 | if mysql_version_is_at_least "4.1.3" ; then |
353 | myconf="${myconf} --with-geometry" |
543 | myconf="${myconf} --with-geometry" |
|
|
544 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
354 | myconf="${myconf} $(use_with cluster ndbcluster)" |
545 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
546 | fi |
355 | fi |
547 | fi |
356 | |
548 | |
357 | 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 |
358 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
550 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
359 | myconf="${myconf} --with-archive-storage-engine" |
551 | myconf="${myconf} --with-archive-storage-engine" |
… | |
… | |
390 | |
582 | |
391 | configure_51() { |
583 | configure_51() { |
392 | # TODO: !!!! readd --without-readline |
584 | # TODO: !!!! readd --without-readline |
393 | # the failure depend upon config/ac-macros/readline.m4 checking into |
585 | # the failure depend upon config/ac-macros/readline.m4 checking into |
394 | # readline.h instead of history.h |
586 | # readline.h instead of history.h |
395 | myconf="${myconf} $(use_with ssl)" |
587 | myconf="${myconf} $(use_with ssl ssl /usr)" |
396 | myconf="${myconf} --enable-assembler" |
588 | myconf="${myconf} --enable-assembler" |
397 | myconf="${myconf} --with-geometry" |
589 | myconf="${myconf} --with-geometry" |
398 | myconf="${myconf} --with-readline" |
590 | myconf="${myconf} --with-readline" |
399 | myconf="${myconf} --with-row-based-replication" |
|
|
400 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
591 | myconf="${myconf} --with-zlib-dir=/usr/" |
401 | 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" |
402 | 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 | )" |
403 | |
625 | |
404 | # 5.1 introduces a new way to manage storage engines (plugins) |
626 | # 5.1 introduces a new way to manage storage engines (plugins) |
405 | # like configuration=none |
627 | # like configuration=none |
|
|
628 | # This base set are required, and will always be statically built. |
406 | 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 |
407 | if use extraengine ; then |
641 | if use extraengine ; then |
408 | # 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 |
409 | 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" |
410 | |
646 | |
|
|
647 | if [[ "${PN}" != "mariadb" ]] ; then |
411 | 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" |
412 | 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" |
413 | fi |
655 | fi |
|
|
656 | else |
|
|
657 | plugins_dis="${plugins_dis} partition federated" |
|
|
658 | fi |
414 | |
659 | |
415 | # Upstream specifically requests that InnoDB always be built. |
660 | # Upstream specifically requests that InnoDB always be built: |
416 | plugins="${plugins},innobase" |
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 |
417 | |
669 | |
418 | # like configuration=max-no-ndb |
670 | # like configuration=max-no-ndb |
419 | if use cluster ; then |
671 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
420 | plugins="${plugins},ndbcluster" |
672 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
673 | plugins_dis="${plugins_dis//partition}" |
421 | 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" |
422 | fi |
690 | fi |
423 | |
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 | |
424 | if mysql_version_is_at_least "5.2" ; then |
701 | if mysql_version_is_at_least "5.2" ; then |
425 | 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 |
426 | fi |
709 | fi |
|
|
710 | fi |
427 | |
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 |
428 | 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 |
429 | } |
733 | } |
430 | |
734 | |
431 | pbxt_src_configure() { |
735 | pbxt_src_configure() { |
432 | mysql_init_vars |
736 | mysql_init_vars |
433 | |
737 | |
434 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
738 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
435 | |
739 | |
436 | einfo "Reconfiguring dir '${PWD}'" |
740 | einfo "Reconfiguring dir '${PWD}'" |
437 | AT_GNUCONF_UPDATE="yes" eautoreconf |
741 | eautoreconf |
438 | |
742 | |
439 | local myconf="" |
743 | local myconf="" |
440 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
744 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
441 | use debug && myconf="${myconf} --with-debug=full" |
745 | use debug && myconf="${myconf} --with-debug=full" |
442 | # TODO: is it safe/needed to use econf here ? |
|
|
443 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
746 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
444 | } |
747 | } |
445 | |
748 | |
446 | pbxt_src_compile() { |
749 | pbxt_src_compile() { |
|
|
750 | |
447 | # Be backwards compatible for now |
751 | # Be backwards compatible for now |
448 | if [[ $EAPI != 2 ]]; then |
752 | if [[ $EAPI != 2 ]]; then |
449 | pbxt_src_configure |
753 | pbxt_src_configure |
450 | fi |
754 | fi |
451 | # TODO: is it safe/needed to use emake here ? |
755 | # TODO: is it safe/needed to use emake here ? |
… | |
… | |
455 | # TODO: modify test suite for PBXT |
759 | # TODO: modify test suite for PBXT |
456 | } |
760 | } |
457 | |
761 | |
458 | pbxt_src_install() { |
762 | pbxt_src_install() { |
459 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
763 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
460 | make install || die "Failed to install PBXT" |
764 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
461 | popd |
765 | popd |
462 | } |
766 | } |
463 | |
767 | |
464 | # |
768 | # |
465 | # EBUILD FUNCTIONS |
769 | # EBUILD FUNCTIONS |
466 | # |
770 | # |
|
|
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 |
467 | mysql_pkg_setup() { |
778 | mysql_pkg_setup() { |
468 | if hasq test ${FEATURES} ; then |
779 | if has test ${FEATURES} ; then |
469 | if ! use minimal ; then |
780 | if ! use minimal ; then |
470 | if [[ $UID -eq 0 ]]; then |
781 | if [[ $UID -eq 0 ]]; then |
471 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
782 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
472 | fi |
783 | fi |
473 | fi |
784 | fi |
474 | fi |
785 | fi |
475 | |
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 |
|
|
795 | |
476 | # Check for USE flag problems in pkg_setup |
796 | # Check for USE flag problems in pkg_setup |
477 | if use static && use ssl ; then |
797 | if use static && use ssl ; then |
478 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
479 | 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" |
480 | fi |
808 | fi |
481 | |
809 | |
482 | if ! mysql_version_is_at_least "5.0" \ |
810 | if ! mysql_version_is_at_least "5.0" \ |
483 | && use raid \ |
811 | && use raid \ |
484 | && use static ; then |
812 | && use static ; then |
… | |
… | |
486 | eerror "with RAID support enabled." |
814 | eerror "with RAID support enabled." |
487 | die "USE flags 'raid' and 'static' conflict!" |
815 | die "USE flags 'raid' and 'static' conflict!" |
488 | fi |
816 | fi |
489 | |
817 | |
490 | if mysql_version_is_at_least "4.1.3" \ |
818 | if mysql_version_is_at_least "4.1.3" \ |
491 | && ( use cluster || use extraengine ) \ |
819 | && ( use cluster || use extraengine || use embedded ) \ |
492 | && use minimal ; then |
820 | && use minimal ; then |
493 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
494 | 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}" |
|
|
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 |
495 | fi |
847 | fi |
496 | |
848 | |
497 | # This should come after all of the die statements |
849 | # This should come after all of the die statements |
498 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
850 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
499 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
851 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
500 | |
852 | |
501 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
853 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
502 | && use berkdb \ |
854 | && use berkdb \ |
503 | && 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!" |
504 | } |
|
|
505 | |
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. |
506 | mysql_src_unpack() { |
871 | mysql_src_unpack() { |
507 | # Initialize the proper variables first |
872 | # Initialize the proper variables first |
508 | mysql_init_vars |
873 | mysql_init_vars |
509 | |
874 | |
510 | unpack ${A} |
875 | unpack ${A} |
511 | # Grab the patches |
876 | # Grab the patches |
512 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
877 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
513 | |
878 | |
514 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
879 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
515 | |
880 | |
516 | # Be backwards compatible for now |
881 | # Be backwards compatible for now |
517 | if [[ $EAPI != 2 ]]; then |
882 | case ${EAPI:-0} in |
518 | mysql_src_prepare |
883 | 2) : ;; |
519 | fi |
884 | 0 | 1) mysql_src_prepare ;; |
|
|
885 | esac |
520 | } |
886 | } |
521 | |
887 | |
|
|
888 | # @FUNCTION: mysql_src_prepare |
|
|
889 | # @DESCRIPTION: |
|
|
890 | # Apply patches to the source code and remove unneeded bundled libs. |
522 | mysql_src_prepare() { |
891 | mysql_src_prepare() { |
523 | cd "${S}" |
892 | cd "${S}" |
524 | |
893 | |
525 | # Apply the patches for this MySQL version |
894 | # Apply the patches for this MySQL version |
526 | EPATCH_SUFFIX="patch" |
895 | EPATCH_SUFFIX="patch" |
… | |
… | |
530 | # Now link in right patches |
899 | # Now link in right patches |
531 | mysql_mv_patches |
900 | mysql_mv_patches |
532 | # And apply |
901 | # And apply |
533 | epatch |
902 | epatch |
534 | |
903 | |
535 | # 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 |
536 | rm -f "${S}/zlib/"*.[ch] |
911 | rm -f "${S}/zlib/"*.[ch] |
537 | 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 |
538 | rm -f "scripts/mysqlbug" |
914 | rm -f "scripts/mysqlbug" |
539 | |
915 | |
540 | # Make charsets install in the right place |
916 | # Make charsets install in the right place |
541 | find . -name 'Makefile.am' \ |
917 | find . -name 'Makefile.am' \ |
542 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
918 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
543 | |
919 | |
544 | if mysql_version_is_at_least "4.1" ; then |
920 | if mysql_version_is_at_least "4.1" ; then |
545 | # 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" |
546 | find . -name Makefile \ |
923 | find . -name Makefile \ |
547 | -o -name Makefile.in \ |
924 | -o -name Makefile.in \ |
548 | -o -name configure \ |
925 | -o -name configure \ |
549 | -exec rm -f {} \; |
926 | -exec rm -f {} \; |
550 | rm -f "ltmain.sh" |
927 | rm -f "ltmain.sh" |
551 | rm -f "scripts/mysqlbug" |
928 | rm -f "scripts/mysqlbug" |
552 | fi |
929 | fi |
553 | |
930 | |
554 | local rebuilddirlist d |
931 | local rebuilddirlist d |
555 | |
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 | |
556 | if mysql_version_is_at_least "5.1.12" ; then |
955 | if mysql_version_is_at_least "5.1.12" ; then |
557 | rebuilddirlist="." |
956 | rebuilddirlist="." |
|
|
957 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
958 | #einfo "Updating innobase cmake" |
558 | # TODO: check this with a cmake expert |
959 | ## TODO: check this with a cmake expert |
559 | cmake \ |
960 | #cmake \ |
560 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
961 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
561 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
962 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
562 | "storage/innobase" |
963 | # "storage/innobase" |
563 | else |
964 | else |
564 | rebuilddirlist=". innobase" |
965 | rebuilddirlist=". innobase" |
565 | fi |
966 | fi |
566 | |
967 | |
567 | for d in ${rebuilddirlist} ; do |
968 | for d in ${rebuilddirlist} ; do |
568 | einfo "Reconfiguring dir '${d}'" |
969 | einfo "Reconfiguring dir '${d}'" |
569 | pushd "${d}" &>/dev/null |
970 | pushd "${d}" &>/dev/null |
570 | AT_GNUCONF_UPDATE="yes" eautoreconf |
971 | eautoreconf |
571 | popd &>/dev/null |
972 | popd &>/dev/null |
572 | done |
973 | done |
573 | |
974 | |
574 | 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" \ |
575 | && use berkdb ; then |
976 | && use berkdb ; then |
|
|
977 | einfo "Fixing up berkdb buildsystem" |
576 | [[ -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" |
577 | 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" \ |
578 | || die "Could not copy libtool.m4 to bdb/dist/" |
980 | || die "Could not copy libtool.m4 to bdb/dist/" |
579 | #These files exist only with libtool-2*, and need to be included. |
981 | #These files exist only with libtool-2*, and need to be included. |
580 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
982 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
… | |
… | |
588 | || die "Failed bdb reconfigure" |
990 | || die "Failed bdb reconfigure" |
589 | popd &>/dev/null |
991 | popd &>/dev/null |
590 | fi |
992 | fi |
591 | } |
993 | } |
592 | |
994 | |
|
|
995 | # @FUNCTION: mysql_src_configure |
|
|
996 | # @DESCRIPTION: |
|
|
997 | # Configure mysql to build the code for Gentoo respecting the use flags. |
593 | mysql_src_configure() { |
998 | mysql_src_configure() { |
594 | # Make sure the vars are correctly initialized |
999 | # Make sure the vars are correctly initialized |
595 | mysql_init_vars |
1000 | mysql_init_vars |
596 | |
1001 | |
597 | # $myconf is modified by the configure_* functions |
1002 | # $myconf is modified by the configure_* functions |
… | |
… | |
623 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
1028 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
624 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
1029 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
625 | mysql_version_is_at_least "5.0" \ |
1030 | mysql_version_is_at_least "5.0" \ |
626 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
1031 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
627 | 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 |
628 | |
1045 | |
629 | econf \ |
1046 | econf \ |
630 | --libexecdir="/usr/sbin" \ |
1047 | --libexecdir="/usr/sbin" \ |
631 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1048 | --sysconfdir="${MY_SYSCONFDIR}" \ |
632 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1049 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
… | |
… | |
636 | --with-low-memory \ |
1053 | --with-low-memory \ |
637 | --with-client-ldflags=-lstdc++ \ |
1054 | --with-client-ldflags=-lstdc++ \ |
638 | --enable-thread-safe-client \ |
1055 | --enable-thread-safe-client \ |
639 | --with-comment="Gentoo Linux ${PF}" \ |
1056 | --with-comment="Gentoo Linux ${PF}" \ |
640 | --without-docs \ |
1057 | --without-docs \ |
|
|
1058 | --with-LIBDIR="$(get_libdir)" \ |
641 | ${myconf} || die "econf failed" |
1059 | ${myconf} || die "econf failed" |
642 | |
1060 | |
643 | # TODO: Move this before autoreconf !!! |
1061 | # TODO: Move this before autoreconf !!! |
644 | find . -type f -name Makefile -print0 \ |
1062 | find . -type f -name Makefile -print0 \ |
645 | | xargs -0 -n100 sed -i \ |
1063 | | xargs -0 -n100 sed -i \ |
646 | -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)|' |
647 | |
1065 | |
648 | if [[ $EAPI == 2 ]]; then |
1066 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
649 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
1067 | pbxt_patch_available && use pbxt && pbxt_src_configure |
650 | fi |
1068 | fi |
651 | } |
1069 | } |
652 | |
1070 | |
|
|
1071 | # @FUNCTION: mysql_src_compile |
|
|
1072 | # @DESCRIPTION: |
|
|
1073 | # Compile the mysql code. |
653 | mysql_src_compile() { |
1074 | mysql_src_compile() { |
654 | # Be backwards compatible for now |
1075 | # Be backwards compatible for now |
655 | if [[ $EAPI != 2 ]]; then |
1076 | case ${EAPI:-0} in |
|
|
1077 | 2) : ;; |
656 | mysql_src_configure |
1078 | 0 | 1) mysql_src_configure ;; |
657 | fi |
1079 | esac |
658 | |
1080 | |
659 | emake || die "emake failed" |
1081 | emake || die "emake failed" |
660 | |
1082 | |
661 | 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 |
662 | } |
1086 | } |
663 | |
1087 | |
|
|
1088 | # @FUNCTION: mysql_src_install |
|
|
1089 | # @DESCRIPTION: |
|
|
1090 | # Install mysql. |
664 | mysql_src_install() { |
1091 | mysql_src_install() { |
665 | # Make sure the vars are correctly initialized |
1092 | # Make sure the vars are correctly initialized |
666 | mysql_init_vars |
1093 | mysql_init_vars |
667 | |
1094 | |
668 | 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" |
669 | |
1100 | |
670 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
1101 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1102 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1103 | fi |
671 | |
1104 | |
672 | # Convenience links |
1105 | # Convenience links |
673 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
1106 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
674 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
1107 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
675 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
1108 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
… | |
… | |
679 | einfo "Removing duplicate /usr/share/mysql files" |
1112 | einfo "Removing duplicate /usr/share/mysql files" |
680 | rm -Rf "${D}/usr/share/info" |
1113 | rm -Rf "${D}/usr/share/info" |
681 | for removeme in "mysql-log-rotate" mysql.server* \ |
1114 | for removeme in "mysql-log-rotate" mysql.server* \ |
682 | binary-configure* my-*.cnf mi_test_all* |
1115 | binary-configure* my-*.cnf mi_test_all* |
683 | do |
1116 | do |
684 | rm -f "${D}"/usr/share/mysql/${removeme} |
1117 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
685 | done |
1118 | done |
686 | |
1119 | |
687 | # Clean up stuff for a minimal build |
1120 | # Clean up stuff for a minimal build |
688 | if use minimal ; then |
1121 | if use minimal ; then |
689 | einfo "Remove all extra content for minimal build" |
1122 | einfo "Remove all extra content for minimal build" |
… | |
… | |
691 | 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} |
692 | rm -f "${D}/usr/sbin/mysqld" |
1125 | rm -f "${D}/usr/sbin/mysqld" |
693 | 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 |
694 | fi |
1127 | fi |
695 | |
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 | |
696 | # Configuration stuff |
1136 | # Configuration stuff |
697 | if mysql_version_is_at_least "4.1" ; then |
1137 | case ${MYSQL_PV_MAJOR} in |
698 | mysql_mycnf_version="4.1" |
|
|
699 | else |
|
|
700 | mysql_mycnf_version="4.0" |
1138 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
701 | fi |
1139 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
702 | einfo "Building default my.cnf" |
1140 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1141 | esac |
|
|
1142 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
703 | insinto "${MY_SYSCONFDIR}" |
1143 | insinto "${MY_SYSCONFDIR}" |
704 | doins scripts/mysqlaccess.conf |
1144 | doins scripts/mysqlaccess.conf |
|
|
1145 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
705 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
1146 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
706 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1147 | "${FILESDIR}/${mycnf_src}" \ |
707 | > "${TMPDIR}/my.cnf.ok" |
1148 | > "${TMPDIR}/my.cnf.ok" |
708 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
1149 | if use latin1 ; then |
709 | 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" |
710 | fi |
1153 | fi |
711 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1154 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
712 | |
1155 | |
713 | # Minimal builds don't have the MySQL server |
1156 | # Minimal builds don't have the MySQL server |
714 | if ! use minimal ; then |
1157 | if ! use minimal ; then |
… | |
… | |
729 | done |
1172 | done |
730 | fi |
1173 | fi |
731 | |
1174 | |
732 | # Docs |
1175 | # Docs |
733 | einfo "Installing docs" |
1176 | einfo "Installing docs" |
734 | 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 |
735 | doinfo "${S}"/Docs/mysql.info |
1180 | doinfo "${S}"/Docs/mysql.info |
736 | |
1181 | |
737 | # Minimal builds don't have the MySQL server |
1182 | # Minimal builds don't have the MySQL server |
738 | if ! use minimal ; then |
1183 | if ! use minimal ; then |
739 | einfo "Including support files and sample configurations" |
1184 | einfo "Including support files and sample configurations" |
… | |
… | |
741 | for script in \ |
1186 | for script in \ |
742 | "${S}"/support-files/my-*.cnf \ |
1187 | "${S}"/support-files/my-*.cnf \ |
743 | "${S}"/support-files/magic \ |
1188 | "${S}"/support-files/magic \ |
744 | "${S}"/support-files/ndb-config-2-node.ini |
1189 | "${S}"/support-files/ndb-config-2-node.ini |
745 | do |
1190 | do |
746 | dodoc "${script}" |
1191 | [[ -f "$script" ]] && dodoc "${script}" |
747 | done |
1192 | done |
748 | |
1193 | |
749 | docinto "scripts" |
1194 | docinto "scripts" |
750 | for script in "${S}"/scripts/mysql* ; do |
1195 | for script in "${S}"/scripts/mysql* ; do |
751 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1196 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
752 | done |
1197 | done |
753 | |
1198 | |
754 | fi |
1199 | fi |
755 | |
1200 | |
756 | mysql_lib_symlinks "${D}" |
1201 | mysql_lib_symlinks "${D}" |
757 | } |
1202 | } |
758 | |
1203 | |
|
|
1204 | # @FUNCTION: mysql_pkg_preinst |
|
|
1205 | # @DESCRIPTION: |
|
|
1206 | # Create the user and groups for mysql - die if that fails. |
759 | mysql_pkg_preinst() { |
1207 | mysql_pkg_preinst() { |
760 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
1208 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
761 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
1209 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
762 | } |
1210 | } |
763 | |
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 |
764 | mysql_pkg_postinst() { |
1220 | mysql_pkg_postinst() { |
765 | # Make sure the vars are correctly initialized |
1221 | # Make sure the vars are correctly initialized |
766 | mysql_init_vars |
1222 | mysql_init_vars |
767 | |
1223 | |
768 | # Check FEATURES="collision-protect" before removing this |
1224 | # Check FEATURES="collision-protect" before removing this |
… | |
… | |
779 | for script in \ |
1235 | for script in \ |
780 | support-files/my-*.cnf \ |
1236 | support-files/my-*.cnf \ |
781 | support-files/magic \ |
1237 | support-files/magic \ |
782 | support-files/ndb-config-2-node.ini |
1238 | support-files/ndb-config-2-node.ini |
783 | do |
1239 | do |
|
|
1240 | [[ -f "${script}" ]] \ |
784 | dodoc "${script}" |
1241 | && dodoc "${script}" |
785 | done |
1242 | done |
786 | |
1243 | |
787 | docinto "scripts" |
1244 | docinto "scripts" |
788 | for script in scripts/mysql* ; do |
1245 | for script in scripts/mysql* ; do |
|
|
1246 | [[ -f "${script}" ]] \ |
789 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1247 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1248 | && dodoc "${script}" |
790 | done |
1249 | done |
791 | |
1250 | |
792 | einfo |
1251 | einfo |
793 | elog "You might want to run:" |
1252 | elog "You might want to run:" |
794 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1253 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
795 | elog "if this is a new install." |
1254 | elog "if this is a new install." |
796 | einfo |
1255 | einfo |
797 | fi |
|
|
798 | |
1256 | |
799 | 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 |
800 | # TODO: explain it better |
1264 | # TODO: explain it better |
801 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
1265 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
802 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
1266 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
803 | elog "if, after that, you cannot start the MySQL server," |
1267 | elog "if, after that, you cannot start the MySQL server," |
804 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
1268 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
… | |
… | |
814 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
1278 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
815 | && use berkdb \ |
1279 | && use berkdb \ |
816 | && 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!" |
817 | } |
1281 | } |
818 | |
1282 | |
|
|
1283 | # @FUNCTION: mysql_pkg_config |
|
|
1284 | # @DESCRIPTION: |
|
|
1285 | # Configure mysql environment. |
819 | mysql_pkg_config() { |
1286 | mysql_pkg_config() { |
820 | local old_MY_DATADIR="${MY_DATADIR}" |
1287 | local old_MY_DATADIR="${MY_DATADIR}" |
821 | |
1288 | |
822 | # Make sure the vars are correctly initialized |
1289 | # Make sure the vars are correctly initialized |
823 | mysql_init_vars |
1290 | mysql_init_vars |
… | |
… | |
846 | if [[ -d "${MY_DATADIR_s}" ]]; then |
1313 | if [[ -d "${MY_DATADIR_s}" ]]; then |
847 | ewarn "Attempting to use ${MY_DATADIR_s}" |
1314 | ewarn "Attempting to use ${MY_DATADIR_s}" |
848 | else |
1315 | else |
849 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
1316 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
850 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
1317 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
851 | fi |
1318 | fi |
852 | fi |
1319 | fi |
853 | fi |
1320 | fi |
854 | |
1321 | |
855 | local pwd1="a" |
1322 | local pwd1="a" |
856 | local pwd2="b" |
1323 | local pwd2="b" |
857 | 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 |
858 | |
1329 | |
859 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
1330 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
860 | ewarn "You have already a MySQL database in place." |
1331 | ewarn "You have already a MySQL database in place." |
861 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
1332 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
862 | 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." |
… | |
… | |
865 | |
1336 | |
866 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
1337 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
867 | # localhost. Also causes weird failures. |
1338 | # localhost. Also causes weird failures. |
868 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
1339 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
869 | |
1340 | |
870 | einfo "Creating the mysql database and setting proper" |
1341 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
871 | einfo "permissions on it ..." |
|
|
872 | |
1342 | |
873 | 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." |
874 | ewarn "Avoid [\"'\\_%] characters in the password" |
1345 | ewarn "Avoid [\"'\\_%] characters in the password" |
875 | read -rsp " >" pwd1 ; echo |
1346 | read -rsp " >" pwd1 ; echo |
876 | |
1347 | |
877 | einfo "Retype the password" |
1348 | einfo "Retype the password" |
878 | read -rsp " >" pwd2 ; echo |
1349 | read -rsp " >" pwd2 ; echo |
879 | |
1350 | |
880 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1351 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
881 | die "Passwords are not the same" |
1352 | die "Passwords are not the same" |
|
|
1353 | fi |
|
|
1354 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1355 | unset pwd1 pwd2 |
882 | fi |
1356 | fi |
883 | |
1357 | |
884 | local options="" |
1358 | local options="" |
885 | local sqltmp="$(emktemp)" |
1359 | local sqltmp="$(emktemp)" |
886 | |
1360 | |
… | |
… | |
900 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
1374 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
901 | || die "MySQL databases not installed" |
1375 | || die "MySQL databases not installed" |
902 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1376 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
903 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
1377 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
904 | |
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}" |
|
|
1392 | |
905 | if mysql_version_is_at_least "4.1.3" ; then |
1393 | if mysql_version_is_at_least "4.1.3" ; then |
906 | options="--skip-ndbcluster" |
|
|
907 | |
|
|
908 | # Filling timezones, see |
1394 | # Filling timezones, see |
909 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1395 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
910 | "${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 |
911 | |
1397 | |
912 | if [[ -r "${help_tables}" ]] ; then |
1398 | if [[ -r "${help_tables}" ]] ; then |
913 | cat "${help_tables}" >> "${sqltmp}" |
1399 | cat "${help_tables}" >> "${sqltmp}" |
914 | fi |
1400 | fi |
915 | fi |
1401 | fi |
|
|
1402 | |
|
|
1403 | einfo "Creating the mysql database and setting proper" |
|
|
1404 | einfo "permissions on it ..." |
916 | |
1405 | |
917 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1406 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
918 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1407 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
919 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1408 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
920 | ${options} \ |
1409 | ${options} \ |
921 | --user=mysql \ |
1410 | --user=mysql \ |
922 | --skip-grant-tables \ |
|
|
923 | --basedir=${ROOT}/usr \ |
1411 | --basedir=${ROOT}/usr \ |
924 | --datadir=${ROOT}/${MY_DATADIR} \ |
1412 | --datadir=${ROOT}/${MY_DATADIR} \ |
925 | --skip-innodb \ |
|
|
926 | --skip-bdb \ |
|
|
927 | --skip-networking \ |
|
|
928 | --max_allowed_packet=8M \ |
1413 | --max_allowed_packet=8M \ |
929 | --net_buffer_length=16K \ |
1414 | --net_buffer_length=16K \ |
|
|
1415 | --default-storage-engine=MyISAM \ |
930 | --socket=${socket} \ |
1416 | --socket=${socket} \ |
931 | --pid-file=${pidfile}" |
1417 | --pid-file=${pidfile}" |
|
|
1418 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1419 | ebegin "Starting mysqld" |
932 | ${mysqld} & |
1420 | ${mysqld} & |
|
|
1421 | rc=$? |
933 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1422 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
934 | maxtry=$((${maxtry}-1)) |
1423 | maxtry=$((${maxtry}-1)) |
935 | echo -n "." |
1424 | echo -n "." |
936 | sleep 1 |
1425 | sleep 1 |
937 | done |
1426 | done |
|
|
1427 | eend $rc |
938 | |
1428 | |
|
|
1429 | if ! [[ -S "${socket}" ]]; then |
|
|
1430 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1431 | fi |
|
|
1432 | |
|
|
1433 | ebegin "Setting root password" |
939 | # 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 |
940 | 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'" |
941 | "${ROOT}/usr/bin/mysql" \ |
1436 | "${ROOT}/usr/bin/mysql" \ |
942 | --socket=${socket} \ |
1437 | --socket=${socket} \ |
943 | -hlocalhost \ |
1438 | -hlocalhost \ |
944 | -e "${sql}" |
1439 | -e "${sql}" |
|
|
1440 | eend $? |
945 | |
1441 | |
946 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1442 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
947 | |
|
|
948 | "${ROOT}/usr/bin/mysql" \ |
1443 | "${ROOT}/usr/bin/mysql" \ |
949 | --socket=${socket} \ |
1444 | --socket=${socket} \ |
950 | -hlocalhost \ |
1445 | -hlocalhost \ |
951 | -uroot \ |
1446 | -uroot \ |
952 | -p"${pwd1}" \ |
1447 | -p"${MYSQL_ROOT_PASSWORD}" \ |
953 | mysql < "${sqltmp}" |
1448 | mysql < "${sqltmp}" |
|
|
1449 | rc=$? |
|
|
1450 | eend $? |
|
|
1451 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
954 | |
1452 | |
955 | # Stop the server and cleanup |
1453 | # Stop the server and cleanup |
|
|
1454 | einfo "Stopping the server ..." |
956 | kill $(< "${pidfile}" ) |
1455 | kill $(< "${pidfile}" ) |
957 | rm -f "${sqltmp}" |
1456 | rm -f "${sqltmp}" |
958 | einfo "Stopping the server ..." |
|
|
959 | wait %1 |
1457 | wait %1 |
960 | einfo "Done" |
1458 | einfo "Done" |
961 | } |
1459 | } |
962 | |
1460 | |
|
|
1461 | # @FUNCTION: mysql_pkg_postrm |
|
|
1462 | # @DESCRIPTION: |
|
|
1463 | # Remove mysql symlinks. |
963 | mysql_pkg_postrm() { |
1464 | mysql_pkg_postrm() { |
964 | : # mysql_lib_symlinks "${D}" |
1465 | : # mysql_lib_symlinks "${D}" |
965 | } |
1466 | } |