| 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/mysql.eclass,v 1.73 2007/04/15 13:00:51 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.123 2009/12/10 01:27:59 robbat2 Exp $ |
| 4 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
| 9 | # Note that MYSQL_VERSION_ID must be empty! |
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
| 10 | |
17 | |
| 11 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 12 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
| 13 | |
20 | |
| 14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
|
|
22 | |
|
|
23 | case "${EAPI:-0}" in |
|
|
24 | 2) |
|
|
25 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
26 | src_unpack src_prepare \ |
|
|
27 | src_configure src_compile \ |
|
|
28 | src_install \ |
|
|
29 | pkg_preinst pkg_postinst \ |
|
|
30 | pkg_config pkg_postrm |
|
|
31 | IUSE_DEFAULT_ON='+' |
|
|
32 | ;; |
|
|
33 | 0 | 1) |
|
|
34 | EXPORT_FUNCTIONS pkg_setup \ |
|
|
35 | src_unpack \ |
|
|
36 | src_compile \ |
|
|
37 | src_install \ |
|
|
38 | pkg_preinst pkg_postinst \ |
|
|
39 | pkg_config pkg_postrm |
|
|
40 | ;; |
|
|
41 | *) |
|
|
42 | die "Unsupported EAPI: ${EAPI}" ;; |
|
|
43 | esac |
| 15 | |
44 | |
| 16 | # Shorten the path because the socket path length must be shorter than 107 chars |
45 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 17 | # and we will run a mysql server during test phase |
46 | # and we will run a mysql server during test phase |
| 18 | S="${WORKDIR}/mysql" |
47 | S="${WORKDIR}/mysql" |
| 19 | |
48 | |
| 20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
49 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 21 | |
50 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 22 | if [[ ${PR#r} -lt 60 ]] ; then |
51 | EGIT_PROJECT=mysql-extras |
| 23 | IS_BITKEEPER=0 |
52 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 24 | elif [[ ${PR#r} -lt 90 ]] ; then |
53 | inherit git |
| 25 | IS_BITKEEPER=60 |
|
|
| 26 | else |
|
|
| 27 | IS_BITKEEPER=90 |
|
|
| 28 | fi |
54 | fi |
| 29 | |
55 | |
|
|
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
|
|
57 | # @DESCRIPTION: |
| 30 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
| 31 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
59 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 32 | # This is an important part, because many of the choices the MySQL ebuild will do |
60 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 33 | # depend on this variable. |
61 | # depend on this variable. |
| 34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
62 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
63 | # We also strip off upstream's trailing letter that they use to respin tarballs |
| 35 | |
64 | |
| 36 | MYSQL_VERSION_ID="" |
65 | MYSQL_VERSION_ID="" |
|
|
66 | tpv="${PV%[a-z]}" |
| 37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
67 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 38 | for vatom in 0 1 2 3 ; do |
68 | for vatom in 0 1 2 3 ; do |
| 39 | # pad to length 2 |
69 | # pad to length 2 |
| 40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
70 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 42 | done |
72 | done |
| 43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
73 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 45 | |
75 | |
|
|
76 | # @ECLASS-VARIABLE: MYSQL_COMMUNITY_FEATURES |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Specifiy if community features are available. Possible values are 1 (yes) |
|
|
79 | # and 0 (no). |
|
|
80 | # Community features are available in mysql-community |
|
|
81 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
82 | if [ "${PN}" == "mysql-community" ]; then |
|
|
83 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
84 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
85 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
86 | elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then |
|
|
87 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
88 | elif [ "${PV#5.4}" != "${PV}" ]; then |
|
|
89 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
90 | else |
|
|
91 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
92 | fi |
|
|
93 | |
|
|
94 | # @ECLASS-VARIABLE: XTRADB_VER |
|
|
95 | # @DESCRIPTION: |
|
|
96 | # Version of the XTRADB storage engine |
|
|
97 | XTRADB_VER="${XTRADB_VER}" |
|
|
98 | |
|
|
99 | # @ECLASS-VARIABLE: PERCONA_VER |
|
|
100 | # @DESCRIPTION: |
|
|
101 | # Designation by PERCONA for a MySQL version to apply an XTRADB release |
|
|
102 | PERCONA_VER="${PERCONA_VER}" |
|
|
103 | |
| 46 | # Be warned, *DEPEND are version-dependant |
104 | # Be warned, *DEPEND are version-dependant |
|
|
105 | # These are used for both runtime and compiletime |
| 47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
106 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 48 | userland_GNU? ( sys-process/procps ) |
107 | userland_GNU? ( sys-process/procps ) |
| 49 | >=sys-apps/sed-4 |
108 | >=sys-apps/sed-4 |
| 50 | >=sys-apps/texinfo-4.7-r1 |
109 | >=sys-apps/texinfo-4.7-r1 |
| 51 | >=sys-libs/readline-4.1 |
110 | >=sys-libs/readline-4.1 |
| … | |
… | |
| 55 | for i in "" "-community" ; do |
114 | for i in "" "-community" ; do |
| 56 | [[ "${i}" == ${PN#mysql} ]] || |
115 | [[ "${i}" == ${PN#mysql} ]] || |
| 57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
116 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 58 | done |
117 | done |
| 59 | |
118 | |
|
|
119 | RDEPEND="${DEPEND} |
|
|
120 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
121 | selinux? ( sec-policy/selinux-mysql )" |
|
|
122 | |
|
|
123 | # compile-time-only |
| 60 | mysql_version_is_at_least "5.1" \ |
124 | mysql_version_is_at_least "5.1" \ |
| 61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
125 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 62 | |
126 | |
|
|
127 | # compile-time-only |
| 63 | mysql_version_is_at_least "5.1.12" \ |
128 | mysql_version_is_at_least "5.1.12" \ |
| 64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
129 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 65 | |
130 | |
| 66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
131 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
132 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
133 | |
| 69 | # BitKeeper dependency, compile-time only |
134 | # For other stuff to bring us in |
| 70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
135 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
|
|
136 | |
|
|
137 | # Work out the default SERVER_URI correctly |
|
|
138 | if [ -z "${SERVER_URI}" ]; then |
|
|
139 | # The community build is on the mirrors |
|
|
140 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
141 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
142 | # The (old) enterprise source is on the primary site only |
|
|
143 | elif [ "${PN}" == "mysql" ]; then |
|
|
144 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
145 | fi |
|
|
146 | fi |
| 71 | |
147 | |
| 72 | # Define correct SRC_URIs |
148 | # Define correct SRC_URIs |
| 73 | SRC_URI="${SERVER_URI} |
149 | SRC_URI="${SERVER_URI}" |
|
|
150 | |
|
|
151 | # Gentoo patches to MySQL |
|
|
152 | [[ ${MY_EXTRAS_VER} != live ]] \ |
|
|
153 | && SRC_URI="${SRC_URI} |
| 74 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
154 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 75 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
155 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
156 | |
|
|
157 | # PBXT engine |
| 76 | mysql_version_is_at_least "5.1.12" \ |
158 | mysql_version_is_at_least "5.1.12" \ |
| 77 | && [[ -n "${PBXT_VERSION}" ]] \ |
159 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 78 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
160 | && PBXT_P="pbxt-${PBXT_VERSION}" \ |
|
|
161 | && PBXT_SRC_URI="mirror://sourceforge/pbxt/${PBXT_P}.tar.gz" \ |
|
|
162 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URI} )" |
|
|
163 | |
|
|
164 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
165 | mysql_version_is_at_least "5.1.26" \ |
|
|
166 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
|
|
167 | && XTRADB_P="percona-xtradb-${XTRADB_VER}" \ |
|
|
168 | && XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/${XTRADB_P}.tar.gz" \ |
|
|
169 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" |
| 79 | |
170 | |
| 80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
171 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 81 | HOMEPAGE="http://www.mysql.com/" |
172 | HOMEPAGE="http://www.mysql.com/" |
| 82 | LICENSE="GPL-2" |
173 | LICENSE="GPL-2" |
| 83 | SLOT="0" |
174 | SLOT="0" |
| 84 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
175 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
| 85 | RESTRICT="confcache" |
|
|
| 86 | |
176 | |
| 87 | mysql_version_is_at_least "4.1" \ |
177 | mysql_version_is_at_least "4.1" \ |
| 88 | && IUSE="${IUSE} latin1" |
178 | && IUSE="${IUSE} latin1" |
| 89 | |
179 | |
| 90 | mysql_version_is_at_least "4.1.3" \ |
180 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 95 | |
185 | |
| 96 | mysql_version_is_at_least "5.0.18" \ |
186 | mysql_version_is_at_least "5.0.18" \ |
| 97 | && IUSE="${IUSE} max-idx-128" |
187 | && IUSE="${IUSE} max-idx-128" |
| 98 | |
188 | |
| 99 | mysql_version_is_at_least "5.1" \ |
189 | mysql_version_is_at_least "5.1" \ |
| 100 | && IUSE="${IUSE} innodb" |
|
|
| 101 | |
|
|
| 102 | mysql_version_is_at_least "5.1" \ |
|
|
| 103 | || IUSE="${IUSE} berkdb" |
190 | || IUSE="${IUSE} berkdb" |
| 104 | |
191 | |
| 105 | mysql_version_is_at_least "5.1.12" \ |
192 | mysql_version_is_at_least "5.1.12" \ |
|
|
193 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 106 | && IUSE="${IUSE} pbxt" |
194 | && IUSE="${IUSE} pbxt" |
| 107 | |
195 | |
| 108 | RDEPEND="${DEPEND} |
196 | mysql_version_is_at_least "5.1.26" \ |
| 109 | !minimal? ( dev-db/mysql-init-scripts ) |
197 | && [[ -n "${XTRADB_VER}" && -n "${PERCONA_VER}" ]] \ |
| 110 | selinux? ( sec-policy/selinux-mysql )" |
198 | && IUSE="${IUSE} xtradb" |
| 111 | |
199 | |
| 112 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
200 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 113 | pkg_postinst pkg_config pkg_postrm |
201 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 114 | |
202 | |
| 115 | # |
203 | # |
| 116 | # HELPER FUNCTIONS: |
204 | # HELPER FUNCTIONS: |
| 117 | # |
205 | # |
| 118 | |
206 | |
| 119 | bitkeeper_fetch() { |
207 | # @FUNCTION: mysql_disable_test |
| 120 | local reposuf |
208 | # @DESCRIPTION: |
| 121 | if [[ -z "${1}" ]] ; then |
209 | # Helper function to disable specific tests. |
| 122 | local tpv |
|
|
| 123 | tpv=( ${PV//[-._]/ } ) |
|
|
| 124 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
| 125 | else |
|
|
| 126 | reposuf="${1}" |
|
|
| 127 | fi |
|
|
| 128 | einfo "Using '${reposuf}' repository." |
|
|
| 129 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
| 130 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
| 131 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
| 132 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
| 133 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
| 134 | # hint: does not work |
|
|
| 135 | local ebk_fetch_cmd="sfioball" |
|
|
| 136 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
| 137 | local ebk_update_cmd="update" |
|
|
| 138 | |
|
|
| 139 | # addread "/etc/bitkeeper" |
|
|
| 140 | addwrite "${ebk_store_dir}" |
|
|
| 141 | |
|
|
| 142 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
| 143 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
| 144 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
| 145 | fi |
|
|
| 146 | |
|
|
| 147 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
| 148 | |
|
|
| 149 | local wc_path=${reposuf} |
|
|
| 150 | |
|
|
| 151 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
| 152 | local options="-r+" |
|
|
| 153 | |
|
|
| 154 | # first checkout |
|
|
| 155 | einfo "bitkeeper checkout start -->" |
|
|
| 156 | einfo " repository: ${repo_uri}" |
|
|
| 157 | |
|
|
| 158 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
| 159 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
| 160 | else |
|
|
| 161 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
| 162 | popd |
|
|
| 163 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
| 164 | fi |
|
|
| 165 | |
|
|
| 166 | # update working copy |
|
|
| 167 | einfo "bitkeeper update start -->" |
|
|
| 168 | einfo " repository: ${repo_uri}" |
|
|
| 169 | |
|
|
| 170 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
| 171 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
| 172 | fi |
|
|
| 173 | |
|
|
| 174 | einfo " working copy: ${wc_path}" |
|
|
| 175 | cd "${wc_path}" |
|
|
| 176 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
| 177 | |
|
|
| 178 | echo |
|
|
| 179 | popd |
|
|
| 180 | } |
|
|
| 181 | |
|
|
| 182 | mysql_disable_test() { |
210 | mysql_disable_test() { |
| 183 | local testname="${1}" ; shift |
211 | local testname="${1}" ; shift |
| 184 | local reason="${@}" |
212 | local reason="${@}" |
| 185 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
213 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 186 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
214 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 187 | ewarn "test '${testname}' disabled: '${reason}'" |
215 | ewarn "test '${testname}' disabled: '${reason}'" |
| 188 | } |
216 | } |
| 189 | |
217 | |
|
|
218 | # @FUNCTION: mysql_init_vars |
|
|
219 | # @DESCRIPTION: |
| 190 | # void mysql_init_vars() |
220 | # void mysql_init_vars() |
| 191 | # |
|
|
| 192 | # Initialize global variables |
221 | # Initialize global variables |
| 193 | # 2005-11-19 <vivo@gentoo.org> |
222 | # 2005-11-19 <vivo@gentoo.org> |
| 194 | |
|
|
| 195 | mysql_init_vars() { |
223 | mysql_init_vars() { |
| 196 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
224 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 197 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
225 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 198 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
226 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 199 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
227 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 200 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
228 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 201 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
229 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 202 | |
230 | |
| 203 | if [[ -z "${DATADIR}" ]] ; then |
231 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 204 | DATADIR="" |
232 | MY_DATADIR="" |
| 205 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
233 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 206 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
234 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 207 | | sed -ne '/datadir/s|^--datadir=||p' \ |
235 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 208 | | tail -n1` |
236 | | tail -n1` |
| 209 | if [[ -z "${DATADIR}" ]] ; then |
237 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 210 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
238 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 211 | | sed -e 's/.*=\s*//'` |
239 | | sed -e 's/.*=\s*//' \ |
|
|
240 | | tail -n1` |
| 212 | fi |
241 | fi |
| 213 | fi |
242 | fi |
| 214 | if [[ -z "${DATADIR}" ]] ; then |
243 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 215 | DATADIR="${MY_LOCALSTATEDIR}" |
244 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 216 | einfo "Using default DATADIR" |
245 | einfo "Using default MY_DATADIR" |
| 217 | fi |
246 | fi |
| 218 | elog "MySQL DATADIR is ${DATADIR}" |
247 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 219 | |
248 | |
| 220 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
249 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 221 | if [[ -e "${DATADIR}" ]] ; then |
250 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 222 | elog "Previous datadir found, it's YOUR job to change" |
251 | # If you get this and you're wondering about it, see bug #207636 |
| 223 | elog "ownership and take care of it" |
252 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
253 | elog "A new one will not be created." |
| 224 | PREVIOUS_DATADIR="yes" |
254 | PREVIOUS_DATADIR="yes" |
| 225 | else |
255 | else |
| 226 | PREVIOUS_DATADIR="no" |
256 | PREVIOUS_DATADIR="no" |
| 227 | fi |
257 | fi |
| 228 | export PREVIOUS_DATADIR |
258 | export PREVIOUS_DATADIR |
| 229 | fi |
259 | fi |
|
|
260 | else |
|
|
261 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
262 | local new_MY_DATADIR |
|
|
263 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
264 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
265 | | tail -n1` |
|
|
266 | |
|
|
267 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
268 | ewarn "MySQL MY_DATADIR has changed" |
|
|
269 | ewarn "from ${MY_DATADIR}" |
|
|
270 | ewarn "to ${new_MY_DATADIR}" |
|
|
271 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
272 | fi |
|
|
273 | fi |
| 230 | fi |
274 | fi |
| 231 | |
275 | |
| 232 | MY_SOURCEDIR=${SERVER_URI##*/} |
276 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 233 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
277 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 234 | |
278 | |
| 235 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
279 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 236 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
280 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 237 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
281 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 238 | } |
282 | } |
| 239 | |
283 | |
| 240 | configure_minimal() { |
284 | configure_minimal() { |
| 241 | # These are things we exclude from a minimal build, please |
285 | # These are things we exclude from a minimal build, please |
| 242 | # note that the server actually does get built and installed, |
286 | # note that the server actually does get built and installed, |
| 243 | # but we then delete it before packaging. |
287 | # but we then delete it before packaging. |
| 244 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
288 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 245 | |
289 | |
| 246 | for i in ${minimal_exclude_list} ; do |
290 | for i in ${minimal_exclude_list} ; do |
| 247 | myconf="${myconf} --without-${i}" |
291 | myconf="${myconf} --without-${i}" |
| 248 | done |
292 | done |
| 249 | myconf="${myconf} --with-extra-charsets=none" |
293 | myconf="${myconf} --with-extra-charsets=none" |
| 250 | myconf="${myconf} --enable-local-infile" |
294 | myconf="${myconf} --enable-local-infile" |
| 251 | |
295 | |
| 252 | if use static ; then |
296 | if use static ; then |
| 253 | myconf="${myconf} --with-client-ldflags=-all-static" |
297 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 254 | myconf="${myconf} --disable-shared" |
298 | myconf="${myconf} --disable-shared --with-pic" |
| 255 | else |
299 | else |
| 256 | myconf="${myconf} --enable-shared --enable-static" |
300 | myconf="${myconf} --enable-shared --enable-static" |
| 257 | fi |
301 | fi |
| 258 | |
302 | |
| 259 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
303 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| … | |
… | |
| 275 | myconf="${myconf} --without-libwrap" |
319 | myconf="${myconf} --without-libwrap" |
| 276 | |
320 | |
| 277 | if use static ; then |
321 | if use static ; then |
| 278 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
322 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 279 | myconf="${myconf} --with-client-ldflags=-all-static" |
323 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 280 | myconf="${myconf} --disable-shared" |
324 | myconf="${myconf} --disable-shared --with-pic" |
| 281 | else |
325 | else |
| 282 | myconf="${myconf} --enable-shared --enable-static" |
326 | myconf="${myconf} --enable-shared --enable-static" |
| 283 | fi |
327 | fi |
| 284 | |
328 | |
| 285 | if use debug ; then |
329 | if use debug ; then |
| … | |
… | |
| 289 | mysql_version_is_at_least "4.1.3" \ |
333 | mysql_version_is_at_least "4.1.3" \ |
| 290 | && use cluster \ |
334 | && use cluster \ |
| 291 | && myconf="${myconf} --without-ndb-debug" |
335 | && myconf="${myconf} --without-ndb-debug" |
| 292 | fi |
336 | fi |
| 293 | |
337 | |
|
|
338 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
339 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
340 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
341 | ewarn "You MUST file bugs without these variables set." |
|
|
342 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
343 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 294 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
344 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 295 | myconf="${myconf} --with-charset=utf8" |
345 | myconf="${myconf} --with-charset=utf8" |
| 296 | myconf="${myconf} --with-collation=utf8_general_ci" |
346 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 297 | else |
347 | else |
| 298 | myconf="${myconf} --with-charset=latin1" |
348 | myconf="${myconf} --with-charset=latin1" |
| 299 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
349 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 300 | fi |
350 | fi |
| 301 | |
351 | |
| 302 | if use embedded ; then |
352 | if use embedded ; then |
| 303 | myconf="${myconf} --with-embedded-privilege-control" |
353 | myconf="${myconf} --with-embedded-privilege-control" |
| 304 | myconf="${myconf} --with-embedded-server" |
354 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 327 | myconf="${myconf} $(use_with ssl)" |
377 | myconf="${myconf} $(use_with ssl)" |
| 328 | else |
378 | else |
| 329 | myconf="${myconf} $(use_with ssl openssl)" |
379 | myconf="${myconf} $(use_with ssl openssl)" |
| 330 | fi |
380 | fi |
| 331 | |
381 | |
|
|
382 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
383 | if use berkdb ; then |
|
|
384 | elog "Berkeley DB support was disabled due to build failures" |
|
|
385 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
386 | elog "if you want it again. Gentoo bug #224067." |
|
|
387 | fi |
|
|
388 | myconf="${myconf} --without-berkeley-db" |
|
|
389 | elif use berkdb ; then |
| 332 | # The following fix is due to a bug with bdb on SPARC's. See: |
390 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 333 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
391 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 334 | # It comes down to non-64-bit safety problems. |
392 | # It comes down to non-64-bit safety problems. |
| 335 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
393 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 336 | elog "Berkeley DB support was disabled due to incompatible arch" |
394 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
395 | myconf="${myconf} --without-berkeley-db" |
|
|
396 | else |
|
|
397 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
398 | fi |
|
|
399 | else |
| 337 | myconf="${myconf} --without-berkeley-db" |
400 | myconf="${myconf} --without-berkeley-db" |
| 338 | else |
|
|
| 339 | if use berkdb ; then |
|
|
| 340 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 341 | else |
|
|
| 342 | myconf="${myconf} --without-berkeley-db" |
|
|
| 343 | fi |
|
|
| 344 | fi |
401 | fi |
| 345 | |
402 | |
| 346 | if mysql_version_is_at_least "4.1.3" ; then |
403 | if mysql_version_is_at_least "4.1.3" ; then |
| 347 | myconf="${myconf} --with-geometry" |
404 | myconf="${myconf} --with-geometry" |
| 348 | myconf="${myconf} $(use_with cluster ndbcluster)" |
405 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 363 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
420 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 364 | if mysql_version_is_at_least "5.0.3" ; then |
421 | if mysql_version_is_at_least "5.0.3" ; then |
| 365 | elog "Before using the Federated storage engine, please be sure to read" |
422 | elog "Before using the Federated storage engine, please be sure to read" |
| 366 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
423 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 367 | myconf="${myconf} --with-federated-storage-engine" |
424 | myconf="${myconf} --with-federated-storage-engine" |
|
|
425 | fi |
|
|
426 | fi |
|
|
427 | |
|
|
428 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
429 | myconf="${myconf} `use_enable community community-features`" |
|
|
430 | if use community; then |
|
|
431 | myconf="${myconf} `use_enable profiling`" |
|
|
432 | else |
|
|
433 | myconf="${myconf} --disable-profiling" |
| 368 | fi |
434 | fi |
| 369 | fi |
435 | fi |
| 370 | |
436 | |
| 371 | mysql_version_is_at_least "5.0.18" \ |
437 | mysql_version_is_at_least "5.0.18" \ |
| 372 | && use max-idx-128 \ |
438 | && use max-idx-128 \ |
| … | |
… | |
| 395 | |
461 | |
| 396 | elog "Before using the Federated storage engine, please be sure to read" |
462 | elog "Before using the Federated storage engine, please be sure to read" |
| 397 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
463 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 398 | fi |
464 | fi |
| 399 | |
465 | |
| 400 | if use innodb ; then |
466 | # Upstream specifically requests that InnoDB always be built. |
| 401 | plugins="${plugins},innobase" |
467 | plugins="${plugins},innobase" |
| 402 | fi |
|
|
| 403 | |
468 | |
| 404 | # like configuration=max-no-ndb |
469 | # like configuration=max-no-ndb |
| 405 | if use cluster ; then |
470 | if use cluster ; then |
| 406 | plugins="${plugins},ndbcluster" |
471 | plugins="${plugins},ndbcluster" |
| 407 | myconf="${myconf} --with-ndb-binlog" |
472 | myconf="${myconf} --with-ndb-binlog" |
| … | |
… | |
| 412 | fi |
477 | fi |
| 413 | |
478 | |
| 414 | myconf="${myconf} --with-plugins=${plugins}" |
479 | myconf="${myconf} --with-plugins=${plugins}" |
| 415 | } |
480 | } |
| 416 | |
481 | |
| 417 | pbxt_src_compile() { |
482 | pbxt_src_configure() { |
| 418 | mysql_init_vars |
483 | mysql_init_vars |
| 419 | |
484 | |
| 420 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
485 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 421 | |
486 | |
| 422 | einfo "Reconfiguring dir '${PWD}'" |
487 | einfo "Reconfiguring dir '${PWD}'" |
| … | |
… | |
| 425 | local myconf="" |
490 | local myconf="" |
| 426 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
491 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 427 | use debug && myconf="${myconf} --with-debug=full" |
492 | use debug && myconf="${myconf} --with-debug=full" |
| 428 | # TODO: is it safe/needed to use econf here ? |
493 | # TODO: is it safe/needed to use econf here ? |
| 429 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
494 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
495 | } |
|
|
496 | |
|
|
497 | pbxt_src_compile() { |
|
|
498 | # Be backwards compatible for now |
|
|
499 | if [[ $EAPI != 2 ]]; then |
|
|
500 | pbxt_src_configure |
|
|
501 | fi |
| 430 | # TODO: is it safe/needed to use emake here ? |
502 | # TODO: is it safe/needed to use emake here ? |
| 431 | make || die "Problem making PBXT storage engine (${myconf})" |
503 | make || die "Problem making PBXT storage engine (${myconf})" |
| 432 | |
504 | |
| 433 | popd |
505 | popd |
| 434 | # TODO: modify test suite for PBXT |
506 | # TODO: modify test suite for PBXT |
| … | |
… | |
| 441 | } |
513 | } |
| 442 | |
514 | |
| 443 | # |
515 | # |
| 444 | # EBUILD FUNCTIONS |
516 | # EBUILD FUNCTIONS |
| 445 | # |
517 | # |
| 446 | |
518 | # @FUNCTION: mysql_pkg_setup |
|
|
519 | # @DESCRIPTION: |
|
|
520 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
521 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
522 | # check for conflicting use flags |
|
|
523 | # create new user and group for mysql |
|
|
524 | # warn about deprecated features |
| 447 | mysql_pkg_setup() { |
525 | mysql_pkg_setup() { |
| 448 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
526 | if hasq test ${FEATURES} ; then |
| 449 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
527 | if ! use minimal ; then |
|
|
528 | if [[ $UID -eq 0 ]]; then |
|
|
529 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
530 | fi |
|
|
531 | fi |
|
|
532 | fi |
| 450 | |
533 | |
| 451 | # Check for USE flag problems in pkg_setup |
534 | # Check for USE flag problems in pkg_setup |
| 452 | if use static && use ssl ; then |
535 | if use static && use ssl ; then |
| 453 | eerror "MySQL does not support being built statically with SSL support enabled!" |
536 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 454 | die "MySQL does not support being built statically with SSL support enabled!" |
537 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 467 | && use minimal ; then |
550 | && use minimal ; then |
| 468 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
551 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 469 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
552 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 470 | fi |
553 | fi |
| 471 | |
554 | |
|
|
555 | # This should come after all of the die statements |
|
|
556 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
557 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
558 | |
| 472 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
559 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 473 | && use berkdb \ |
560 | && use berkdb \ |
| 474 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
561 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 475 | } |
562 | } |
| 476 | |
563 | |
|
|
564 | # @FUNCTION: mysql_src_unpack |
|
|
565 | # @DESCRIPTION: |
|
|
566 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 477 | mysql_src_unpack() { |
567 | mysql_src_unpack() { |
| 478 | # Initialize the proper variables first |
568 | # Initialize the proper variables first |
| 479 | mysql_init_vars |
569 | mysql_init_vars |
| 480 | |
570 | |
| 481 | unpack ${A} |
571 | unpack ${A} |
| 482 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
572 | # Grab the patches |
| 483 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
573 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 484 | bitkeeper_fetch "mysql-5.1-ndb" |
574 | |
| 485 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
| 486 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
| 487 | else |
|
|
| 488 | bitkeeper_fetch |
|
|
| 489 | fi |
|
|
| 490 | cd "${S}" |
|
|
| 491 | einfo "Running upstream autorun over BK sources ..." |
|
|
| 492 | BUILD/autorun.sh |
|
|
| 493 | else |
|
|
| 494 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
575 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
576 | |
|
|
577 | # Be backwards compatible for now |
|
|
578 | case ${EAPI:-0} in |
|
|
579 | 2) : ;; |
|
|
580 | 0 | 1) mysql_src_prepare ;; |
|
|
581 | esac |
|
|
582 | } |
|
|
583 | |
|
|
584 | # @FUNCTION: mysql_src_prepare |
|
|
585 | # @DESCRIPTION: |
|
|
586 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
587 | mysql_src_prepare() { |
| 495 | cd "${S}" |
588 | cd "${S}" |
| 496 | fi |
|
|
| 497 | |
589 | |
| 498 | # Apply the patches for this MySQL version |
590 | # Apply the patches for this MySQL version |
| 499 | EPATCH_SUFFIX="patch" |
591 | EPATCH_SUFFIX="patch" |
| 500 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
592 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
593 | # Clean out old items |
|
|
594 | rm -f "${EPATCH_SOURCE}"/* |
|
|
595 | # Now link in right patches |
| 501 | mysql_mv_patches |
596 | mysql_mv_patches |
|
|
597 | # And apply |
| 502 | epatch |
598 | epatch |
| 503 | |
599 | |
| 504 | # Additional checks, remove bundled zlib |
600 | # Additional checks, remove bundled zlib |
| 505 | rm -f "${S}/zlib/"*.[ch] |
601 | rm -f "${S}/zlib/"*.[ch] |
| 506 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
602 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| … | |
… | |
| 510 | find . -name 'Makefile.am' \ |
606 | find . -name 'Makefile.am' \ |
| 511 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
607 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
| 512 | |
608 | |
| 513 | if mysql_version_is_at_least "4.1" ; then |
609 | if mysql_version_is_at_least "4.1" ; then |
| 514 | # Remove what needs to be recreated, so we're sure it's actually done |
610 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
611 | einfo "Cleaning up old buildscript files" |
| 515 | find . -name Makefile \ |
612 | find . -name Makefile \ |
| 516 | -o -name Makefile.in \ |
613 | -o -name Makefile.in \ |
| 517 | -o -name configure \ |
614 | -o -name configure \ |
| 518 | -exec rm -f {} \; |
615 | -exec rm -f {} \; |
| 519 | rm -f "ltmain.sh" |
616 | rm -f "ltmain.sh" |
| 520 | rm -f "scripts/mysqlbug" |
617 | rm -f "scripts/mysqlbug" |
| 521 | fi |
618 | fi |
| 522 | |
619 | |
| 523 | local rebuilddirlist d |
620 | local rebuilddirlist d |
| 524 | |
621 | |
|
|
622 | if mysql_version_is_at_least "5.1.26" && use xtradb ; then |
|
|
623 | einfo "Replacing InnoDB with Percona XtraDB" |
|
|
624 | pushd "${S}"/storage |
|
|
625 | i="innobase" |
|
|
626 | o="${WORKDIR}/storage-${i}.mysql-upstream" |
|
|
627 | # Have we been here already? |
|
|
628 | [ -h "${i}" ] && rm -f "${i}" |
|
|
629 | # Or maybe we haven't |
|
|
630 | [ -d "${i}" -a ! -d "${o}" ] && mv "${i}" "${o}" |
|
|
631 | ln -s "${WORKDIR}/${XTRADB_P}" "${i}" |
|
|
632 | popd |
|
|
633 | fi |
|
|
634 | |
| 525 | if mysql_version_is_at_least "5.1.12" ; then |
635 | if mysql_version_is_at_least "5.1.12" ; then |
|
|
636 | einfo "Updating innobase cmake" |
| 526 | rebuilddirlist="." |
637 | rebuilddirlist="." |
| 527 | # TODO: check this with a cmake expert |
638 | # TODO: check this with a cmake expert |
| 528 | use innodb \ |
|
|
| 529 | && cmake \ |
639 | cmake \ |
| 530 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
640 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 531 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
641 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 532 | "storage/innobase" |
642 | "storage/innobase" |
| 533 | else |
643 | else |
| 534 | rebuilddirlist=". innobase" |
644 | rebuilddirlist=". innobase" |
| 535 | fi |
645 | fi |
| 536 | |
646 | |
| … | |
… | |
| 541 | popd &>/dev/null |
651 | popd &>/dev/null |
| 542 | done |
652 | done |
| 543 | |
653 | |
| 544 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
654 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 545 | && use berkdb ; then |
655 | && use berkdb ; then |
|
|
656 | einfo "Fixing up berkdb buildsystem" |
| 546 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
657 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 547 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
658 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 548 | || die "Could not copy libtool.m4 to bdb/dist/" |
659 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
660 | #These files exist only with libtool-2*, and need to be included. |
|
|
661 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
662 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
663 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
664 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
665 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
666 | fi |
| 549 | pushd "bdb/dist" &>/dev/null |
667 | pushd "bdb/dist" &>/dev/null |
| 550 | sh s_all \ |
668 | sh s_all \ |
| 551 | || die "Failed bdb reconfigure" |
669 | || die "Failed bdb reconfigure" |
| 552 | popd &>/dev/null |
670 | popd &>/dev/null |
| 553 | fi |
671 | fi |
| 554 | } |
672 | } |
| 555 | |
673 | |
|
|
674 | # @FUNCTION: mysql_src_configure |
|
|
675 | # @DESCRIPTION: |
|
|
676 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 556 | mysql_src_compile() { |
677 | mysql_src_configure() { |
| 557 | # Make sure the vars are correctly initialized |
678 | # Make sure the vars are correctly initialized |
| 558 | mysql_init_vars |
679 | mysql_init_vars |
| 559 | |
680 | |
| 560 | # $myconf is modified by the configure_* functions |
681 | # $myconf is modified by the configure_* functions |
| 561 | local myconf="" |
682 | local myconf="" |
| … | |
… | |
| 575 | filter-flags "-O" "-O[01]" |
696 | filter-flags "-O" "-O[01]" |
| 576 | |
697 | |
| 577 | # glib-2.3.2_pre fix, bug #16496 |
698 | # glib-2.3.2_pre fix, bug #16496 |
| 578 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
699 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 579 | |
700 | |
|
|
701 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
702 | # fail badly during cluster startup. |
|
|
703 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
704 | filter-flags "-fstack-protector-all" |
|
|
705 | fi |
|
|
706 | |
| 580 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
707 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 581 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
708 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 582 | mysql_version_is_at_least "5.0" \ |
709 | mysql_version_is_at_least "5.0" \ |
| 583 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
710 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 584 | export CXXFLAGS |
711 | export CXXFLAGS |
|
|
712 | |
|
|
713 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
714 | append-flags -fno-strict-aliasing |
| 585 | |
715 | |
| 586 | econf \ |
716 | econf \ |
| 587 | --libexecdir="/usr/sbin" \ |
717 | --libexecdir="/usr/sbin" \ |
| 588 | --sysconfdir="${MY_SYSCONFDIR}" \ |
718 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 589 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
719 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 600 | # TODO: Move this before autoreconf !!! |
730 | # TODO: Move this before autoreconf !!! |
| 601 | find . -type f -name Makefile -print0 \ |
731 | find . -type f -name Makefile -print0 \ |
| 602 | | xargs -0 -n100 sed -i \ |
732 | | xargs -0 -n100 sed -i \ |
| 603 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
733 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 604 | |
734 | |
|
|
735 | if [[ $EAPI == 2 ]]; then |
|
|
736 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
|
|
737 | fi |
|
|
738 | } |
|
|
739 | |
|
|
740 | # @FUNCTION: mysql_src_compile |
|
|
741 | # @DESCRIPTION: |
|
|
742 | # Compile the mysql code. |
|
|
743 | mysql_src_compile() { |
|
|
744 | # Be backwards compatible for now |
|
|
745 | case ${EAPI:-0} in |
|
|
746 | 2) : ;; |
|
|
747 | 0 | 1) mysql_src_configure ;; |
|
|
748 | esac |
|
|
749 | |
| 605 | emake || die "emake failed" |
750 | emake || die "emake failed" |
| 606 | |
751 | |
| 607 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
752 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 608 | } |
753 | } |
| 609 | |
754 | |
|
|
755 | # @FUNCTION: mysql_src_install |
|
|
756 | # @DESCRIPTION: |
|
|
757 | # Install mysql. |
| 610 | mysql_src_install() { |
758 | mysql_src_install() { |
| 611 | # Make sure the vars are correctly initialized |
759 | # Make sure the vars are correctly initialized |
| 612 | mysql_init_vars |
760 | mysql_init_vars |
| 613 | |
761 | |
| 614 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
762 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 615 | |
763 | |
| 616 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
764 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 617 | |
765 | |
| 618 | insinto "${MY_INCLUDEDIR}" |
|
|
| 619 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 620 | |
|
|
| 621 | # Convenience links |
766 | # Convenience links |
|
|
767 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 622 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
768 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 623 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
769 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 624 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
770 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 625 | |
771 | |
| 626 | # Various junk (my-*.cnf moved elsewhere) |
772 | # Various junk (my-*.cnf moved elsewhere) |
|
|
773 | einfo "Removing duplicate /usr/share/mysql files" |
| 627 | rm -Rf "${D}/usr/share/info" |
774 | rm -Rf "${D}/usr/share/info" |
| 628 | for removeme in "mysql-log-rotate" mysql.server* \ |
775 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 629 | binary-configure* my-*.cnf mi_test_all* |
776 | binary-configure* my-*.cnf mi_test_all* |
| 630 | do |
777 | do |
| 631 | rm -f "${D}"/usr/share/mysql/${removeme} |
778 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 632 | done |
779 | done |
| 633 | |
780 | |
| 634 | # Clean up stuff for a minimal build |
781 | # Clean up stuff for a minimal build |
| 635 | if use minimal ; then |
782 | if use minimal ; then |
|
|
783 | einfo "Remove all extra content for minimal build" |
| 636 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
784 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 637 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
785 | rm -f "${D}"/usr/bin/{mysql{_install_db,manager*,_secure_installation,_fix_privilege_tables,hotcopy,_convert_table_format,d_multi,_fix_extensions,_zap,_explain_log,_tableinfo,d_safe,_install,_waitpid,binlog,test},myisam*,isam*,pack_isam} |
| 638 | rm -f "${D}/usr/sbin/mysqld" |
786 | rm -f "${D}/usr/sbin/mysqld" |
| 639 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
787 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 640 | fi |
788 | fi |
| … | |
… | |
| 643 | if mysql_version_is_at_least "4.1" ; then |
791 | if mysql_version_is_at_least "4.1" ; then |
| 644 | mysql_mycnf_version="4.1" |
792 | mysql_mycnf_version="4.1" |
| 645 | else |
793 | else |
| 646 | mysql_mycnf_version="4.0" |
794 | mysql_mycnf_version="4.0" |
| 647 | fi |
795 | fi |
|
|
796 | einfo "Building default my.cnf" |
| 648 | insinto "${MY_SYSCONFDIR}" |
797 | insinto "${MY_SYSCONFDIR}" |
| 649 | doins scripts/mysqlaccess.conf |
798 | doins scripts/mysqlaccess.conf |
| 650 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
799 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 651 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
800 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 652 | > "${TMPDIR}/my.cnf.ok" |
801 | > "${TMPDIR}/my.cnf.ok" |
| 653 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
802 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 654 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
803 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 655 | fi |
804 | fi |
| 656 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
805 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 657 | |
806 | |
| 658 | # Minimal builds don't have the MySQL server |
807 | # Minimal builds don't have the MySQL server |
| 659 | if ! use minimal ; then |
808 | if ! use minimal ; then |
|
|
809 | einfo "Creating initial directories" |
| 660 | # Empty directories ... |
810 | # Empty directories ... |
| 661 | diropts "-m0750" |
811 | diropts "-m0750" |
| 662 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
812 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 663 | dodir "${DATADIR}" |
813 | dodir "${MY_DATADIR}" |
| 664 | keepdir "${DATADIR}" |
814 | keepdir "${MY_DATADIR}" |
| 665 | chown -R mysql:mysql "${D}/${DATADIR}" |
815 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 666 | fi |
816 | fi |
| 667 | |
817 | |
| 668 | diropts "-m0755" |
818 | diropts "-m0755" |
| 669 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
819 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 670 | dodir "${folder}" |
820 | dodir "${folder}" |
| … | |
… | |
| 672 | chown -R mysql:mysql "${D}/${folder}" |
822 | chown -R mysql:mysql "${D}/${folder}" |
| 673 | done |
823 | done |
| 674 | fi |
824 | fi |
| 675 | |
825 | |
| 676 | # Docs |
826 | # Docs |
|
|
827 | einfo "Installing docs" |
| 677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
828 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
829 | doinfo "${S}"/Docs/mysql.info |
| 678 | |
830 | |
| 679 | # Minimal builds don't have the MySQL server |
831 | # Minimal builds don't have the MySQL server |
| 680 | if ! use minimal ; then |
832 | if ! use minimal ; then |
|
|
833 | einfo "Including support files and sample configurations" |
| 681 | docinto "support-files" |
834 | docinto "support-files" |
| 682 | for script in \ |
835 | for script in \ |
| 683 | support-files/my-*.cnf \ |
836 | "${S}"/support-files/my-*.cnf \ |
| 684 | support-files/magic \ |
837 | "${S}"/support-files/magic \ |
| 685 | support-files/ndb-config-2-node.ini |
838 | "${S}"/support-files/ndb-config-2-node.ini |
| 686 | do |
839 | do |
| 687 | dodoc "${script}" |
840 | dodoc "${script}" |
| 688 | done |
841 | done |
| 689 | |
842 | |
| 690 | docinto "scripts" |
843 | docinto "scripts" |
| 691 | for script in scripts/mysql* ; do |
844 | for script in "${S}"/scripts/mysql* ; do |
| 692 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
845 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 693 | done |
846 | done |
|
|
847 | |
| 694 | fi |
848 | fi |
| 695 | |
849 | |
| 696 | mysql_lib_symlinks "${D}" |
850 | mysql_lib_symlinks "${D}" |
| 697 | } |
851 | } |
| 698 | |
852 | |
|
|
853 | # @FUNCTION: mysql_pkg_preinst |
|
|
854 | # @DESCRIPTION: |
|
|
855 | # Create the user and groups for mysql - die if that fails. |
| 699 | mysql_pkg_preinst() { |
856 | mysql_pkg_preinst() { |
| 700 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
857 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 701 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
858 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 702 | } |
859 | } |
| 703 | |
860 | |
|
|
861 | # @FUNCTION: mysql_pkg_postinst |
|
|
862 | # @DESCRIPTION: |
|
|
863 | # Run post-installation tasks: |
|
|
864 | # create the dir for logfiles if non-existant |
|
|
865 | # touch the logfiles and secure them |
|
|
866 | # install scripts |
|
|
867 | # issue required steps for optional features |
|
|
868 | # issue deprecation warnings |
| 704 | mysql_pkg_postinst() { |
869 | mysql_pkg_postinst() { |
| 705 | # Make sure the vars are correctly initialized |
870 | # Make sure the vars are correctly initialized |
| 706 | mysql_init_vars |
871 | mysql_init_vars |
| 707 | |
872 | |
| 708 | # Check FEATURES="collision-protect" before removing this |
873 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 754 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
919 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 755 | && use berkdb \ |
920 | && use berkdb \ |
| 756 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
921 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 757 | } |
922 | } |
| 758 | |
923 | |
|
|
924 | # @FUNCTION: mysql_pkg_config |
|
|
925 | # @DESCRIPTION: |
|
|
926 | # Configure mysql environment. |
| 759 | mysql_pkg_config() { |
927 | mysql_pkg_config() { |
|
|
928 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
929 | |
| 760 | # Make sure the vars are correctly initialized |
930 | # Make sure the vars are correctly initialized |
| 761 | mysql_init_vars |
931 | mysql_init_vars |
| 762 | |
932 | |
| 763 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
933 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 764 | |
934 | |
| 765 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
935 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 766 | die "Minimal builds do NOT include the MySQL server" |
936 | die "Minimal builds do NOT include the MySQL server" |
|
|
937 | fi |
|
|
938 | |
|
|
939 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
940 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
941 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
942 | |
|
|
943 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
944 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
945 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
946 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
947 | else |
|
|
948 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
949 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
950 | || die "Moving MY_DATADIR failed" |
|
|
951 | fi |
|
|
952 | else |
|
|
953 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
954 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
955 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
956 | else |
|
|
957 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
958 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
959 | fi |
|
|
960 | fi |
| 767 | fi |
961 | fi |
| 768 | |
962 | |
| 769 | local pwd1="a" |
963 | local pwd1="a" |
| 770 | local pwd2="b" |
964 | local pwd2="b" |
| 771 | local maxtry=5 |
965 | local maxtry=5 |
| 772 | |
966 | |
| 773 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
967 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 774 | ewarn "You have already a MySQL database in place." |
968 | ewarn "You have already a MySQL database in place." |
| 775 | ewarn "(${ROOT}/${DATADIR}/*)" |
969 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 776 | ewarn "Please rename or delete it if you wish to replace it." |
970 | ewarn "Please rename or delete it if you wish to replace it." |
| 777 | die "MySQL database already exists!" |
971 | die "MySQL database already exists!" |
| 778 | fi |
972 | fi |
|
|
973 | |
|
|
974 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
975 | # localhost. Also causes weird failures. |
|
|
976 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 779 | |
977 | |
| 780 | einfo "Creating the mysql database and setting proper" |
978 | einfo "Creating the mysql database and setting proper" |
| 781 | einfo "permissions on it ..." |
979 | einfo "permissions on it ..." |
| 782 | |
980 | |
| 783 | einfo "Insert a password for the mysql 'root' user" |
981 | einfo "Insert a password for the mysql 'root' user" |
| … | |
… | |
| 799 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
997 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 800 | || touch "${TMPDIR}/fill_help_tables.sql" |
998 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 801 | help_tables="${TMPDIR}/fill_help_tables.sql" |
999 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 802 | |
1000 | |
| 803 | pushd "${TMPDIR}" &>/dev/null |
1001 | pushd "${TMPDIR}" &>/dev/null |
| 804 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
1002 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
1003 | if [ $? -ne 0 ]; then |
|
|
1004 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
1005 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
1006 | fi |
| 805 | popd &>/dev/null |
1007 | popd &>/dev/null |
| 806 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
1008 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 807 | || die "MySQL databases not installed" |
1009 | || die "MySQL databases not installed" |
| 808 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
1010 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 809 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
1011 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 810 | |
1012 | |
| 811 | if mysql_version_is_at_least "4.1.3" ; then |
1013 | if mysql_version_is_at_least "4.1.3" ; then |
| 812 | options="--skip-ndbcluster" |
1014 | options="--skip-ndbcluster" |
| 813 | |
1015 | |
| 814 | # Filling timezones, see |
1016 | # Filling timezones, see |
| … | |
… | |
| 825 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
1027 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 826 | ${options} \ |
1028 | ${options} \ |
| 827 | --user=mysql \ |
1029 | --user=mysql \ |
| 828 | --skip-grant-tables \ |
1030 | --skip-grant-tables \ |
| 829 | --basedir=${ROOT}/usr \ |
1031 | --basedir=${ROOT}/usr \ |
| 830 | --datadir=${ROOT}/${DATADIR} \ |
1032 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 831 | --skip-innodb \ |
1033 | --skip-innodb \ |
| 832 | --skip-bdb \ |
1034 | --skip-bdb \ |
| 833 | --skip-networking \ |
1035 | --skip-networking \ |
| 834 | --max_allowed_packet=8M \ |
1036 | --max_allowed_packet=8M \ |
| 835 | --net_buffer_length=16K \ |
1037 | --net_buffer_length=16K \ |
| … | |
… | |
| 864 | einfo "Stopping the server ..." |
1066 | einfo "Stopping the server ..." |
| 865 | wait %1 |
1067 | wait %1 |
| 866 | einfo "Done" |
1068 | einfo "Done" |
| 867 | } |
1069 | } |
| 868 | |
1070 | |
|
|
1071 | # @FUNCTION: mysql_pkg_postrm |
|
|
1072 | # @DESCRIPTION: |
|
|
1073 | # Remove mysql symlinks. |
| 869 | mysql_pkg_postrm() { |
1074 | mysql_pkg_postrm() { |
| 870 | : # mysql_lib_symlinks "${D}" |
1075 | : # mysql_lib_symlinks "${D}" |
| 871 | } |
1076 | } |