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