| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.46 2006/12/10 01:11:47 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/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 <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
| 7 | |
17 | |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
18 | WANT_AUTOCONF="latest" |
| 9 | # Note that MYSQL_VERSION_ID must be empty !!! |
19 | WANT_AUTOMAKE="latest" |
| 10 | |
20 | |
|
|
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator toolchain-funcs |
|
|
22 | |
|
|
23 | # Shorten the path because the socket path length must be shorter than 107 chars |
|
|
24 | # and we will run a mysql server during test phase |
|
|
25 | S="${WORKDIR}/mysql" |
|
|
26 | |
|
|
27 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
|
|
28 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
29 | EGIT_PROJECT=mysql-extras |
|
|
30 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
31 | inherit git |
|
|
32 | fi |
|
|
33 | |
|
|
34 | case "${EAPI:-0}" in |
|
|
35 | 2) |
|
|
36 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
37 | src_unpack src_prepare \ |
|
|
38 | src_configure src_compile \ |
|
|
39 | src_install \ |
|
|
40 | pkg_preinst pkg_postinst \ |
|
|
41 | pkg_config pkg_postrm |
|
|
42 | IUSE_DEFAULT_ON='+' |
|
|
43 | ;; |
|
|
44 | 0 | 1) |
|
|
45 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
46 | src_unpack \ |
|
|
47 | src_compile \ |
|
|
48 | src_install \ |
|
|
49 | pkg_preinst pkg_postinst \ |
|
|
50 | pkg_config pkg_postrm |
|
|
51 | ;; |
|
|
52 | *) |
|
|
53 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
54 | esac |
|
|
55 | |
|
|
56 | |
|
|
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: |
| 11 | # MYSQL_VERSION_ID will be: |
74 | # MYSQL_VERSION_ID will be: |
| 12 | # 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] |
| 13 | # 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 |
| 14 | # depend on this variable. |
77 | # depend on this variable. |
| 15 | # 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 |
| 16 | |
80 | |
| 17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
81 | MYSQL_VERSION_ID="" |
|
|
82 | tpv="${PV%[a-z]}" |
| 18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
83 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 19 | for vatom in 0 1 2 3 ; do |
84 | for vatom in 0 1 2 3 ; do |
| 20 | # pad to length 2 |
85 | # pad to length 2 |
| 21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
86 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
87 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 23 | done |
88 | done |
| 24 | # 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) |
| 25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
90 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
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 |
| 26 | fi |
114 | fi |
| 27 | |
115 | |
| 28 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
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}" |
| 29 | |
125 | |
| 30 | # Be warned, *DEPEND are version-dependant |
126 | # Be warned, *DEPEND are version-dependant |
|
|
127 | # These are used for both runtime and compiletime |
| 31 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
128 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 32 | userland_GNU? ( sys-process/procps ) |
129 | userland_GNU? ( sys-process/procps ) |
| 33 | >=sys-apps/sed-4 |
130 | >=sys-apps/sed-4 |
| 34 | >=sys-apps/texinfo-4.7-r1 |
131 | >=sys-apps/texinfo-4.7-r1 |
| 35 | >=sys-libs/readline-4.1 |
132 | >=sys-libs/readline-4.1 |
| 36 | >=sys-libs/zlib-1.2.3" |
133 | >=sys-libs/zlib-1.2.3" |
| 37 | |
134 | |
| 38 | # LEAVE THE SURROUNDING SPACES THERE |
135 | [[ "${PN}" == "mariadb" ]] \ |
| 39 | MYSQL_MUTUALLY_EXCLUSIVE=" !dev-db/mysql !dev-db/mysql-community " |
136 | && DEPEND="${DEPEND} libevent? ( >=dev-libs/libevent-1.4 )" |
| 40 | DEPEND="${DEPEND} ${MYSQL_MUTUALLY_EXCLUSIVE/ !${CATEGORY}\/${PN} /}" |
|
|
| 41 | |
137 | |
|
|
138 | # Having different flavours at the same time is not a good idea |
|
|
139 | for i in "mysql" "mysql-community" "mysql-cluster" "mariadb" ; do |
|
|
140 | [[ "${i}" == ${PN} ]] || |
|
|
141 | DEPEND="${DEPEND} !dev-db/${i}" |
|
|
142 | done |
|
|
143 | |
|
|
144 | RDEPEND="${DEPEND} |
|
|
145 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
146 | selinux? ( sec-policy/selinux-mysql )" |
|
|
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 | |
|
|
155 | # compile-time-only |
| 42 | mysql_version_is_at_least "5.01.00.00" \ |
156 | mysql_version_is_at_least "5.1" \ |
| 43 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
157 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 44 | |
158 | |
| 45 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
159 | # compile-time-only |
|
|
160 | mysql_version_is_at_least "5.1.12" \ |
|
|
161 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
|
|
162 | |
|
|
163 | [[ "${PN}" == "mariadb" ]] \ |
|
|
164 | && mysql_version_is_at_least "5.2" \ |
|
|
165 | && DEPEND="${DEPEND} oqgraph? ( >=dev-libs/boost-1.40.0 )" |
|
|
166 | #SphinxSE is included but is not available in 5.2.4 due to a missing plug.in file |
|
|
167 | # sphinx? ( app-misc/sphinx )" |
| 46 | |
168 | |
| 47 | # 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 |
| 48 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
170 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 49 | |
171 | |
| 50 | # Shorten the path because the socket path length must be shorter than 107 chars |
172 | # For other stuff to bring us in |
| 51 | # and we will run a mysql server during test phase |
173 | PDEPEND="${PDEPEND} =virtual/mysql-${MYSQL_PV_MAJOR}" |
| 52 | S="${WORKDIR}/mysql" # BitKeeper ebuilds |
|
|
| 53 | |
174 | |
| 54 | # Define $MY_FIXED_PV for MySQL patchsets |
175 | # Work out the default SERVER_URI correctly |
| 55 | MY_FIXED_PV="${PV/_alpha/}" |
176 | if [ -z "${SERVER_URI}" ]; then |
| 56 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
177 | [ -z "${MY_PV}" ] && MY_PV="${PV//_/-}" |
| 57 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
178 | if [ "${PN}" == "mariadb" ]; then |
| 58 | |
179 | MARIA_FULL_PV="$(replace_version_separator 3 '-' ${PV})" |
| 59 | MY_P="${P/_/-}" |
180 | MARIA_FULL_P="${PN}-${MARIA_FULL_PV}" |
| 60 | MY_P="${MY_P/-alpha/-bk-}" # BitKeeper ebuilds |
181 | SERVER_URI=" |
| 61 | MY_P="${MY_P/-community/}" |
182 | http://ftp.osuosl.org/pub/mariadb/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
183 | http://ftp.rediris.es/mirror/MariaDB/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
184 | http://maria.llarian.net/download/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
185 | http://launchpad.net/maria/${MYSQL_PV_MAJOR}/ongoing/+download/${MARIA_FULL_P}.tar.gz |
|
|
186 | http://mirrors.fe.up.pt/pub/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
187 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/${PN}/${MARIA_FULL_P}/kvm-tarbake-jaunty-x86/${MARIA_FULL_P}.tar.gz |
|
|
188 | " |
|
|
189 | # The community and cluster builds are on the mirrors |
|
|
190 | elif [[ "${MYSQL_COMMUNITY_FEATURES}" == "1" || ${PN} == "mysql-cluster" ]] ; then |
|
|
191 | if [[ "${PN}" == "mysql-cluster" ]] ; then |
|
|
192 | URI_DIR="MySQL-Cluster" |
|
|
193 | URI_FILE="mysql-cluster-gpl" |
|
|
194 | else |
|
|
195 | URI_DIR="MySQL" |
|
|
196 | URI_FILE="mysql" |
|
|
197 | fi |
|
|
198 | URI_A="${URI_FILE}-${MY_PV}.tar.gz" |
|
|
199 | MIRROR_PV=$(get_version_component_range 1-2 ${PV}) |
|
|
200 | # Recently upstream switched to an archive site, and not on mirrors |
|
|
201 | SERVER_URI="http://downloads.mysql.com/archives/${URI_FILE}-${MIRROR_PV}/${URI_A} |
|
|
202 | mirror://mysql/Downloads/${URI_DIR}-${PV%.*}/${URI_A}" |
|
|
203 | # The (old) enterprise source is on the primary site only |
|
|
204 | elif [ "${PN}" == "mysql" ]; then |
|
|
205 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${MY_PV}.tar.gz" |
|
|
206 | fi |
|
|
207 | fi |
| 62 | |
208 | |
| 63 | # Define correct SRC_URIs |
209 | # Define correct SRC_URIs |
| 64 | SRC_URI="${BASE_URI}/${MY_P}${MYSQL_RERELEASE}.tar.gz" |
210 | SRC_URI="${SERVER_URI}" |
| 65 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
211 | |
| 66 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
212 | # Gentoo patches to MySQL |
| 67 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
213 | [[ ${MY_EXTRAS_VER} != live ]] \ |
| 68 | SRC_URI="${SRC_URI} http://g3nt8.org/patches/${MYSQL_PATCHSET_FILENAME}" |
214 | && SRC_URI="${SRC_URI} |
| 69 | fi |
215 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
216 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
|
|
217 | http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 70 | |
218 | |
| 71 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
219 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 72 | 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 |
|
|
228 | LICENSE="GPL-2" |
| 73 | SLOT="0" |
229 | SLOT="0" |
| 74 | LICENSE="GPL-2" |
|
|
| 75 | IUSE="big-tables debug embedded minimal perl selinux srvdir ssl static" |
230 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static test" |
| 76 | RESTRICT="confcache" |
|
|
| 77 | |
231 | |
| 78 | mysql_version_is_at_least "4.01.00.00" \ |
232 | mysql_version_is_at_least "4.1" \ |
| 79 | && IUSE="${IUSE} latin1" |
233 | && IUSE="${IUSE} latin1" |
| 80 | |
234 | |
| 81 | mysql_version_is_at_least "4.01.03.00" \ |
235 | if mysql_version_is_at_least "4.1.3" ; then |
| 82 | && IUSE="${IUSE} cluster extraengine" |
236 | IUSE="${IUSE} extraengine" |
|
|
237 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
|
|
238 | IUSE="${IUSE} cluster" |
|
|
239 | fi |
|
|
240 | fi |
| 83 | |
241 | |
| 84 | mysql_version_is_at_least "5.00.00.00" \ |
242 | mysql_version_is_at_least "5.0" \ |
| 85 | || IUSE="${IUSE} raid" |
243 | || IUSE="${IUSE} raid" |
| 86 | |
244 | |
| 87 | mysql_version_is_at_least "5.00.18.00" \ |
245 | mysql_version_is_at_least "5.0.18" \ |
| 88 | && IUSE="${IUSE} max-idx-128" |
246 | && IUSE="${IUSE} max-idx-128" |
| 89 | |
247 | |
| 90 | mysql_version_is_at_least "5.01.00.00" \ |
248 | mysql_version_is_at_least "5.1" \ |
| 91 | && IUSE="${IUSE} innodb" |
|
|
| 92 | |
|
|
| 93 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
| 94 | || IUSE="${IUSE} berkdb" |
249 | || IUSE="${IUSE} berkdb" |
| 95 | |
250 | |
| 96 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
251 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 97 | pkg_postinst pkg_config pkg_postrm |
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" |
| 98 | |
312 | |
| 99 | # |
313 | # |
| 100 | # HELPER FUNCTIONS: |
314 | # HELPER FUNCTIONS: |
| 101 | # |
315 | # |
| 102 | |
316 | |
|
|
317 | # @FUNCTION: mysql_disable_test |
|
|
318 | # @DESCRIPTION: |
|
|
319 | # Helper function to disable specific tests. |
|
|
320 | mysql_disable_test() { |
|
|
321 | local rawtestname testname testsuite reason mysql_disable_file |
|
|
322 | rawtestname="${1}" ; shift |
|
|
323 | reason="${@}" |
|
|
324 | ewarn "test '${rawtestname}' disabled: '${reason}'" |
|
|
325 | |
|
|
326 | testsuite="${rawtestname/.*}" |
|
|
327 | testname="${rawtestname/*.}" |
|
|
328 | mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
329 | #einfo "rawtestname=${rawtestname} testname=${testname} testsuite=${testsuite}" |
|
|
330 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
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: |
| 103 | # void mysql_init_vars() |
361 | # void mysql_init_vars() |
| 104 | # |
|
|
| 105 | # Initialize global variables |
362 | # Initialize global variables |
| 106 | # 2005-11-19 <vivo@gentoo.org> |
363 | # 2005-11-19 <vivo@gentoo.org> |
| 107 | |
|
|
| 108 | mysql_init_vars() { |
364 | mysql_init_vars() { |
| 109 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
365 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 110 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
366 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 111 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
367 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 112 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
368 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 113 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
369 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 114 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
370 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 115 | |
371 | |
| 116 | if [[ -z "${DATADIR}" ]] ; then |
372 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 117 | DATADIR="" |
373 | MY_DATADIR="" |
| 118 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
374 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 119 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
375 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 120 | | sed -ne '/datadir/s|^--datadir=||p' \ |
376 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 121 | | tail -n1` |
377 | | tail -n1` |
| 122 | if [[ -z "${DATADIR}" ]] ; then |
378 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 123 | if useq "srvdir" ; then |
|
|
| 124 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 125 | else |
|
|
| 126 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
379 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 127 | | sed -e 's/.*=\s*//'` |
380 | | sed -e 's/.*=\s*//' \ |
| 128 | fi |
381 | | tail -n1` |
| 129 | fi |
382 | fi |
| 130 | fi |
383 | fi |
| 131 | if [[ -z "${DATADIR}" ]] ; then |
384 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 132 | if useq "srvdir" ; then |
|
|
| 133 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 134 | else |
|
|
| 135 | DATADIR="${MY_LOCALSTATEDIR}" |
385 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 136 | fi |
|
|
| 137 | einfo "Using default DATADIR" |
386 | einfo "Using default MY_DATADIR" |
| 138 | fi |
387 | fi |
| 139 | elog "MySQL DATADIR is ${DATADIR}" |
388 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 140 | |
389 | |
| 141 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
390 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 142 | if [[ -e "${DATADIR}" ]] ; then |
391 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 143 | elog "Previous datadir found, it's YOUR job to change" |
392 | # If you get this and you're wondering about it, see bug #207636 |
| 144 | elog "ownership and take care of it" |
393 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
394 | elog "A new one will not be created." |
| 145 | PREVIOUS_DATADIR="yes" |
395 | PREVIOUS_DATADIR="yes" |
| 146 | else |
396 | else |
| 147 | PREVIOUS_DATADIR="no" |
397 | PREVIOUS_DATADIR="no" |
| 148 | fi |
398 | fi |
| 149 | export PREVIOUS_DATADIR |
399 | export PREVIOUS_DATADIR |
| 150 | fi |
400 | fi |
|
|
401 | else |
|
|
402 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
403 | local new_MY_DATADIR |
|
|
404 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
405 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
406 | | tail -n1` |
|
|
407 | |
|
|
408 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
409 | ewarn "MySQL MY_DATADIR has changed" |
|
|
410 | ewarn "from ${MY_DATADIR}" |
|
|
411 | ewarn "to ${new_MY_DATADIR}" |
|
|
412 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
413 | fi |
|
|
414 | fi |
|
|
415 | fi |
|
|
416 | |
|
|
417 | if [ "${MY_SOURCEDIR:-unset}" == "unset" ]; then |
|
|
418 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
419 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 151 | fi |
420 | fi |
| 152 | |
421 | |
| 153 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
422 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 154 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
423 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 155 | export MY_INCLUDEDIR |
424 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 156 | export DATADIR |
|
|
| 157 | } |
425 | } |
| 158 | |
426 | |
| 159 | configure_minimal() { |
427 | configure_minimal() { |
| 160 | # These are things we exclude from a minimal build, please |
428 | # These are things we exclude from a minimal build, please |
| 161 | # note that the server actually does get built and installed, |
429 | # note that the server actually does get built and installed, |
| 162 | # but we then delete it before packaging. |
430 | # but we then delete it before packaging. |
| 163 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
431 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 164 | |
432 | |
| 165 | for i in ${minimal_exclude_list} ; do |
433 | for i in ${minimal_exclude_list} ; do |
| 166 | myconf="${myconf} --without-${i}" |
434 | myconf="${myconf} --without-${i}" |
| 167 | done |
435 | done |
| 168 | myconf="${myconf} --with-extra-charsets=none" |
436 | myconf="${myconf} --with-extra-charsets=none" |
| 169 | myconf="${myconf} --enable-local-infile" |
437 | myconf="${myconf} --enable-local-infile" |
|
|
438 | |
|
|
439 | if use static ; then |
|
|
440 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
441 | myconf="${myconf} --disable-shared --with-pic" |
|
|
442 | else |
|
|
443 | myconf="${myconf} --enable-shared --enable-static" |
|
|
444 | fi |
|
|
445 | |
|
|
446 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
447 | myconf="${myconf} --with-charset=utf8" |
|
|
448 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
449 | else |
|
|
450 | myconf="${myconf} --with-charset=latin1" |
|
|
451 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
452 | fi |
| 170 | } |
453 | } |
| 171 | |
454 | |
| 172 | configure_common() { |
455 | configure_common() { |
| 173 | myconf="${myconf} $(use_with big-tables)" |
456 | myconf="${myconf} $(use_with big-tables)" |
| 174 | myconf="${myconf} --enable-local-infile" |
457 | myconf="${myconf} --enable-local-infile" |
| … | |
… | |
| 176 | myconf="${myconf} --with-mysqld-user=mysql" |
459 | myconf="${myconf} --with-mysqld-user=mysql" |
| 177 | myconf="${myconf} --with-server" |
460 | myconf="${myconf} --with-server" |
| 178 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
461 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
| 179 | myconf="${myconf} --without-libwrap" |
462 | myconf="${myconf} --without-libwrap" |
| 180 | |
463 | |
| 181 | if useq "static" ; then |
464 | if use static ; then |
| 182 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
465 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 183 | myconf="${myconf} --with-client-ldflags=-all-static" |
466 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 184 | myconf="${myconf} --disable-shared" |
467 | myconf="${myconf} --disable-shared --with-pic" |
| 185 | else |
468 | else |
| 186 | myconf="${myconf} --enable-shared --enable-static" |
469 | myconf="${myconf} --enable-shared --enable-static" |
| 187 | fi |
470 | fi |
| 188 | |
471 | |
| 189 | if useq "debug" ; then |
472 | if use debug ; then |
| 190 | myconf="${myconf} --with-debug=full" |
473 | myconf="${myconf} --with-debug=full" |
| 191 | else |
474 | else |
| 192 | myconf="${myconf} --without-debug" |
475 | myconf="${myconf} --without-debug" |
| 193 | mysql_version_is_at_least "4.01.03.00" \ |
476 | mysql_version_is_at_least "4.1.3" \ |
| 194 | && useq "cluster" \ |
477 | && ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) \ |
| 195 | && myconf="${myconf} --without-ndb-debug" |
478 | && myconf="${myconf} --without-ndb-debug" |
| 196 | fi |
479 | fi |
| 197 | |
480 | |
|
|
481 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
482 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
483 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
484 | ewarn "You MUST file bugs without these variables set." |
|
|
485 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
486 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 198 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
487 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 199 | myconf="${myconf} --with-charset=utf8" |
488 | myconf="${myconf} --with-charset=utf8" |
| 200 | myconf="${myconf} --with-collation=utf8_general_ci" |
489 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 201 | else |
490 | else |
| 202 | myconf="${myconf} --with-charset=latin1" |
491 | myconf="${myconf} --with-charset=latin1" |
| 203 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
492 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 204 | fi |
493 | fi |
| 205 | |
494 | |
| 206 | if useq "embedded" ; then |
495 | if use embedded ; then |
| 207 | myconf="${myconf} --with-embedded-privilege-control" |
496 | myconf="${myconf} --with-embedded-privilege-control" |
| 208 | myconf="${myconf} --with-embedded-server" |
497 | myconf="${myconf} --with-embedded-server" |
| 209 | else |
498 | else |
| 210 | myconf="${myconf} --without-embedded-privilege-control" |
499 | myconf="${myconf} --without-embedded-privilege-control" |
| 211 | myconf="${myconf} --without-embedded-server" |
500 | myconf="${myconf} --without-embedded-server" |
| … | |
… | |
| 217 | myconf="${myconf} $(use_with perl bench)" |
506 | myconf="${myconf} $(use_with perl bench)" |
| 218 | myconf="${myconf} --enable-assembler" |
507 | myconf="${myconf} --enable-assembler" |
| 219 | myconf="${myconf} --with-extra-tools" |
508 | myconf="${myconf} --with-extra-tools" |
| 220 | myconf="${myconf} --with-innodb" |
509 | myconf="${myconf} --with-innodb" |
| 221 | myconf="${myconf} --without-readline" |
510 | myconf="${myconf} --without-readline" |
|
|
511 | myconf="${myconf} $(use_with ssl openssl)" |
| 222 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
512 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 223 | |
513 | |
| 224 | if useq "ssl" ; then |
|
|
| 225 | # --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 |
| 226 | # has been removed from configure |
515 | # has been removed from configure |
|
|
516 | # Apply to 4.x and 5.0.[0-3] |
|
|
517 | if use ssl ; then |
| 227 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
518 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
519 | fi |
|
|
520 | |
| 228 | if mysql_version_is_at_least "5.00.06.00" ; then |
521 | if mysql_version_is_at_least "5.0.60" ; then |
| 229 | # myconf="${myconf} --with-yassl" |
522 | if use berkdb ; then |
|
|
523 | elog "Berkeley DB support was disabled due to build failures" |
|
|
524 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
525 | elog "if you want it again. Gentoo bug #224067." |
|
|
526 | fi |
| 230 | myconf="${myconf} --with-openssl" |
527 | myconf="${myconf} --without-berkeley-db" |
|
|
528 | elif use berkdb ; then |
|
|
529 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
530 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
531 | # It comes down to non-64-bit safety problems. |
|
|
532 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
533 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
534 | myconf="${myconf} --without-berkeley-db" |
| 231 | else |
535 | else |
| 232 | myconf="${myconf} --with-openssl" |
536 | myconf="${myconf} --with-berkeley-db=./bdb" |
| 233 | fi |
537 | fi |
| 234 | else |
538 | else |
| 235 | myconf="${myconf} --without-openssl" |
|
|
| 236 | fi |
|
|
| 237 | |
|
|
| 238 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 239 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 240 | # It comes down to non-64-bit safety problems. |
|
|
| 241 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 242 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
| 243 | myconf="${myconf} --without-berkeley-db" |
539 | myconf="${myconf} --without-berkeley-db" |
| 244 | else |
|
|
| 245 | if useq "berkdb" ; then |
|
|
| 246 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 247 | else |
|
|
| 248 | myconf="${myconf} --without-berkeley-db" |
|
|
| 249 | fi |
540 | fi |
| 250 | fi |
|
|
| 251 | |
541 | |
| 252 | if mysql_version_is_at_least "4.01.03.00" ; then |
542 | if mysql_version_is_at_least "4.1.3" ; then |
| 253 | myconf="${myconf} --with-geometry" |
543 | myconf="${myconf} --with-geometry" |
|
|
544 | if [[ "${PN}" != "mysql-cluster" ]] ; then |
| 254 | myconf="${myconf} $(use_with cluster ndbcluster)" |
545 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| 255 | fi |
546 | fi |
|
|
547 | fi |
| 256 | |
548 | |
| 257 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
549 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 258 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
550 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 259 | myconf="${myconf} --with-archive-storage-engine" |
551 | myconf="${myconf} --with-archive-storage-engine" |
| 260 | |
552 | |
| 261 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
553 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 262 | myconf="${myconf} --with-csv-storage-engine" |
554 | myconf="${myconf} --with-csv-storage-engine" |
| … | |
… | |
| 265 | myconf="${myconf} --with-blackhole-storage-engine" |
557 | myconf="${myconf} --with-blackhole-storage-engine" |
| 266 | |
558 | |
| 267 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
559 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 268 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
560 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 269 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
561 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 270 | if mysql_version_is_at_least "5.00.03.00" ; then |
562 | if mysql_version_is_at_least "5.0.3" ; then |
| 271 | elog "Before using the Federated storage engine, please be sure to read" |
563 | elog "Before using the Federated storage engine, please be sure to read" |
| 272 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
564 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 273 | myconf="${myconf} --with-federated-storage-engine" |
565 | myconf="${myconf} --with-federated-storage-engine" |
| 274 | fi |
566 | fi |
| 275 | fi |
567 | fi |
| 276 | |
568 | |
|
|
569 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
570 | myconf="${myconf} `use_enable community community-features`" |
|
|
571 | if use community; then |
|
|
572 | myconf="${myconf} `use_enable profiling`" |
|
|
573 | else |
|
|
574 | myconf="${myconf} --disable-profiling" |
|
|
575 | fi |
|
|
576 | fi |
|
|
577 | |
| 277 | mysql_version_is_at_least "5.00.18.00" \ |
578 | mysql_version_is_at_least "5.0.18" \ |
| 278 | && useq "max-idx-128" \ |
579 | && use max-idx-128 \ |
| 279 | && myconf="${myconf} --with-max-indexes=128" |
580 | && myconf="${myconf} --with-max-indexes=128" |
| 280 | } |
581 | } |
| 281 | |
582 | |
| 282 | configure_51() { |
583 | configure_51() { |
| 283 | # TODO: !!!! readd --without-readline |
584 | # TODO: !!!! readd --without-readline |
| 284 | # the failure depend upon config/ac-macros/readline.m4 checking into |
585 | # the failure depend upon config/ac-macros/readline.m4 checking into |
| 285 | # readline.h instead of history.h |
586 | # readline.h instead of history.h |
| 286 | myconf="${myconf} $(use_with ssl)" |
587 | myconf="${myconf} $(use_with ssl ssl /usr)" |
| 287 | myconf="${myconf} --enable-assembler" |
588 | myconf="${myconf} --enable-assembler" |
| 288 | myconf="${myconf} --with-geometry" |
589 | myconf="${myconf} --with-geometry" |
| 289 | myconf="${myconf} --with-readline" |
590 | myconf="${myconf} --with-readline" |
| 290 | myconf="${myconf} --with-row-based-replication" |
|
|
| 291 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
591 | myconf="${myconf} --with-zlib-dir=/usr/" |
| 292 | 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" |
| 293 | useq "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 | )" |
| 294 | |
625 | |
| 295 | # 5.1 introduces a new way to manage storage engines (plugins) |
626 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 296 | # like configuration=none |
627 | # like configuration=none |
|
|
628 | # This base set are required, and will always be statically built. |
| 297 | 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 |
| 298 | if useq "extraengine" ; then |
641 | if use extraengine ; then |
| 299 | # 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 |
| 300 | plugins="${plugins},archive,blackhole,example,federated,ftexample,partition" |
643 | # not added yet: ibmdb2i |
|
|
644 | # Not supporting as examples: example,daemon_example,ftexample |
|
|
645 | plugins_sta="${plugins_sta} partition" |
| 301 | |
646 | |
|
|
647 | if [[ "${PN}" != "mariadb" ]] ; then |
| 302 | 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" |
| 303 | 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" |
| 304 | fi |
655 | fi |
| 305 | |
656 | else |
| 306 | if useq "innodb" ; then |
657 | plugins_dis="${plugins_dis} partition federated" |
| 307 | plugins="${plugins},innobase" |
|
|
| 308 | fi |
658 | fi |
|
|
659 | |
|
|
660 | # Upstream specifically requests that InnoDB always be built: |
|
|
661 | # - innobase, innodb_plugin |
|
|
662 | # Build falcon if available for 6.x series. |
|
|
663 | for i in innobase falcon ; do |
|
|
664 | [ -e "${S}"/storage/${i} ] && plugins_sta="${plugins_sta} ${i}" |
|
|
665 | done |
|
|
666 | for i in innodb_plugin ; do |
|
|
667 | [ -e "${S}"/storage/${i} ] && plugins_dyn="${plugins_dyn} ${i}" |
|
|
668 | done |
| 309 | |
669 | |
| 310 | # like configuration=max-no-ndb |
670 | # like configuration=max-no-ndb |
| 311 | if useq "cluster" ; then |
671 | if ( use cluster || [[ "${PN}" == "mysql-cluster" ]] ) ; then |
| 312 | plugins="${plugins},ndbcluster" |
672 | plugins_sta="${plugins_sta} ndbcluster partition" |
|
|
673 | plugins_dis="${plugins_dis//partition}" |
| 313 | 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" |
| 314 | fi |
690 | fi |
| 315 | |
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 | |
|
|
701 | if mysql_version_is_at_least "5.2" ; then |
|
|
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 |
|
|
709 | fi |
|
|
710 | fi |
|
|
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 |
| 316 | myconf="${myconf} --with-plugins=${plugins}" |
728 | myconf="${myconf} --with-plugins=${plugins_sta// /,}" |
|
|
729 | # And the disabled ones |
|
|
730 | for i in ${plugins_dis} ; do |
|
|
731 | myconf="${myconf} --without-plugin-${i}" |
|
|
732 | done |
|
|
733 | } |
|
|
734 | |
|
|
735 | pbxt_src_configure() { |
|
|
736 | mysql_init_vars |
|
|
737 | |
|
|
738 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
739 | |
|
|
740 | einfo "Reconfiguring dir '${PWD}'" |
|
|
741 | eautoreconf |
|
|
742 | |
|
|
743 | local myconf="" |
|
|
744 | myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)" |
|
|
745 | use debug && myconf="${myconf} --with-debug=full" |
|
|
746 | econf ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
747 | } |
|
|
748 | |
|
|
749 | pbxt_src_compile() { |
|
|
750 | |
|
|
751 | # Be backwards compatible for now |
|
|
752 | if [[ $EAPI != 2 ]]; then |
|
|
753 | pbxt_src_configure |
|
|
754 | fi |
|
|
755 | # TODO: is it safe/needed to use emake here ? |
|
|
756 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
757 | |
|
|
758 | popd |
|
|
759 | # TODO: modify test suite for PBXT |
|
|
760 | } |
|
|
761 | |
|
|
762 | pbxt_src_install() { |
|
|
763 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
764 | emake install DESTDIR="${D}" || die "Failed to install PBXT" |
|
|
765 | popd |
| 317 | } |
766 | } |
| 318 | |
767 | |
| 319 | # |
768 | # |
| 320 | # EBUILD FUNCTIONS |
769 | # EBUILD FUNCTIONS |
| 321 | # |
770 | # |
| 322 | |
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 |
| 323 | mysql_pkg_setup() { |
778 | mysql_pkg_setup() { |
| 324 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
779 | if has test ${FEATURES} ; then |
| 325 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
780 | if ! use minimal ; then |
| 326 | |
781 | if [[ $UID -eq 0 ]]; then |
| 327 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
782 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 328 | eerror "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
783 | fi |
| 329 | die "InnoDB now uses cmake to build, this is a TODO item, will be fixed shortly!" |
|
|
| 330 | fi |
784 | fi |
|
|
785 | fi |
|
|
786 | |
|
|
787 | # bug 350844 |
|
|
788 | case "${EAPI:-0}" in |
|
|
789 | 0 | 1) |
|
|
790 | if use static && !built_with_use sys-libs/ncurses static-libs; then |
|
|
791 | die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" |
|
|
792 | fi |
|
|
793 | ;; |
|
|
794 | esac |
| 331 | |
795 | |
| 332 | # Check for USE flag problems in pkg_setup |
796 | # Check for USE flag problems in pkg_setup |
| 333 | if useq "static" && useq "ssl" ; then |
797 | if use static && use ssl ; then |
| 334 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
| 335 | 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}" |
| 336 | fi |
801 | fi |
| 337 | |
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" |
|
|
808 | fi |
|
|
809 | |
| 338 | if ! mysql_version_is_at_least "5.00.00.00" \ |
810 | if ! mysql_version_is_at_least "5.0" \ |
| 339 | && useq "raid" \ |
811 | && use raid \ |
| 340 | && useq "static" ; then |
812 | && use static ; then |
| 341 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
813 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 342 | eerror "with RAID support enabled." |
814 | eerror "with RAID support enabled." |
| 343 | die "USE flags 'raid' and 'static' conflict!" |
815 | die "USE flags 'raid' and 'static' conflict!" |
| 344 | fi |
816 | fi |
| 345 | |
817 | |
| 346 | if mysql_version_is_at_least "4.01.03.00" \ |
818 | if mysql_version_is_at_least "4.1.3" \ |
| 347 | && ( useq "cluster" || useq "extraengine" ) \ |
819 | && ( use cluster || use extraengine || use embedded ) \ |
| 348 | && useq "minimal" ; then |
820 | && use minimal ; then |
| 349 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
| 350 | 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}" |
| 351 | fi |
824 | fi |
| 352 | |
825 | |
|
|
826 | if mysql_version_is_at_least "5.1" \ |
|
|
827 | && xtradb_patch_available \ |
|
|
828 | && use xtradb \ |
|
|
829 | && use embedded ; then |
|
|
830 | M="USE flags 'xtradb' and 'embedded' conflict and cause build failures" |
|
|
831 | eerror "${M}" |
|
|
832 | die "${M}" |
|
|
833 | fi |
|
|
834 | |
|
|
835 | # Bug #290570, 284946, 307251 |
|
|
836 | # Upstream changes made us need a fairly new GCC4. |
|
|
837 | # But only for 5.0.8[3-6]! |
|
|
838 | if mysql_version_is_at_least "5.0.83" && ! mysql_version_is_at_least 5.0.87 ; then |
|
|
839 | GCC_VER=$(gcc-version) |
|
|
840 | case ${GCC_VER} in |
|
|
841 | 2*|3*|4.0|4.1|4.2) |
|
|
842 | eerror "Some releases of MySQL required a very new GCC, and then" |
|
|
843 | eerror "later release relaxed that requirement again. Either pick a" |
|
|
844 | eerror "MySQL >=5.0.87, or use a newer GCC." |
|
|
845 | die "Active GCC too old!" ;; |
|
|
846 | esac |
|
|
847 | fi |
|
|
848 | |
|
|
849 | # This should come after all of the die statements |
|
|
850 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
851 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
852 | |
| 353 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
853 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 354 | && useq "berkdb" \ |
854 | && use berkdb \ |
| 355 | && 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!" |
| 356 | } |
|
|
| 357 | |
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. |
| 358 | mysql_src_unpack() { |
871 | mysql_src_unpack() { |
| 359 | # Initialize the proper variables first |
872 | # Initialize the proper variables first |
| 360 | mysql_init_vars |
873 | mysql_init_vars |
| 361 | |
874 | |
| 362 | unpack ${A} |
875 | unpack ${A} |
|
|
876 | # Grab the patches |
|
|
877 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 363 | |
878 | |
| 364 | mv -f "${WORKDIR}/${MY_P}${MYSQL_RERELEASE}" "${S}" |
879 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
880 | |
|
|
881 | # Be backwards compatible for now |
|
|
882 | case ${EAPI:-0} in |
|
|
883 | 2) : ;; |
|
|
884 | 0 | 1) mysql_src_prepare ;; |
|
|
885 | esac |
|
|
886 | } |
|
|
887 | |
|
|
888 | # @FUNCTION: mysql_src_prepare |
|
|
889 | # @DESCRIPTION: |
|
|
890 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
891 | mysql_src_prepare() { |
| 365 | cd "${S}" |
892 | cd "${S}" |
| 366 | |
893 | |
| 367 | # Apply the patches for this MySQL version |
894 | # Apply the patches for this MySQL version |
| 368 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
895 | EPATCH_SUFFIX="patch" |
| 369 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
896 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 370 | fi |
897 | # Clean out old items |
|
|
898 | rm -f "${EPATCH_SOURCE}"/* |
|
|
899 | # Now link in right patches |
|
|
900 | mysql_mv_patches |
|
|
901 | # And apply |
|
|
902 | epatch |
| 371 | |
903 | |
| 372 | # 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 |
| 373 | rm -f "${S}/zlib/"*.[ch] |
911 | rm -f "${S}/zlib/"*.[ch] |
| 374 | 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 |
| 375 | rm -f "scripts/mysqlbug" |
914 | rm -f "scripts/mysqlbug" |
| 376 | |
915 | |
| 377 | # Make charsets install in the right place |
916 | # Make charsets install in the right place |
| 378 | find . -name 'Makefile.am' \ |
917 | find . -name 'Makefile.am' \ |
| 379 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
918 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 380 | |
919 | |
| 381 | # Manage mysqlmanager |
|
|
| 382 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
| 383 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
| 384 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
| 385 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
| 386 | |
|
|
| 387 | if mysql_version_is_at_least "4.01.00.00" ; then |
920 | if mysql_version_is_at_least "4.1" ; then |
| 388 | # 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" |
| 389 | find . -name Makefile \ |
923 | find . -name Makefile \ |
| 390 | -o -name Makefile.in \ |
924 | -o -name Makefile.in \ |
| 391 | -o -name configure \ |
925 | -o -name configure \ |
| 392 | -exec rm -f {} \; |
926 | -exec rm -f {} \; |
| 393 | rm -f "ltmain.sh" |
927 | rm -f "ltmain.sh" |
| 394 | rm -f "scripts/mysqlbug" |
928 | rm -f "scripts/mysqlbug" |
| 395 | fi |
929 | fi |
| 396 | |
930 | |
| 397 | local rebuilddirlist bdbdir d |
931 | local rebuilddirlist d |
| 398 | |
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 | |
| 399 | if mysql_version_is_at_least "5.01.12.00" ; then |
955 | if mysql_version_is_at_least "5.1.12" ; then |
| 400 | # TODO: innodb is using cmake now? |
|
|
| 401 | rebuilddirlist="." |
956 | rebuilddirlist="." |
| 402 | bdbdir='' |
957 | # This does not seem to be needed presently. robbat2 2010/02/23 |
|
|
958 | #einfo "Updating innobase cmake" |
|
|
959 | ## TODO: check this with a cmake expert |
|
|
960 | #cmake \ |
|
|
961 | # -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
962 | # -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
|
|
963 | # "storage/innobase" |
| 403 | else |
964 | else |
| 404 | rebuilddirlist=". innobase" |
965 | rebuilddirlist=". innobase" |
| 405 | bdbdir='bdb/dist' |
|
|
| 406 | fi |
966 | fi |
| 407 | |
967 | |
| 408 | for d in ${rebuilddirlist} ; do |
968 | for d in ${rebuilddirlist} ; do |
| 409 | einfo "Reconfiguring dir '${d}'" |
969 | einfo "Reconfiguring dir '${d}'" |
| 410 | pushd "${d}" &>/dev/null |
970 | pushd "${d}" &>/dev/null |
| 411 | AT_GNUCONF_UPDATE="yes" eautoreconf |
971 | eautoreconf |
| 412 | popd &>/dev/null |
972 | popd &>/dev/null |
| 413 | done |
973 | done |
| 414 | |
974 | |
| 415 | if mysql_check_version_range "4.01.00.00 to 5.00.99.99" \ |
975 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 416 | && useq "berkdb" ; then |
976 | && use berkdb ; then |
|
|
977 | einfo "Fixing up berkdb buildsystem" |
| 417 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
978 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 418 | pushd "${bdbdir}" \ |
979 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
980 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
981 | #These files exist only with libtool-2*, and need to be included. |
|
|
982 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
983 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
984 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
985 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
986 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
987 | fi |
|
|
988 | pushd "bdb/dist" &>/dev/null |
| 419 | && sh s_all \ |
989 | sh s_all \ |
| 420 | || die "Failed bdb reconfigure" \ |
990 | || die "Failed bdb reconfigure" |
| 421 | &>/dev/null |
|
|
| 422 | popd &>/dev/null |
991 | popd &>/dev/null |
| 423 | fi |
992 | fi |
| 424 | } |
993 | } |
| 425 | |
994 | |
|
|
995 | # @FUNCTION: mysql_src_configure |
|
|
996 | # @DESCRIPTION: |
|
|
997 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 426 | mysql_src_compile() { |
998 | mysql_src_configure() { |
| 427 | # Make sure the vars are correctly initialized |
999 | # Make sure the vars are correctly initialized |
| 428 | mysql_init_vars |
1000 | mysql_init_vars |
| 429 | |
1001 | |
| 430 | # $myconf is modified by the configure_* functions |
1002 | # $myconf is modified by the configure_* functions |
| 431 | local myconf="" |
1003 | local myconf="" |
| 432 | |
1004 | |
| 433 | if useq "minimal" ; then |
1005 | if use minimal ; then |
| 434 | configure_minimal |
1006 | configure_minimal |
| 435 | else |
1007 | else |
| 436 | configure_common |
1008 | configure_common |
| 437 | if mysql_version_is_at_least "5.01.10.00" ; then |
1009 | if mysql_version_is_at_least "5.1.10" ; then |
| 438 | configure_51 |
1010 | configure_51 |
| 439 | else |
1011 | else |
| 440 | configure_40_41_50 |
1012 | configure_40_41_50 |
| 441 | fi |
1013 | fi |
| 442 | fi |
1014 | fi |
| … | |
… | |
| 445 | filter-flags "-O" "-O[01]" |
1017 | filter-flags "-O" "-O[01]" |
| 446 | |
1018 | |
| 447 | # glib-2.3.2_pre fix, bug #16496 |
1019 | # glib-2.3.2_pre fix, bug #16496 |
| 448 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
1020 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 449 | |
1021 | |
| 450 | append-flags "-fno-exceptions -fno-strict-aliasing" |
1022 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
1023 | # fail badly during cluster startup. |
|
|
1024 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
1025 | filter-flags "-fstack-protector-all" |
|
|
1026 | fi |
|
|
1027 | |
|
|
1028 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 451 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
1029 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 452 | mysql_version_is_at_least "5.00.00.00" \ |
1030 | mysql_version_is_at_least "5.0" \ |
| 453 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
1031 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 454 | 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 |
| 455 | |
1045 | |
| 456 | econf \ |
1046 | econf \ |
| 457 | --libexecdir="/usr/sbin" \ |
1047 | --libexecdir="/usr/sbin" \ |
| 458 | --sysconfdir="${MY_SYSCONFDIR}" \ |
1048 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 459 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
1049 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 463 | --with-low-memory \ |
1053 | --with-low-memory \ |
| 464 | --with-client-ldflags=-lstdc++ \ |
1054 | --with-client-ldflags=-lstdc++ \ |
| 465 | --enable-thread-safe-client \ |
1055 | --enable-thread-safe-client \ |
| 466 | --with-comment="Gentoo Linux ${PF}" \ |
1056 | --with-comment="Gentoo Linux ${PF}" \ |
| 467 | --without-docs \ |
1057 | --without-docs \ |
|
|
1058 | --with-LIBDIR="$(get_libdir)" \ |
| 468 | ${myconf} || die "econf failed" |
1059 | ${myconf} || die "econf failed" |
| 469 | |
1060 | |
| 470 | # TODO: Move this before autoreconf !!! |
1061 | # TODO: Move this before autoreconf !!! |
| 471 | find . -type f -name Makefile -print0 \ |
1062 | find . -type f -name Makefile -print0 \ |
| 472 | | xargs -0 -n100 sed -i \ |
1063 | | xargs -0 -n100 sed -i \ |
| 473 | -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)|' |
| 474 | |
1065 | |
|
|
1066 | if [[ $EAPI == 2 ]] && [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1067 | pbxt_patch_available && use pbxt && pbxt_src_configure |
|
|
1068 | fi |
|
|
1069 | } |
|
|
1070 | |
|
|
1071 | # @FUNCTION: mysql_src_compile |
|
|
1072 | # @DESCRIPTION: |
|
|
1073 | # Compile the mysql code. |
|
|
1074 | mysql_src_compile() { |
|
|
1075 | # Be backwards compatible for now |
|
|
1076 | case ${EAPI:-0} in |
|
|
1077 | 2) : ;; |
|
|
1078 | 0 | 1) mysql_src_configure ;; |
|
|
1079 | esac |
|
|
1080 | |
| 475 | emake || die "emake failed" |
1081 | emake || die "emake failed" |
| 476 | } |
|
|
| 477 | |
1082 | |
|
|
1083 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
|
|
1084 | pbxt_patch_available && use pbxt && pbxt_src_compile |
|
|
1085 | fi |
|
|
1086 | } |
|
|
1087 | |
|
|
1088 | # @FUNCTION: mysql_src_install |
|
|
1089 | # @DESCRIPTION: |
|
|
1090 | # Install mysql. |
| 478 | mysql_src_install() { |
1091 | mysql_src_install() { |
| 479 | # Make sure the vars are correctly initialized |
1092 | # Make sure the vars are correctly initialized |
| 480 | mysql_init_vars |
1093 | mysql_init_vars |
| 481 | |
1094 | |
| 482 | 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" |
| 483 | |
1100 | |
| 484 | insinto "${MY_INCLUDEDIR}" |
1101 | if [[ "${PBXT_NEWSTYLE}" != "1" ]]; then |
| 485 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
1102 | pbxt_patch_available && use pbxt && pbxt_src_install |
|
|
1103 | fi |
| 486 | |
1104 | |
| 487 | # Convenience links |
1105 | # Convenience links |
|
|
1106 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 488 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
1107 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 489 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
1108 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 490 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
1109 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 491 | |
1110 | |
| 492 | # Various junk (my-*.cnf moved elsewhere) |
1111 | # Various junk (my-*.cnf moved elsewhere) |
|
|
1112 | einfo "Removing duplicate /usr/share/mysql files" |
| 493 | rm -Rf "${D}/usr/share/info" |
1113 | rm -Rf "${D}/usr/share/info" |
| 494 | for removeme in "mysql-log-rotate" mysql.server* \ |
1114 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 495 | binary-configure* my-*.cnf mi_test_all* |
1115 | binary-configure* my-*.cnf mi_test_all* |
| 496 | do |
1116 | do |
| 497 | rm -f "${D}"/usr/share/mysql/${removeme} |
1117 | rm -f "${D}"/${MY_SHAREDSTATEDIR}/${removeme} |
| 498 | done |
1118 | done |
| 499 | |
1119 | |
| 500 | # Clean up stuff for a minimal build |
1120 | # Clean up stuff for a minimal build |
| 501 | if useq "minimal" ; then |
1121 | if use minimal ; then |
|
|
1122 | einfo "Remove all extra content for minimal build" |
| 502 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
1123 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 503 | 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} |
| 504 | rm -f "${D}/usr/sbin/mysqld" |
1125 | rm -f "${D}/usr/sbin/mysqld" |
| 505 | 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 |
| 506 | fi |
1127 | fi |
| 507 | |
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 | |
| 508 | # Configuration stuff |
1136 | # Configuration stuff |
| 509 | if mysql_version_is_at_least "4.01.00.00" ; then |
1137 | case ${MYSQL_PV_MAJOR} in |
| 510 | mysql_mycnf_version="4.1" |
|
|
| 511 | else |
|
|
| 512 | mysql_mycnf_version="4.0" |
1138 | 3*|4.0) mysql_mycnf_version="4.0" ;; |
| 513 | fi |
1139 | 4.[1-9]|5.0) mysql_mycnf_version="4.1" ;; |
|
|
1140 | 5.[1-9]|6*|7*) mysql_mycnf_version="5.1" ;; |
|
|
1141 | esac |
|
|
1142 | einfo "Building default my.cnf (${mysql_mycnf_version})" |
| 514 | insinto "${MY_SYSCONFDIR}" |
1143 | insinto "${MY_SYSCONFDIR}" |
| 515 | doins "scripts/mysqlaccess.conf" |
1144 | doins scripts/mysqlaccess.conf |
|
|
1145 | mycnf_src="my.cnf-${mysql_mycnf_version}" |
| 516 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
1146 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 517 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
1147 | "${FILESDIR}/${mycnf_src}" \ |
| 518 | > "${TMPDIR}/my.cnf.ok" |
1148 | > "${TMPDIR}/my.cnf.ok" |
| 519 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
1149 | if use latin1 ; then |
| 520 | 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" |
| 521 | fi |
1153 | fi |
| 522 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
1154 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 523 | |
1155 | |
| 524 | insinto "/etc/conf.d" |
|
|
| 525 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
|
|
| 526 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 527 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
| 528 | |
|
|
| 529 | # Minimal builds don't have the MySQL server |
1156 | # Minimal builds don't have the MySQL server |
| 530 | if ! useq "minimal" ; then |
1157 | if ! use minimal ; then |
| 531 | exeinto "/etc/init.d" |
1158 | einfo "Creating initial directories" |
| 532 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
|
|
| 533 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 534 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
| 535 | |
|
|
| 536 | insinto "/etc/logrotate.d" |
|
|
| 537 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
| 538 | |
|
|
| 539 | # Empty directories ... |
1159 | # Empty directories ... |
| 540 | diropts "-m0750" |
1160 | diropts "-m0750" |
| 541 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
1161 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 542 | dodir "${DATADIR}" |
1162 | dodir "${MY_DATADIR}" |
| 543 | keepdir "${DATADIR}" |
1163 | keepdir "${MY_DATADIR}" |
| 544 | chown -R mysql:mysql "${D}/${DATADIR}" |
1164 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 545 | fi |
1165 | fi |
| 546 | |
1166 | |
| 547 | diropts "-m0755" |
1167 | diropts "-m0755" |
| 548 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
1168 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 549 | dodir "${folder}" |
1169 | dodir "${folder}" |
| … | |
… | |
| 551 | chown -R mysql:mysql "${D}/${folder}" |
1171 | chown -R mysql:mysql "${D}/${folder}" |
| 552 | done |
1172 | done |
| 553 | fi |
1173 | fi |
| 554 | |
1174 | |
| 555 | # Docs |
1175 | # Docs |
|
|
1176 | einfo "Installing docs" |
| 556 | 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 |
|
|
1180 | doinfo "${S}"/Docs/mysql.info |
| 557 | |
1181 | |
| 558 | # Minimal builds don't have the MySQL server |
1182 | # Minimal builds don't have the MySQL server |
| 559 | if ! useq "minimal" ; then |
1183 | if ! use minimal ; then |
|
|
1184 | einfo "Including support files and sample configurations" |
|
|
1185 | docinto "support-files" |
|
|
1186 | for script in \ |
|
|
1187 | "${S}"/support-files/my-*.cnf \ |
|
|
1188 | "${S}"/support-files/magic \ |
|
|
1189 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
1190 | do |
|
|
1191 | [[ -f "$script" ]] && dodoc "${script}" |
|
|
1192 | done |
|
|
1193 | |
|
|
1194 | docinto "scripts" |
|
|
1195 | for script in "${S}"/scripts/mysql* ; do |
|
|
1196 | [[ -f "$script" ]] && [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
1197 | done |
|
|
1198 | |
|
|
1199 | fi |
|
|
1200 | |
|
|
1201 | mysql_lib_symlinks "${D}" |
|
|
1202 | } |
|
|
1203 | |
|
|
1204 | # @FUNCTION: mysql_pkg_preinst |
|
|
1205 | # @DESCRIPTION: |
|
|
1206 | # Create the user and groups for mysql - die if that fails. |
|
|
1207 | mysql_pkg_preinst() { |
|
|
1208 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
1209 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
1210 | } |
|
|
1211 | |
|
|
1212 | # @FUNCTION: mysql_pkg_postinst |
|
|
1213 | # @DESCRIPTION: |
|
|
1214 | # Run post-installation tasks: |
|
|
1215 | # create the dir for logfiles if non-existant |
|
|
1216 | # touch the logfiles and secure them |
|
|
1217 | # install scripts |
|
|
1218 | # issue required steps for optional features |
|
|
1219 | # issue deprecation warnings |
|
|
1220 | mysql_pkg_postinst() { |
|
|
1221 | # Make sure the vars are correctly initialized |
|
|
1222 | mysql_init_vars |
|
|
1223 | |
|
|
1224 | # Check FEATURES="collision-protect" before removing this |
|
|
1225 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
1226 | |
|
|
1227 | # Secure the logfiles |
|
|
1228 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
1229 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1230 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
1231 | |
|
|
1232 | # Minimal builds don't have the MySQL server |
|
|
1233 | if ! use minimal ; then |
| 560 | docinto "support-files" |
1234 | docinto "support-files" |
| 561 | for script in \ |
1235 | for script in \ |
| 562 | support-files/my-*.cnf \ |
1236 | support-files/my-*.cnf \ |
| 563 | support-files/magic \ |
1237 | support-files/magic \ |
| 564 | support-files/ndb-config-2-node.ini |
1238 | support-files/ndb-config-2-node.ini |
| 565 | do |
1239 | do |
|
|
1240 | [[ -f "${script}" ]] \ |
| 566 | dodoc "${script}" |
1241 | && dodoc "${script}" |
| 567 | done |
1242 | done |
| 568 | |
1243 | |
| 569 | docinto "scripts" |
1244 | docinto "scripts" |
| 570 | for script in scripts/mysql* ; do |
1245 | for script in scripts/mysql* ; do |
|
|
1246 | [[ -f "${script}" ]] \ |
| 571 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
1247 | && [[ "${script%.sh}" == "${script}" ]] \ |
|
|
1248 | && dodoc "${script}" |
| 572 | done |
1249 | done |
| 573 | fi |
|
|
| 574 | |
1250 | |
| 575 | ROOT="${D}" mysql_lib_symlinks |
|
|
| 576 | } |
|
|
| 577 | |
|
|
| 578 | mysql_pkg_preinst() { |
|
|
| 579 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
| 580 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
| 581 | } |
|
|
| 582 | |
|
|
| 583 | mysql_pkg_postinst() { |
|
|
| 584 | # Make sure the vars are correctly initialized |
|
|
| 585 | mysql_init_vars |
|
|
| 586 | |
|
|
| 587 | # Check FEATURES="collision-protect" before removing this |
|
|
| 588 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
| 589 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
| 590 | |
|
|
| 591 | # Secure the logfiles |
|
|
| 592 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
| 593 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 594 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 595 | |
|
|
| 596 | if ! useq "minimal" ; then |
|
|
| 597 | # Your friendly public service announcement ... |
|
|
| 598 | einfo |
1251 | einfo |
| 599 | elog "You might want to run:" |
1252 | elog "You might want to run:" |
| 600 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
1253 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 601 | elog "if this is a new install." |
1254 | elog "if this is a new install." |
| 602 | einfo |
1255 | einfo |
| 603 | mysql_version_is_at_least "5.01.00.00" \ |
1256 | |
| 604 | || elog "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
1257 | einfo |
|
|
1258 | elog "If you are upgrading major versions, you should run the" |
|
|
1259 | elog "mysql_upgrade tool." |
|
|
1260 | einfo |
| 605 | fi |
1261 | fi |
|
|
1262 | |
|
|
1263 | if pbxt_available && use pbxt ; then |
|
|
1264 | # TODO: explain it better |
|
|
1265 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
1266 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
1267 | elog "if, after that, you cannot start the MySQL server," |
|
|
1268 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
1269 | elog "use the MySQL upgrade script to restore the table" |
|
|
1270 | elog "or execute the following SQL command:" |
|
|
1271 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
1272 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
1273 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
1274 | elog " PRIMARY KEY (name)" |
|
|
1275 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
1276 | fi |
|
|
1277 | |
| 606 | mysql_check_version_range "4.00.00.00 to 5.00.99.99" \ |
1278 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 607 | && useq "berkdb" \ |
1279 | && use berkdb \ |
| 608 | && 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!" |
| 609 | } |
1281 | } |
| 610 | |
1282 | |
|
|
1283 | # @FUNCTION: mysql_pkg_config |
|
|
1284 | # @DESCRIPTION: |
|
|
1285 | # Configure mysql environment. |
| 611 | mysql_pkg_config() { |
1286 | mysql_pkg_config() { |
|
|
1287 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
1288 | |
| 612 | # Make sure the vars are correctly initialized |
1289 | # Make sure the vars are correctly initialized |
| 613 | mysql_init_vars |
1290 | mysql_init_vars |
| 614 | |
1291 | |
| 615 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
1292 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 616 | |
1293 | |
| 617 | if built_with_use dev-db/mysql minimal ; then |
1294 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 618 | die "Minimal builds do NOT include the MySQL server" |
1295 | die "Minimal builds do NOT include the MySQL server" |
|
|
1296 | fi |
|
|
1297 | |
|
|
1298 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
1299 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
1300 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
1301 | |
|
|
1302 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
1303 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1304 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
1305 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
1306 | else |
|
|
1307 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
1308 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
1309 | || die "Moving MY_DATADIR failed" |
|
|
1310 | fi |
|
|
1311 | else |
|
|
1312 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
1313 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
1314 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
1315 | else |
|
|
1316 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
1317 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
1318 | fi |
|
|
1319 | fi |
| 619 | fi |
1320 | fi |
| 620 | |
1321 | |
| 621 | local pwd1="a" |
1322 | local pwd1="a" |
| 622 | local pwd2="b" |
1323 | local pwd2="b" |
| 623 | local maxtry=5 |
1324 | local maxtry=15 |
| 624 | |
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 |
|
|
1329 | |
| 625 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
1330 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 626 | ewarn "You have already a MySQL database in place." |
1331 | ewarn "You have already a MySQL database in place." |
| 627 | ewarn "(${ROOT}/${DATADIR}/*)" |
1332 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 628 | 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." |
| 629 | die "MySQL database already exists!" |
1334 | die "MySQL database already exists!" |
| 630 | fi |
1335 | fi |
| 631 | |
1336 | |
| 632 | einfo "Creating the mysql database and setting proper" |
1337 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
| 633 | einfo "permissions on it ..." |
1338 | # localhost. Also causes weird failures. |
|
|
1339 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 634 | |
1340 | |
|
|
1341 | if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then |
|
|
1342 | |
| 635 | 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." |
| 636 | ewarn "Avoid [\"'\\_%] characters in the password" |
1345 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 637 | read -rsp " >" pwd1 ; echo |
1346 | read -rsp " >" pwd1 ; echo |
| 638 | |
1347 | |
| 639 | einfo "Retype the password" |
1348 | einfo "Retype the password" |
| 640 | read -rsp " >" pwd2 ; echo |
1349 | read -rsp " >" pwd2 ; echo |
| 641 | |
1350 | |
| 642 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
1351 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 643 | die "Passwords are not the same" |
1352 | die "Passwords are not the same" |
|
|
1353 | fi |
|
|
1354 | MYSQL_ROOT_PASSWORD="${pwd1}" |
|
|
1355 | unset pwd1 pwd2 |
| 644 | fi |
1356 | fi |
| 645 | |
1357 | |
| 646 | local options="" |
1358 | local options="" |
| 647 | local sqltmp="$(emktemp)" |
1359 | local sqltmp="$(emktemp)" |
| 648 | |
1360 | |
| … | |
… | |
| 651 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
1363 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 652 | || touch "${TMPDIR}/fill_help_tables.sql" |
1364 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 653 | help_tables="${TMPDIR}/fill_help_tables.sql" |
1365 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 654 | |
1366 | |
| 655 | pushd "${TMPDIR}" &>/dev/null |
1367 | pushd "${TMPDIR}" &>/dev/null |
| 656 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
1368 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1369 | if [ $? -ne 0 ]; then |
|
|
1370 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1371 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1372 | fi |
| 657 | popd &>/dev/null |
1373 | popd &>/dev/null |
| 658 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
1374 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 659 | || die "MySQL databases not installed" |
1375 | || die "MySQL databases not installed" |
| 660 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
1376 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 661 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
1377 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 662 | |
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 | |
| 663 | if mysql_version_is_at_least "4.01.03.00" ; then |
1393 | if mysql_version_is_at_least "4.1.3" ; then |
| 664 | options="--skip-ndbcluster" |
|
|
| 665 | |
|
|
| 666 | # Filling timezones, see |
1394 | # Filling timezones, see |
| 667 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
1395 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 668 | "${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 |
| 669 | |
1397 | |
| 670 | if [[ -r "${help_tables}" ]] ; then |
1398 | if [[ -r "${help_tables}" ]] ; then |
| 671 | cat "${help_tables}" >> "${sqltmp}" |
1399 | cat "${help_tables}" >> "${sqltmp}" |
| 672 | fi |
1400 | fi |
| 673 | fi |
1401 | fi |
|
|
1402 | |
|
|
1403 | einfo "Creating the mysql database and setting proper" |
|
|
1404 | einfo "permissions on it ..." |
| 674 | |
1405 | |
| 675 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
1406 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 676 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
1407 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 677 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1408 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 678 | ${options} \ |
1409 | ${options} \ |
| 679 | --user=mysql \ |
1410 | --user=mysql \ |
| 680 | --skip-grant-tables \ |
|
|
| 681 | --basedir=${ROOT}/usr \ |
1411 | --basedir=${ROOT}/usr \ |
| 682 | --datadir=${ROOT}/${DATADIR} \ |
1412 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 683 | --skip-innodb \ |
|
|
| 684 | --skip-bdb \ |
|
|
| 685 | --skip-networking \ |
|
|
| 686 | --max_allowed_packet=8M \ |
1413 | --max_allowed_packet=8M \ |
| 687 | --net_buffer_length=16K \ |
1414 | --net_buffer_length=16K \ |
|
|
1415 | --default-storage-engine=MyISAM \ |
| 688 | --socket=${socket} \ |
1416 | --socket=${socket} \ |
| 689 | --pid-file=${pidfile}" |
1417 | --pid-file=${pidfile}" |
|
|
1418 | #einfo "About to start mysqld: ${mysqld}" |
|
|
1419 | ebegin "Starting mysqld" |
| 690 | ${mysqld} & |
1420 | ${mysqld} & |
|
|
1421 | rc=$? |
| 691 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
1422 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 692 | maxtry=$((${maxtry}-1)) |
1423 | maxtry=$((${maxtry}-1)) |
| 693 | echo -n "." |
1424 | echo -n "." |
| 694 | sleep 1 |
1425 | sleep 1 |
| 695 | done |
1426 | done |
|
|
1427 | eend $rc |
| 696 | |
1428 | |
|
|
1429 | if ! [[ -S "${socket}" ]]; then |
|
|
1430 | die "Completely failed to start up mysqld with: ${mysqld}" |
|
|
1431 | fi |
|
|
1432 | |
|
|
1433 | ebegin "Setting root password" |
| 697 | # 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 |
| 698 | 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'" |
| 699 | "${ROOT}/usr/bin/mysql" \ |
1436 | "${ROOT}/usr/bin/mysql" \ |
| 700 | --socket=${socket} \ |
1437 | --socket=${socket} \ |
| 701 | -hlocalhost \ |
1438 | -hlocalhost \ |
| 702 | -e "${sql}" |
1439 | -e "${sql}" |
|
|
1440 | eend $? |
| 703 | |
1441 | |
| 704 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
1442 | ebegin "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 705 | |
|
|
| 706 | "${ROOT}/usr/bin/mysql" \ |
1443 | "${ROOT}/usr/bin/mysql" \ |
| 707 | --socket=${socket} \ |
1444 | --socket=${socket} \ |
| 708 | -hlocalhost \ |
1445 | -hlocalhost \ |
| 709 | -uroot \ |
1446 | -uroot \ |
| 710 | -p"${pwd1}" \ |
1447 | -p"${MYSQL_ROOT_PASSWORD}" \ |
| 711 | mysql < "${sqltmp}" |
1448 | mysql < "${sqltmp}" |
|
|
1449 | rc=$? |
|
|
1450 | eend $? |
|
|
1451 | [ $rc -ne 0 ] && ewarn "Failed to load zoneinfo!" |
| 712 | |
1452 | |
| 713 | # Stop the server and cleanup |
1453 | # Stop the server and cleanup |
|
|
1454 | einfo "Stopping the server ..." |
| 714 | kill $(< "${pidfile}" ) |
1455 | kill $(< "${pidfile}" ) |
| 715 | rm -f "${sqltmp}" |
1456 | rm -f "${sqltmp}" |
| 716 | einfo "Stopping the server ..." |
|
|
| 717 | wait %1 |
1457 | wait %1 |
| 718 | einfo "Done" |
1458 | einfo "Done" |
| 719 | } |
1459 | } |
| 720 | |
1460 | |
|
|
1461 | # @FUNCTION: mysql_pkg_postrm |
|
|
1462 | # @DESCRIPTION: |
|
|
1463 | # Remove mysql symlinks. |
| 721 | mysql_pkg_postrm() { |
1464 | mysql_pkg_postrm() { |
| 722 | mysql_lib_symlinks |
1465 | : # mysql_lib_symlinks "${D}" |
| 723 | } |
1466 | } |