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