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