| 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.88 2008/03/10 02:47:20 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.120 2009/12/09 18:46:53 robbat2 Exp $ |
| 4 | |
4 | |
|
|
5 | # @ECLASS: mysql.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
7 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
8 | # Maintainers: MySQL Team <mysql-bugs@gentoo.org> |
| 7 | # - Luca Longinotti <chtekk@gentoo.org> |
9 | # - Luca Longinotti <chtekk@gentoo.org> |
| 8 | # - Robin H. Johnson <robbat2@gentoo.org> |
10 | # - Robin H. Johnson <robbat2@gentoo.org> |
|
|
11 | # @BLURB: This eclass provides most of the functions for mysql ebuilds |
|
|
12 | # @DESCRIPTION: |
|
|
13 | # The mysql.eclass provides almost all the code to build the mysql ebuilds |
|
|
14 | # including the src_unpack, src_prepare, src_configure, src_compile, |
|
|
15 | # scr_install, pkg_preinst, pkg_postinst, pkg_config and pkg_postrm |
|
|
16 | # phase hooks. |
| 9 | |
17 | |
| 10 | WANT_AUTOCONF="latest" |
18 | WANT_AUTOCONF="latest" |
| 11 | WANT_AUTOMAKE="latest" |
19 | WANT_AUTOMAKE="latest" |
| 12 | |
20 | |
| 13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
21 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
|
|
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 |
| 14 | |
44 | |
| 15 | # 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 |
| 16 | # and we will run a mysql server during test phase |
46 | # and we will run a mysql server during test phase |
| 17 | S="${WORKDIR}/mysql" |
47 | S="${WORKDIR}/mysql" |
| 18 | |
48 | |
| 19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
49 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
50 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 21 | EGIT_PROJECT=mysql-extras |
51 | EGIT_PROJECT=mysql-extras |
| 22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
52 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 23 | inherit git |
53 | inherit git |
| 24 | fi |
54 | fi |
| 25 | |
55 | |
| 26 | if [[ ${PR#r} -lt 60 ]] ; then |
56 | # @ECLASS-VARIABLE: MYSQL_VERSION_ID |
| 27 | IS_BITKEEPER=0 |
57 | # @DESCRIPTION: |
| 28 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
| 29 | IS_BITKEEPER=60 |
|
|
| 30 | else |
|
|
| 31 | IS_BITKEEPER=90 |
|
|
| 32 | fi |
|
|
| 33 | |
|
|
| 34 | # MYSQL_VERSION_ID will be: |
58 | # MYSQL_VERSION_ID will be: |
| 35 | # 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] |
| 36 | # 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 |
| 37 | # depend on this variable. |
61 | # depend on this variable. |
| 38 | # 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" |
| … | |
… | |
| 47 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
71 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 48 | done |
72 | done |
| 49 | # 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) |
| 50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
74 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 51 | |
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 | |
| 52 | # Be warned, *DEPEND are version-dependant |
104 | # Be warned, *DEPEND are version-dependant |
|
|
105 | # These are used for both runtime and compiletime |
| 53 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
106 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 54 | userland_GNU? ( sys-process/procps ) |
107 | userland_GNU? ( sys-process/procps ) |
| 55 | >=sys-apps/sed-4 |
108 | >=sys-apps/sed-4 |
| 56 | >=sys-apps/texinfo-4.7-r1 |
109 | >=sys-apps/texinfo-4.7-r1 |
| 57 | >=sys-libs/readline-4.1 |
110 | >=sys-libs/readline-4.1 |
| … | |
… | |
| 61 | for i in "" "-community" ; do |
114 | for i in "" "-community" ; do |
| 62 | [[ "${i}" == ${PN#mysql} ]] || |
115 | [[ "${i}" == ${PN#mysql} ]] || |
| 63 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
116 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 64 | done |
117 | done |
| 65 | |
118 | |
|
|
119 | RDEPEND="${DEPEND} |
|
|
120 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
121 | selinux? ( sec-policy/selinux-mysql )" |
|
|
122 | |
|
|
123 | # compile-time-only |
| 66 | mysql_version_is_at_least "5.1" \ |
124 | mysql_version_is_at_least "5.1" \ |
| 67 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
125 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 68 | |
126 | |
|
|
127 | # compile-time-only |
| 69 | mysql_version_is_at_least "5.1.12" \ |
128 | mysql_version_is_at_least "5.1.12" \ |
| 70 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
129 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 71 | |
130 | |
| 72 | # 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 |
| 73 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
132 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 74 | |
133 | |
| 75 | # BitKeeper dependency, compile-time only |
134 | # For other stuff to bring us in |
| 76 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
135 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
| 77 | |
136 | |
| 78 | # Work out the default SERVER_URI correctly |
137 | # Work out the default SERVER_URI correctly |
| 79 | if [ -z "${SERVER_URI}" ]; then |
138 | if [ -z "${SERVER_URI}" ]; then |
| 80 | # The community build is on the mirrors |
139 | # The community build is on the mirrors |
| 81 | if [ "${PN}" == "mysql-community" ]; then |
140 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
| 82 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
141 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
| 83 | # The enterprise source is on the primary site only |
142 | # The (old) enterprise source is on the primary site only |
| 84 | elif [ "${PN}" == "mysql" ]; then |
143 | elif [ "${PN}" == "mysql" ]; then |
| 85 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
144 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
| 86 | fi |
145 | fi |
| 87 | fi |
146 | fi |
| 88 | |
147 | |
| … | |
… | |
| 90 | SRC_URI="${SERVER_URI}" |
149 | SRC_URI="${SERVER_URI}" |
| 91 | |
150 | |
| 92 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
151 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
| 93 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
152 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 94 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
153 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
154 | PBXT_SRC_URI="mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz" |
| 95 | mysql_version_is_at_least "5.1.12" \ |
155 | mysql_version_is_at_least "5.1.12" \ |
| 96 | && [[ -n "${PBXT_VERSION}" ]] \ |
156 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 97 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
157 | && SRC_URI="${SRC_URI} pbxt? ( ${PBXT_SRC_URIPBXT_SRC_URI} )" |
|
|
158 | |
|
|
159 | # Get the percona tarball if XTRADB_VER and PERCONA_VER are both set |
|
|
160 | XTRADB_SRC_URI="http://www.percona.com/${PN}/xtradb/${PERCONA_VER}/source/percona-xtradb-${XTRADB_VER}.tar.gz" |
|
|
161 | mysql_version_is_at_least "5.1.26" \ |
|
|
162 | && [[ -n ${XTRADB_VER} && -n ${PERCONA_VER} ]] \ |
|
|
163 | && SRC_URI="${SRC_URI} xtradb? ( ${XTRADB_SRC_URI} )" |
| 98 | |
164 | |
| 99 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
165 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 100 | HOMEPAGE="http://www.mysql.com/" |
166 | HOMEPAGE="http://www.mysql.com/" |
| 101 | LICENSE="GPL-2" |
167 | LICENSE="GPL-2" |
| 102 | SLOT="0" |
168 | SLOT="0" |
| 103 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
169 | IUSE="big-tables debug embedded minimal ${IUSE_DEFAULT_ON}perl selinux ssl static" |
| 104 | |
170 | |
| 105 | mysql_version_is_at_least "4.1" \ |
171 | mysql_version_is_at_least "4.1" \ |
| 106 | && IUSE="${IUSE} latin1" |
172 | && IUSE="${IUSE} latin1" |
| 107 | |
173 | |
| 108 | mysql_version_is_at_least "4.1.3" \ |
174 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 113 | |
179 | |
| 114 | mysql_version_is_at_least "5.0.18" \ |
180 | mysql_version_is_at_least "5.0.18" \ |
| 115 | && IUSE="${IUSE} max-idx-128" |
181 | && IUSE="${IUSE} max-idx-128" |
| 116 | |
182 | |
| 117 | mysql_version_is_at_least "5.1" \ |
183 | mysql_version_is_at_least "5.1" \ |
| 118 | && IUSE="${IUSE} innodb" |
|
|
| 119 | |
|
|
| 120 | mysql_version_is_at_least "5.1" \ |
|
|
| 121 | || IUSE="${IUSE} berkdb" |
184 | || IUSE="${IUSE} berkdb" |
| 122 | |
185 | |
| 123 | mysql_version_is_at_least "5.1.12" \ |
186 | mysql_version_is_at_least "5.1.12" \ |
| 124 | && IUSE="${IUSE} pbxt" |
187 | && IUSE="${IUSE} pbxt" |
| 125 | |
188 | |
| 126 | RDEPEND="${DEPEND} |
189 | mysql_version_is_at_least "5.1.26" \ |
| 127 | !minimal? ( dev-db/mysql-init-scripts ) |
190 | && IUSE="${IUSE} xtradb" |
| 128 | selinux? ( sec-policy/selinux-mysql )" |
|
|
| 129 | |
191 | |
| 130 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
192 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 131 | pkg_postinst pkg_config pkg_postrm |
193 | && IUSE="${IUSE} ${IUSE_DEFAULT_ON}community profiling" |
| 132 | |
194 | |
| 133 | # |
195 | # |
| 134 | # HELPER FUNCTIONS: |
196 | # HELPER FUNCTIONS: |
| 135 | # |
197 | # |
| 136 | |
198 | |
| 137 | bitkeeper_fetch() { |
199 | # @FUNCTION: mysql_disable_test |
| 138 | local reposuf |
200 | # @DESCRIPTION: |
| 139 | if [[ -z "${1}" ]] ; then |
201 | # Helper function to disable specific tests. |
| 140 | local tpv |
|
|
| 141 | tpv=( ${PV//[-._]/ } ) |
|
|
| 142 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
| 143 | else |
|
|
| 144 | reposuf="${1}" |
|
|
| 145 | fi |
|
|
| 146 | einfo "Using '${reposuf}' repository." |
|
|
| 147 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
| 148 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
| 149 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
| 150 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
| 151 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
| 152 | # hint: does not work |
|
|
| 153 | local ebk_fetch_cmd="sfioball" |
|
|
| 154 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
| 155 | local ebk_update_cmd="update" |
|
|
| 156 | |
|
|
| 157 | # addread "/etc/bitkeeper" |
|
|
| 158 | addwrite "${ebk_store_dir}" |
|
|
| 159 | |
|
|
| 160 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
| 161 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
| 162 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
| 163 | fi |
|
|
| 164 | |
|
|
| 165 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
| 166 | |
|
|
| 167 | local wc_path=${reposuf} |
|
|
| 168 | |
|
|
| 169 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
| 170 | local options="-r+" |
|
|
| 171 | |
|
|
| 172 | # first checkout |
|
|
| 173 | einfo "bitkeeper checkout start -->" |
|
|
| 174 | einfo " repository: ${repo_uri}" |
|
|
| 175 | |
|
|
| 176 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
| 177 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
| 178 | else |
|
|
| 179 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
| 180 | popd |
|
|
| 181 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
| 182 | fi |
|
|
| 183 | |
|
|
| 184 | # update working copy |
|
|
| 185 | einfo "bitkeeper update start -->" |
|
|
| 186 | einfo " repository: ${repo_uri}" |
|
|
| 187 | |
|
|
| 188 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
| 189 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
| 190 | fi |
|
|
| 191 | |
|
|
| 192 | einfo " working copy: ${wc_path}" |
|
|
| 193 | cd "${wc_path}" |
|
|
| 194 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
| 195 | |
|
|
| 196 | echo |
|
|
| 197 | popd |
|
|
| 198 | } |
|
|
| 199 | |
|
|
| 200 | mysql_disable_test() { |
202 | mysql_disable_test() { |
| 201 | local testname="${1}" ; shift |
203 | local testname="${1}" ; shift |
| 202 | local reason="${@}" |
204 | local reason="${@}" |
| 203 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
205 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 204 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
206 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 205 | ewarn "test '${testname}' disabled: '${reason}'" |
207 | ewarn "test '${testname}' disabled: '${reason}'" |
| 206 | } |
208 | } |
| 207 | |
209 | |
|
|
210 | # @FUNCTION: mysql_init_vars |
|
|
211 | # @DESCRIPTION: |
| 208 | # void mysql_init_vars() |
212 | # void mysql_init_vars() |
| 209 | # |
|
|
| 210 | # Initialize global variables |
213 | # Initialize global variables |
| 211 | # 2005-11-19 <vivo@gentoo.org> |
214 | # 2005-11-19 <vivo@gentoo.org> |
| 212 | |
|
|
| 213 | mysql_init_vars() { |
215 | mysql_init_vars() { |
| 214 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
216 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 215 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
217 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 216 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
218 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 217 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
219 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| … | |
… | |
| 224 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
226 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 225 | | sed -ne '/datadir/s|^--datadir=||p' \ |
227 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 226 | | tail -n1` |
228 | | tail -n1` |
| 227 | if [[ -z "${MY_DATADIR}" ]] ; then |
229 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 228 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
230 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 229 | | sed -e 's/.*=\s*//'` |
231 | | sed -e 's/.*=\s*//' \ |
|
|
232 | | tail -n1` |
| 230 | fi |
233 | fi |
| 231 | fi |
234 | fi |
| 232 | if [[ -z "${MY_DATADIR}" ]] ; then |
235 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 233 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
236 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 234 | einfo "Using default MY_DATADIR" |
237 | einfo "Using default MY_DATADIR" |
| 235 | fi |
238 | fi |
| 236 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
239 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 237 | |
240 | |
| 238 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
241 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 239 | if [[ -e "${MY_DATADIR}" ]] ; then |
242 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 240 | elog "Previous datadir found, it's YOUR job to change" |
243 | # If you get this and you're wondering about it, see bug #207636 |
| 241 | elog "ownership and take care of it" |
244 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
245 | elog "A new one will not be created." |
| 242 | PREVIOUS_DATADIR="yes" |
246 | PREVIOUS_DATADIR="yes" |
| 243 | else |
247 | else |
| 244 | PREVIOUS_DATADIR="no" |
248 | PREVIOUS_DATADIR="no" |
| 245 | fi |
249 | fi |
| 246 | export PREVIOUS_DATADIR |
250 | export PREVIOUS_DATADIR |
|
|
251 | fi |
|
|
252 | else |
|
|
253 | if [[ ${EBUILD_PHASE} == "config" ]]; then |
|
|
254 | local new_MY_DATADIR |
|
|
255 | new_MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
|
|
256 | | sed -ne '/datadir/s|^--datadir=||p' \ |
|
|
257 | | tail -n1` |
|
|
258 | |
|
|
259 | if [[ ( -n "${new_MY_DATADIR}" ) && ( "${new_MY_DATADIR}" != "${MY_DATADIR}" ) ]]; then |
|
|
260 | ewarn "MySQL MY_DATADIR has changed" |
|
|
261 | ewarn "from ${MY_DATADIR}" |
|
|
262 | ewarn "to ${new_MY_DATADIR}" |
|
|
263 | MY_DATADIR="${new_MY_DATADIR}" |
|
|
264 | fi |
| 247 | fi |
265 | fi |
| 248 | fi |
266 | fi |
| 249 | |
267 | |
| 250 | MY_SOURCEDIR=${SERVER_URI##*/} |
268 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 251 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
269 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| … | |
… | |
| 307 | mysql_version_is_at_least "4.1.3" \ |
325 | mysql_version_is_at_least "4.1.3" \ |
| 308 | && use cluster \ |
326 | && use cluster \ |
| 309 | && myconf="${myconf} --without-ndb-debug" |
327 | && myconf="${myconf} --without-ndb-debug" |
| 310 | fi |
328 | fi |
| 311 | |
329 | |
|
|
330 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
331 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
332 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
333 | ewarn "You MUST file bugs without these variables set." |
|
|
334 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
335 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 312 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
336 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 313 | myconf="${myconf} --with-charset=utf8" |
337 | myconf="${myconf} --with-charset=utf8" |
| 314 | myconf="${myconf} --with-collation=utf8_general_ci" |
338 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 315 | else |
339 | else |
| 316 | myconf="${myconf} --with-charset=latin1" |
340 | myconf="${myconf} --with-charset=latin1" |
| 317 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
341 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 318 | fi |
342 | fi |
| 319 | |
343 | |
| 320 | if use embedded ; then |
344 | if use embedded ; then |
| 321 | myconf="${myconf} --with-embedded-privilege-control" |
345 | myconf="${myconf} --with-embedded-privilege-control" |
| 322 | myconf="${myconf} --with-embedded-server" |
346 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 345 | myconf="${myconf} $(use_with ssl)" |
369 | myconf="${myconf} $(use_with ssl)" |
| 346 | else |
370 | else |
| 347 | myconf="${myconf} $(use_with ssl openssl)" |
371 | myconf="${myconf} $(use_with ssl openssl)" |
| 348 | fi |
372 | fi |
| 349 | |
373 | |
|
|
374 | if mysql_version_is_at_least "5.0.60" ; then |
| 350 | if use berkdb ; then |
375 | if use berkdb ; then |
|
|
376 | elog "Berkeley DB support was disabled due to build failures" |
|
|
377 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
378 | elog "if you want it again. Gentoo bug #224067." |
|
|
379 | fi |
|
|
380 | myconf="${myconf} --without-berkeley-db" |
|
|
381 | elif use berkdb ; then |
| 351 | # The following fix is due to a bug with bdb on SPARC's. See: |
382 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 352 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
383 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 353 | # It comes down to non-64-bit safety problems. |
384 | # It comes down to non-64-bit safety problems. |
| 354 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
385 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 355 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
386 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
| … | |
… | |
| 381 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
412 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 382 | if mysql_version_is_at_least "5.0.3" ; then |
413 | if mysql_version_is_at_least "5.0.3" ; then |
| 383 | elog "Before using the Federated storage engine, please be sure to read" |
414 | elog "Before using the Federated storage engine, please be sure to read" |
| 384 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
415 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 385 | myconf="${myconf} --with-federated-storage-engine" |
416 | myconf="${myconf} --with-federated-storage-engine" |
|
|
417 | fi |
|
|
418 | fi |
|
|
419 | |
|
|
420 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
421 | myconf="${myconf} `use_enable community community-features`" |
|
|
422 | if use community; then |
|
|
423 | myconf="${myconf} `use_enable profiling`" |
|
|
424 | else |
|
|
425 | myconf="${myconf} --disable-profiling" |
| 386 | fi |
426 | fi |
| 387 | fi |
427 | fi |
| 388 | |
428 | |
| 389 | mysql_version_is_at_least "5.0.18" \ |
429 | mysql_version_is_at_least "5.0.18" \ |
| 390 | && use max-idx-128 \ |
430 | && use max-idx-128 \ |
| … | |
… | |
| 413 | |
453 | |
| 414 | elog "Before using the Federated storage engine, please be sure to read" |
454 | elog "Before using the Federated storage engine, please be sure to read" |
| 415 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
455 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 416 | fi |
456 | fi |
| 417 | |
457 | |
| 418 | if use innodb ; then |
458 | # Upstream specifically requests that InnoDB always be built. |
| 419 | plugins="${plugins},innobase" |
459 | plugins="${plugins},innobase" |
| 420 | fi |
|
|
| 421 | |
460 | |
| 422 | # like configuration=max-no-ndb |
461 | # like configuration=max-no-ndb |
| 423 | if use cluster ; then |
462 | if use cluster ; then |
| 424 | plugins="${plugins},ndbcluster" |
463 | plugins="${plugins},ndbcluster" |
| 425 | myconf="${myconf} --with-ndb-binlog" |
464 | myconf="${myconf} --with-ndb-binlog" |
| … | |
… | |
| 430 | fi |
469 | fi |
| 431 | |
470 | |
| 432 | myconf="${myconf} --with-plugins=${plugins}" |
471 | myconf="${myconf} --with-plugins=${plugins}" |
| 433 | } |
472 | } |
| 434 | |
473 | |
| 435 | pbxt_src_compile() { |
474 | pbxt_src_configure() { |
| 436 | mysql_init_vars |
475 | mysql_init_vars |
| 437 | |
476 | |
| 438 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
477 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 439 | |
478 | |
| 440 | einfo "Reconfiguring dir '${PWD}'" |
479 | einfo "Reconfiguring dir '${PWD}'" |
| … | |
… | |
| 443 | local myconf="" |
482 | local myconf="" |
| 444 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
483 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 445 | use debug && myconf="${myconf} --with-debug=full" |
484 | use debug && myconf="${myconf} --with-debug=full" |
| 446 | # TODO: is it safe/needed to use econf here ? |
485 | # TODO: is it safe/needed to use econf here ? |
| 447 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
486 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
487 | } |
|
|
488 | |
|
|
489 | pbxt_src_compile() { |
|
|
490 | # Be backwards compatible for now |
|
|
491 | if [[ $EAPI != 2 ]]; then |
|
|
492 | pbxt_src_configure |
|
|
493 | fi |
| 448 | # TODO: is it safe/needed to use emake here ? |
494 | # TODO: is it safe/needed to use emake here ? |
| 449 | make || die "Problem making PBXT storage engine (${myconf})" |
495 | make || die "Problem making PBXT storage engine (${myconf})" |
| 450 | |
496 | |
| 451 | popd |
497 | popd |
| 452 | # TODO: modify test suite for PBXT |
498 | # TODO: modify test suite for PBXT |
| … | |
… | |
| 459 | } |
505 | } |
| 460 | |
506 | |
| 461 | # |
507 | # |
| 462 | # EBUILD FUNCTIONS |
508 | # EBUILD FUNCTIONS |
| 463 | # |
509 | # |
|
|
510 | # @FUNCTION: mysql_pkg_setup |
|
|
511 | # @DESCRIPTION: |
|
|
512 | # Perform some basic tests and tasks during pkg_setup phase: |
|
|
513 | # die if FEATURES="test", USE="-minimal" and not using FEATURES="userpriv" |
|
|
514 | # check for conflicting use flags |
|
|
515 | # create new user and group for mysql |
|
|
516 | # warn about deprecated features |
| 464 | mysql_pkg_setup() { |
517 | mysql_pkg_setup() { |
| 465 | if hasq test ${FEATURES} ; then |
518 | if hasq test ${FEATURES} ; then |
| 466 | if ! use minimal ; then |
519 | if ! use minimal ; then |
| 467 | if ! hasq userpriv ${FEATURES} ; then |
520 | if [[ $UID -eq 0 ]]; then |
| 468 | die "Testing with FEATURES=-userpriv is no longer supported by upstream" |
521 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
| 469 | fi |
522 | fi |
| 470 | fi |
523 | fi |
| 471 | fi |
524 | fi |
| 472 | |
525 | |
| 473 | # Check for USE flag problems in pkg_setup |
526 | # Check for USE flag problems in pkg_setup |
| … | |
… | |
| 488 | && ( use cluster || use extraengine ) \ |
541 | && ( use cluster || use extraengine ) \ |
| 489 | && use minimal ; then |
542 | && use minimal ; then |
| 490 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
543 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 491 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
544 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 492 | fi |
545 | fi |
| 493 | |
546 | |
| 494 | # This should come after all of the die statements |
547 | # This should come after all of the die statements |
| 495 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
548 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 496 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
549 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 497 | |
550 | |
| 498 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
551 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 499 | && use berkdb \ |
552 | && use berkdb \ |
| 500 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
553 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 501 | } |
554 | } |
| 502 | |
555 | |
|
|
556 | # @FUNCTION: mysql_src_unpack |
|
|
557 | # @DESCRIPTION: |
|
|
558 | # Unpack the source code and call mysql_src_prepare for EAPI < 2. |
| 503 | mysql_src_unpack() { |
559 | mysql_src_unpack() { |
| 504 | # Initialize the proper variables first |
560 | # Initialize the proper variables first |
| 505 | mysql_init_vars |
561 | mysql_init_vars |
| 506 | |
562 | |
| 507 | unpack ${A} |
563 | unpack ${A} |
| 508 | # Grab the patches |
564 | # Grab the patches |
| 509 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
565 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 510 | # Bitkeeper checkout support |
566 | |
| 511 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
|
|
| 512 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
| 513 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
| 514 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
| 515 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
| 516 | else |
|
|
| 517 | bitkeeper_fetch |
|
|
| 518 | fi |
|
|
| 519 | cd "${S}" |
|
|
| 520 | einfo "Running upstream autorun over BK sources ..." |
|
|
| 521 | BUILD/autorun.sh |
|
|
| 522 | else |
|
|
| 523 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
567 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
568 | |
|
|
569 | # Be backwards compatible for now |
|
|
570 | case ${EAPI:-0} in |
|
|
571 | 2) : ;; |
|
|
572 | 0 | 1) mysql_src_prepare ;; |
|
|
573 | esac |
|
|
574 | } |
|
|
575 | |
|
|
576 | # @FUNCTION: mysql_src_prepare |
|
|
577 | # @DESCRIPTION: |
|
|
578 | # Apply patches to the source code and remove unneeded bundled libs. |
|
|
579 | mysql_src_prepare() { |
| 524 | cd "${S}" |
580 | cd "${S}" |
| 525 | fi |
|
|
| 526 | |
581 | |
| 527 | # Apply the patches for this MySQL version |
582 | # Apply the patches for this MySQL version |
| 528 | EPATCH_SUFFIX="patch" |
583 | EPATCH_SUFFIX="patch" |
| 529 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
584 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
| 530 | # Clean out old items |
585 | # Clean out old items |
| … | |
… | |
| 556 | local rebuilddirlist d |
611 | local rebuilddirlist d |
| 557 | |
612 | |
| 558 | if mysql_version_is_at_least "5.1.12" ; then |
613 | if mysql_version_is_at_least "5.1.12" ; then |
| 559 | rebuilddirlist="." |
614 | rebuilddirlist="." |
| 560 | # TODO: check this with a cmake expert |
615 | # TODO: check this with a cmake expert |
| 561 | use innodb \ |
|
|
| 562 | && cmake \ |
616 | cmake \ |
| 563 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
617 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 564 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
618 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 565 | "storage/innobase" |
619 | "storage/innobase" |
| 566 | else |
620 | else |
| 567 | rebuilddirlist=". innobase" |
621 | rebuilddirlist=". innobase" |
| … | |
… | |
| 577 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
631 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 578 | && use berkdb ; then |
632 | && use berkdb ; then |
| 579 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
633 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
| 580 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
634 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 581 | || die "Could not copy libtool.m4 to bdb/dist/" |
635 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
636 | #These files exist only with libtool-2*, and need to be included. |
|
|
637 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
638 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
639 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
640 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
641 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
642 | fi |
| 582 | pushd "bdb/dist" &>/dev/null |
643 | pushd "bdb/dist" &>/dev/null |
| 583 | sh s_all \ |
644 | sh s_all \ |
| 584 | || die "Failed bdb reconfigure" |
645 | || die "Failed bdb reconfigure" |
| 585 | popd &>/dev/null |
646 | popd &>/dev/null |
| 586 | fi |
647 | fi |
| 587 | } |
648 | } |
| 588 | |
649 | |
|
|
650 | # @FUNCTION: mysql_src_configure |
|
|
651 | # @DESCRIPTION: |
|
|
652 | # Configure mysql to build the code for Gentoo respecting the use flags. |
| 589 | mysql_src_compile() { |
653 | mysql_src_configure() { |
| 590 | # Make sure the vars are correctly initialized |
654 | # Make sure the vars are correctly initialized |
| 591 | mysql_init_vars |
655 | mysql_init_vars |
| 592 | |
656 | |
| 593 | # $myconf is modified by the configure_* functions |
657 | # $myconf is modified by the configure_* functions |
| 594 | local myconf="" |
658 | local myconf="" |
| … | |
… | |
| 608 | filter-flags "-O" "-O[01]" |
672 | filter-flags "-O" "-O[01]" |
| 609 | |
673 | |
| 610 | # glib-2.3.2_pre fix, bug #16496 |
674 | # glib-2.3.2_pre fix, bug #16496 |
| 611 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
675 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 612 | |
676 | |
|
|
677 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
678 | # fail badly during cluster startup. |
|
|
679 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
680 | filter-flags "-fstack-protector-all" |
|
|
681 | fi |
|
|
682 | |
| 613 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
683 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 614 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
684 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 615 | mysql_version_is_at_least "5.0" \ |
685 | mysql_version_is_at_least "5.0" \ |
| 616 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
686 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 617 | export CXXFLAGS |
687 | export CXXFLAGS |
|
|
688 | |
|
|
689 | # bug #283926, with GCC4.4, this is required to get correct behavior. |
|
|
690 | append-flags -fno-strict-aliasing |
| 618 | |
691 | |
| 619 | econf \ |
692 | econf \ |
| 620 | --libexecdir="/usr/sbin" \ |
693 | --libexecdir="/usr/sbin" \ |
| 621 | --sysconfdir="${MY_SYSCONFDIR}" \ |
694 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 622 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
695 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 633 | # TODO: Move this before autoreconf !!! |
706 | # TODO: Move this before autoreconf !!! |
| 634 | find . -type f -name Makefile -print0 \ |
707 | find . -type f -name Makefile -print0 \ |
| 635 | | xargs -0 -n100 sed -i \ |
708 | | xargs -0 -n100 sed -i \ |
| 636 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
709 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 637 | |
710 | |
|
|
711 | if [[ $EAPI == 2 ]]; then |
|
|
712 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_configure |
|
|
713 | fi |
|
|
714 | } |
|
|
715 | |
|
|
716 | # @FUNCTION: mysql_src_compile |
|
|
717 | # @DESCRIPTION: |
|
|
718 | # Compile the mysql code. |
|
|
719 | mysql_src_compile() { |
|
|
720 | # Be backwards compatible for now |
|
|
721 | case ${EAPI:-0} in |
|
|
722 | 2) : ;; |
|
|
723 | 0 | 1) mysql_src_configure ;; |
|
|
724 | esac |
|
|
725 | |
| 638 | emake || die "emake failed" |
726 | emake || die "emake failed" |
| 639 | |
727 | |
| 640 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
728 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 641 | } |
729 | } |
| 642 | |
730 | |
|
|
731 | # @FUNCTION: mysql_src_install |
|
|
732 | # @DESCRIPTION: |
|
|
733 | # Install mysql. |
| 643 | mysql_src_install() { |
734 | mysql_src_install() { |
| 644 | # Make sure the vars are correctly initialized |
735 | # Make sure the vars are correctly initialized |
| 645 | mysql_init_vars |
736 | mysql_init_vars |
| 646 | |
737 | |
| 647 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
738 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 648 | |
739 | |
| 649 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
740 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 650 | |
741 | |
| 651 | insinto "${MY_INCLUDEDIR}" |
|
|
| 652 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 653 | |
|
|
| 654 | # Convenience links |
742 | # Convenience links |
|
|
743 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 655 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
744 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 656 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
745 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 657 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
746 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 658 | |
747 | |
| 659 | # Various junk (my-*.cnf moved elsewhere) |
748 | # Various junk (my-*.cnf moved elsewhere) |
|
|
749 | einfo "Removing duplicate /usr/share/mysql files" |
| 660 | rm -Rf "${D}/usr/share/info" |
750 | rm -Rf "${D}/usr/share/info" |
| 661 | for removeme in "mysql-log-rotate" mysql.server* \ |
751 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 662 | binary-configure* my-*.cnf mi_test_all* |
752 | binary-configure* my-*.cnf mi_test_all* |
| 663 | do |
753 | do |
| 664 | rm -f "${D}"/usr/share/mysql/${removeme} |
754 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 665 | done |
755 | done |
| 666 | |
756 | |
| 667 | # Clean up stuff for a minimal build |
757 | # Clean up stuff for a minimal build |
| 668 | if use minimal ; then |
758 | if use minimal ; then |
|
|
759 | einfo "Remove all extra content for minimal build" |
| 669 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
760 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 670 | 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} |
761 | 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} |
| 671 | rm -f "${D}/usr/sbin/mysqld" |
762 | rm -f "${D}/usr/sbin/mysqld" |
| 672 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
763 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 673 | fi |
764 | fi |
| … | |
… | |
| 676 | if mysql_version_is_at_least "4.1" ; then |
767 | if mysql_version_is_at_least "4.1" ; then |
| 677 | mysql_mycnf_version="4.1" |
768 | mysql_mycnf_version="4.1" |
| 678 | else |
769 | else |
| 679 | mysql_mycnf_version="4.0" |
770 | mysql_mycnf_version="4.0" |
| 680 | fi |
771 | fi |
|
|
772 | einfo "Building default my.cnf" |
| 681 | insinto "${MY_SYSCONFDIR}" |
773 | insinto "${MY_SYSCONFDIR}" |
| 682 | doins scripts/mysqlaccess.conf |
774 | doins scripts/mysqlaccess.conf |
| 683 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
775 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 684 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
776 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 685 | > "${TMPDIR}/my.cnf.ok" |
777 | > "${TMPDIR}/my.cnf.ok" |
| … | |
… | |
| 688 | fi |
780 | fi |
| 689 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
781 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 690 | |
782 | |
| 691 | # Minimal builds don't have the MySQL server |
783 | # Minimal builds don't have the MySQL server |
| 692 | if ! use minimal ; then |
784 | if ! use minimal ; then |
|
|
785 | einfo "Creating initial directories" |
| 693 | # Empty directories ... |
786 | # Empty directories ... |
| 694 | diropts "-m0750" |
787 | diropts "-m0750" |
| 695 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
788 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 696 | dodir "${MY_DATADIR}" |
789 | dodir "${MY_DATADIR}" |
| 697 | keepdir "${MY_DATADIR}" |
790 | keepdir "${MY_DATADIR}" |
| … | |
… | |
| 705 | chown -R mysql:mysql "${D}/${folder}" |
798 | chown -R mysql:mysql "${D}/${folder}" |
| 706 | done |
799 | done |
| 707 | fi |
800 | fi |
| 708 | |
801 | |
| 709 | # Docs |
802 | # Docs |
|
|
803 | einfo "Installing docs" |
| 710 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
804 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
| 711 | doinfo ${S}/Docs/mysql.info |
805 | doinfo "${S}"/Docs/mysql.info |
| 712 | |
806 | |
| 713 | # Minimal builds don't have the MySQL server |
807 | # Minimal builds don't have the MySQL server |
| 714 | if ! use minimal ; then |
808 | if ! use minimal ; then |
|
|
809 | einfo "Including support files and sample configurations" |
| 715 | docinto "support-files" |
810 | docinto "support-files" |
| 716 | for script in \ |
811 | for script in \ |
| 717 | support-files/my-*.cnf \ |
812 | "${S}"/support-files/my-*.cnf \ |
| 718 | support-files/magic \ |
813 | "${S}"/support-files/magic \ |
| 719 | support-files/ndb-config-2-node.ini |
814 | "${S}"/support-files/ndb-config-2-node.ini |
| 720 | do |
815 | do |
| 721 | dodoc "${script}" |
816 | dodoc "${script}" |
| 722 | done |
817 | done |
| 723 | |
818 | |
| 724 | docinto "scripts" |
819 | docinto "scripts" |
| 725 | for script in scripts/mysql* ; do |
820 | for script in "${S}"/scripts/mysql* ; do |
| 726 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
821 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 727 | done |
822 | done |
| 728 | |
823 | |
| 729 | fi |
824 | fi |
| 730 | |
825 | |
| 731 | mysql_lib_symlinks "${D}" |
826 | mysql_lib_symlinks "${D}" |
| 732 | } |
827 | } |
| 733 | |
828 | |
|
|
829 | # @FUNCTION: mysql_pkg_preinst |
|
|
830 | # @DESCRIPTION: |
|
|
831 | # Create the user and groups for mysql - die if that fails. |
| 734 | mysql_pkg_preinst() { |
832 | mysql_pkg_preinst() { |
| 735 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
833 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 736 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
834 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 737 | } |
835 | } |
| 738 | |
836 | |
|
|
837 | # @FUNCTION: mysql_pkg_postinst |
|
|
838 | # @DESCRIPTION: |
|
|
839 | # Run post-installation tasks: |
|
|
840 | # create the dir for logfiles if non-existant |
|
|
841 | # touch the logfiles and secure them |
|
|
842 | # install scripts |
|
|
843 | # issue required steps for optional features |
|
|
844 | # issue deprecation warnings |
| 739 | mysql_pkg_postinst() { |
845 | mysql_pkg_postinst() { |
| 740 | # Make sure the vars are correctly initialized |
846 | # Make sure the vars are correctly initialized |
| 741 | mysql_init_vars |
847 | mysql_init_vars |
| 742 | |
848 | |
| 743 | # Check FEATURES="collision-protect" before removing this |
849 | # Check FEATURES="collision-protect" before removing this |
| … | |
… | |
| 789 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
895 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 790 | && use berkdb \ |
896 | && use berkdb \ |
| 791 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
897 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 792 | } |
898 | } |
| 793 | |
899 | |
|
|
900 | # @FUNCTION: mysql_pkg_config |
|
|
901 | # @DESCRIPTION: |
|
|
902 | # Configure mysql environment. |
| 794 | mysql_pkg_config() { |
903 | mysql_pkg_config() { |
|
|
904 | local old_MY_DATADIR="${MY_DATADIR}" |
|
|
905 | |
| 795 | # Make sure the vars are correctly initialized |
906 | # Make sure the vars are correctly initialized |
| 796 | mysql_init_vars |
907 | mysql_init_vars |
| 797 | |
908 | |
| 798 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
909 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 799 | |
910 | |
| 800 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
911 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 801 | die "Minimal builds do NOT include the MySQL server" |
912 | die "Minimal builds do NOT include the MySQL server" |
|
|
913 | fi |
|
|
914 | |
|
|
915 | if [[ ( -n "${MY_DATADIR}" ) && ( "${MY_DATADIR}" != "${old_MY_DATADIR}" ) ]]; then |
|
|
916 | local MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${MY_DATADIR})" |
|
|
917 | local old_MY_DATADIR_s="$(strip_duplicate_slashes ${ROOT}/${old_MY_DATADIR})" |
|
|
918 | |
|
|
919 | if [[ -d "${old_MY_DATADIR_s}" ]]; then |
|
|
920 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
921 | ewarn "Both ${old_MY_DATADIR_s} and ${MY_DATADIR_s} exist" |
|
|
922 | ewarn "Attempting to use ${MY_DATADIR_s} and preserving ${old_MY_DATADIR_s}" |
|
|
923 | else |
|
|
924 | elog "Moving MY_DATADIR from ${old_MY_DATADIR_s} to ${MY_DATADIR_s}" |
|
|
925 | mv --strip-trailing-slashes -T "${old_MY_DATADIR_s}" "${MY_DATADIR_s}" \ |
|
|
926 | || die "Moving MY_DATADIR failed" |
|
|
927 | fi |
|
|
928 | else |
|
|
929 | ewarn "Previous MY_DATADIR (${old_MY_DATADIR_s}) does not exist" |
|
|
930 | if [[ -d "${MY_DATADIR_s}" ]]; then |
|
|
931 | ewarn "Attempting to use ${MY_DATADIR_s}" |
|
|
932 | else |
|
|
933 | eerror "New MY_DATADIR (${MY_DATADIR_s}) does not exist" |
|
|
934 | die "Configuration Failed! Please reinstall ${CATEGORY}/${PN}" |
|
|
935 | fi |
|
|
936 | fi |
| 802 | fi |
937 | fi |
| 803 | |
938 | |
| 804 | local pwd1="a" |
939 | local pwd1="a" |
| 805 | local pwd2="b" |
940 | local pwd2="b" |
| 806 | local maxtry=5 |
941 | local maxtry=5 |
| … | |
… | |
| 810 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
945 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 811 | ewarn "Please rename or delete it if you wish to replace it." |
946 | ewarn "Please rename or delete it if you wish to replace it." |
| 812 | die "MySQL database already exists!" |
947 | die "MySQL database already exists!" |
| 813 | fi |
948 | fi |
| 814 | |
949 | |
|
|
950 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
951 | # localhost. Also causes weird failures. |
|
|
952 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
|
|
953 | |
| 815 | einfo "Creating the mysql database and setting proper" |
954 | einfo "Creating the mysql database and setting proper" |
| 816 | einfo "permissions on it ..." |
955 | einfo "permissions on it ..." |
| 817 | |
956 | |
| 818 | einfo "Insert a password for the mysql 'root' user" |
957 | einfo "Insert a password for the mysql 'root' user" |
| 819 | ewarn "Avoid [\"'\\_%] characters in the password" |
958 | ewarn "Avoid [\"'\\_%] characters in the password" |
| … | |
… | |
| 842 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
981 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
| 843 | fi |
982 | fi |
| 844 | popd &>/dev/null |
983 | popd &>/dev/null |
| 845 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
984 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 846 | || die "MySQL databases not installed" |
985 | || die "MySQL databases not installed" |
| 847 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2> /dev/null |
986 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 848 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2> /dev/null |
987 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 849 | |
988 | |
| 850 | if mysql_version_is_at_least "4.1.3" ; then |
989 | if mysql_version_is_at_least "4.1.3" ; then |
| 851 | options="--skip-ndbcluster" |
990 | options="--skip-ndbcluster" |
| 852 | |
991 | |
| 853 | # Filling timezones, see |
992 | # Filling timezones, see |
| … | |
… | |
| 903 | einfo "Stopping the server ..." |
1042 | einfo "Stopping the server ..." |
| 904 | wait %1 |
1043 | wait %1 |
| 905 | einfo "Done" |
1044 | einfo "Done" |
| 906 | } |
1045 | } |
| 907 | |
1046 | |
|
|
1047 | # @FUNCTION: mysql_pkg_postrm |
|
|
1048 | # @DESCRIPTION: |
|
|
1049 | # Remove mysql symlinks. |
| 908 | mysql_pkg_postrm() { |
1050 | mysql_pkg_postrm() { |
| 909 | : # mysql_lib_symlinks "${D}" |
1051 | : # mysql_lib_symlinks "${D}" |
| 910 | } |
1052 | } |