| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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.110 2009/07/06 18:18:00 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
|
|
| 9 | # Note that MYSQL_VERSION_ID must be empty! |
|
|
| 10 | |
9 | |
| 11 | WANT_AUTOCONF="latest" |
10 | WANT_AUTOCONF="latest" |
| 12 | WANT_AUTOMAKE="latest" |
11 | WANT_AUTOMAKE="latest" |
| 13 | |
12 | |
| 14 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx versionator |
| 15 | |
14 | |
| 16 | # Shorten the path because the socket path length must be shorter than 107 chars |
15 | # 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 |
16 | # and we will run a mysql server during test phase |
| 18 | S="${WORKDIR}/mysql" |
17 | S="${WORKDIR}/mysql" |
| 19 | |
18 | |
| 20 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20090228-0714Z" |
| 21 | |
20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 22 | if [[ ${PR#r} -lt 60 ]] ; then |
21 | EGIT_PROJECT=mysql-extras |
| 23 | IS_BITKEEPER=0 |
22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 24 | elif [[ ${PR#r} -lt 90 ]] ; then |
23 | inherit git |
| 25 | IS_BITKEEPER=60 |
|
|
| 26 | else |
|
|
| 27 | IS_BITKEEPER=90 |
|
|
| 28 | fi |
24 | fi |
| 29 | |
25 | |
| 30 | # MYSQL_VERSION_ID will be: |
26 | # MYSQL_VERSION_ID will be: |
| 31 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
27 | # 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 |
28 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 33 | # depend on this variable. |
29 | # depend on this variable. |
| 34 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
30 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
31 | # We also strip off upstream's trailing letter that they use to respin tarballs |
| 35 | |
32 | |
| 36 | MYSQL_VERSION_ID="" |
33 | MYSQL_VERSION_ID="" |
|
|
34 | tpv="${PV%[a-z]}" |
| 37 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
35 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 38 | for vatom in 0 1 2 3 ; do |
36 | for vatom in 0 1 2 3 ; do |
| 39 | # pad to length 2 |
37 | # pad to length 2 |
| 40 | tpv[${vatom}]="00${tpv[${vatom}]}" |
38 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 41 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
39 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 42 | done |
40 | done |
| 43 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
41 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 44 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
42 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 45 | |
43 | |
|
|
44 | # Community features are available in mysql-community |
|
|
45 | # AND in the re-merged mysql-5.0.82 and newer |
|
|
46 | if [ "${PN}" == "mysql-community" ]; then |
|
|
47 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
48 | elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then |
|
|
49 | MYSQL_COMMUNITY_FEATURES=1 |
|
|
50 | else |
|
|
51 | MYSQL_COMMUNITY_FEATURES=0 |
|
|
52 | fi |
|
|
53 | |
| 46 | # Be warned, *DEPEND are version-dependant |
54 | # Be warned, *DEPEND are version-dependant |
|
|
55 | # These are used for both runtime and compiletime |
| 47 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
56 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 48 | userland_GNU? ( sys-process/procps ) |
57 | userland_GNU? ( sys-process/procps ) |
| 49 | >=sys-apps/sed-4 |
58 | >=sys-apps/sed-4 |
| 50 | >=sys-apps/texinfo-4.7-r1 |
59 | >=sys-apps/texinfo-4.7-r1 |
| 51 | >=sys-libs/readline-4.1 |
60 | >=sys-libs/readline-4.1 |
| … | |
… | |
| 55 | for i in "" "-community" ; do |
64 | for i in "" "-community" ; do |
| 56 | [[ "${i}" == ${PN#mysql} ]] || |
65 | [[ "${i}" == ${PN#mysql} ]] || |
| 57 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
66 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 58 | done |
67 | done |
| 59 | |
68 | |
|
|
69 | RDEPEND="${DEPEND} |
|
|
70 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
71 | selinux? ( sec-policy/selinux-mysql )" |
|
|
72 | |
|
|
73 | # compile-time-only |
| 60 | mysql_version_is_at_least "5.1" \ |
74 | mysql_version_is_at_least "5.1" \ |
| 61 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
75 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 62 | |
76 | |
|
|
77 | # compile-time-only |
| 63 | mysql_version_is_at_least "5.1.12" \ |
78 | mysql_version_is_at_least "5.1.12" \ |
| 64 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
79 | && DEPEND="${DEPEND} >=dev-util/cmake-2.4.3" |
| 65 | |
80 | |
| 66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
81 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
82 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
83 | |
| 69 | # BitKeeper dependency, compile-time only |
84 | # For other stuff to bring us in |
| 70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
85 | PDEPEND="${PDEPEND} =virtual/mysql-$(get_version_component_range 1-2 ${PV})" |
|
|
86 | |
|
|
87 | # Work out the default SERVER_URI correctly |
|
|
88 | if [ -z "${SERVER_URI}" ]; then |
|
|
89 | # The community build is on the mirrors |
|
|
90 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
91 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
92 | # The (old) enterprise source is on the primary site only |
|
|
93 | elif [ "${PN}" == "mysql" ]; then |
|
|
94 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
95 | fi |
|
|
96 | fi |
| 71 | |
97 | |
| 72 | # Define correct SRC_URIs |
98 | # Define correct SRC_URIs |
| 73 | SRC_URI="${SERVER_URI} |
99 | SRC_URI="${SERVER_URI}" |
|
|
100 | |
|
|
101 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
| 74 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
102 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 75 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
103 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 76 | mysql_version_is_at_least "5.1.12" \ |
104 | mysql_version_is_at_least "5.1.12" \ |
| 77 | && [[ -n "${PBXT_VERSION}" ]] \ |
105 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 78 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
106 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| … | |
… | |
| 80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
108 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 81 | HOMEPAGE="http://www.mysql.com/" |
109 | HOMEPAGE="http://www.mysql.com/" |
| 82 | LICENSE="GPL-2" |
110 | LICENSE="GPL-2" |
| 83 | SLOT="0" |
111 | SLOT="0" |
| 84 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
112 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 85 | RESTRICT="confcache" |
|
|
| 86 | |
113 | |
| 87 | mysql_version_is_at_least "4.1" \ |
114 | mysql_version_is_at_least "4.1" \ |
| 88 | && IUSE="${IUSE} latin1" |
115 | && IUSE="${IUSE} latin1" |
| 89 | |
116 | |
| 90 | mysql_version_is_at_least "4.1.3" \ |
117 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 95 | |
122 | |
| 96 | mysql_version_is_at_least "5.0.18" \ |
123 | mysql_version_is_at_least "5.0.18" \ |
| 97 | && IUSE="${IUSE} max-idx-128" |
124 | && IUSE="${IUSE} max-idx-128" |
| 98 | |
125 | |
| 99 | mysql_version_is_at_least "5.1" \ |
126 | mysql_version_is_at_least "5.1" \ |
| 100 | && IUSE="${IUSE} innodb" |
|
|
| 101 | |
|
|
| 102 | mysql_version_is_at_least "5.1" \ |
|
|
| 103 | || IUSE="${IUSE} berkdb" |
127 | || IUSE="${IUSE} berkdb" |
| 104 | |
128 | |
| 105 | mysql_version_is_at_least "5.1.12" \ |
129 | mysql_version_is_at_least "5.1.12" \ |
| 106 | && IUSE="${IUSE} pbxt" |
130 | && IUSE="${IUSE} pbxt" |
| 107 | |
131 | |
| 108 | RDEPEND="${DEPEND} |
132 | [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ] \ |
| 109 | !minimal? ( dev-db/mysql-init-scripts ) |
133 | && IUSE="${IUSE} community profiling" |
| 110 | selinux? ( sec-policy/selinux-mysql )" |
|
|
| 111 | |
134 | |
| 112 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
135 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 113 | pkg_postinst pkg_config pkg_postrm |
136 | pkg_postinst pkg_config pkg_postrm |
| 114 | |
137 | |
| 115 | # |
138 | # |
| 116 | # HELPER FUNCTIONS: |
139 | # HELPER FUNCTIONS: |
| 117 | # |
140 | # |
| 118 | |
|
|
| 119 | bitkeeper_fetch() { |
|
|
| 120 | local reposuf |
|
|
| 121 | if [[ -z "${1}" ]] ; then |
|
|
| 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 | |
141 | |
| 182 | mysql_disable_test() { |
142 | mysql_disable_test() { |
| 183 | local testname="${1}" ; shift |
143 | local testname="${1}" ; shift |
| 184 | local reason="${@}" |
144 | local reason="${@}" |
| 185 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
145 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| … | |
… | |
| 198 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
158 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 199 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
159 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 200 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
160 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 201 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
161 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 202 | |
162 | |
| 203 | if [[ -z "${DATADIR}" ]] ; then |
163 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 204 | DATADIR="" |
164 | MY_DATADIR="" |
| 205 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
165 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 206 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
166 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 207 | | sed -ne '/datadir/s|^--datadir=||p' \ |
167 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 208 | | tail -n1` |
168 | | tail -n1` |
| 209 | if [[ -z "${DATADIR}" ]] ; then |
169 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 210 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
170 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 211 | | sed -e 's/.*=\s*//'` |
171 | | sed -e 's/.*=\s*//' \ |
|
|
172 | | tail -n1` |
| 212 | fi |
173 | fi |
| 213 | fi |
174 | fi |
| 214 | if [[ -z "${DATADIR}" ]] ; then |
175 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 215 | DATADIR="${MY_LOCALSTATEDIR}" |
176 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 216 | einfo "Using default DATADIR" |
177 | einfo "Using default MY_DATADIR" |
| 217 | fi |
178 | fi |
| 218 | elog "MySQL DATADIR is ${DATADIR}" |
179 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 219 | |
180 | |
| 220 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
181 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 221 | if [[ -e "${DATADIR}" ]] ; then |
182 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 222 | elog "Previous datadir found, it's YOUR job to change" |
183 | # If you get this and you're wondering about it, see bug #207636 |
| 223 | elog "ownership and take care of it" |
184 | elog "MySQL datadir found in ${MY_DATADIR}" |
|
|
185 | elog "A new one will not be created." |
| 224 | PREVIOUS_DATADIR="yes" |
186 | PREVIOUS_DATADIR="yes" |
| 225 | else |
187 | else |
| 226 | PREVIOUS_DATADIR="no" |
188 | PREVIOUS_DATADIR="no" |
| 227 | fi |
189 | fi |
| 228 | export PREVIOUS_DATADIR |
190 | export PREVIOUS_DATADIR |
| … | |
… | |
| 232 | MY_SOURCEDIR=${SERVER_URI##*/} |
194 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 233 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
195 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 234 | |
196 | |
| 235 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
197 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 236 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
198 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 237 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
199 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 238 | } |
200 | } |
| 239 | |
201 | |
| 240 | configure_minimal() { |
202 | configure_minimal() { |
| 241 | # These are things we exclude from a minimal build, please |
203 | # These are things we exclude from a minimal build, please |
| 242 | # note that the server actually does get built and installed, |
204 | # note that the server actually does get built and installed, |
| 243 | # but we then delete it before packaging. |
205 | # but we then delete it before packaging. |
| 244 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
206 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 245 | |
207 | |
| 246 | for i in ${minimal_exclude_list} ; do |
208 | for i in ${minimal_exclude_list} ; do |
| 247 | myconf="${myconf} --without-${i}" |
209 | myconf="${myconf} --without-${i}" |
| 248 | done |
210 | done |
| 249 | myconf="${myconf} --with-extra-charsets=none" |
211 | myconf="${myconf} --with-extra-charsets=none" |
| 250 | myconf="${myconf} --enable-local-infile" |
212 | myconf="${myconf} --enable-local-infile" |
| 251 | |
213 | |
| 252 | if use static ; then |
214 | if use static ; then |
| 253 | myconf="${myconf} --with-client-ldflags=-all-static" |
215 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 254 | myconf="${myconf} --disable-shared" |
216 | myconf="${myconf} --disable-shared --with-pic" |
| 255 | else |
217 | else |
| 256 | myconf="${myconf} --enable-shared --enable-static" |
218 | myconf="${myconf} --enable-shared --enable-static" |
| 257 | fi |
219 | fi |
| 258 | |
220 | |
| 259 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
221 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| … | |
… | |
| 275 | myconf="${myconf} --without-libwrap" |
237 | myconf="${myconf} --without-libwrap" |
| 276 | |
238 | |
| 277 | if use static ; then |
239 | if use static ; then |
| 278 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
240 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 279 | myconf="${myconf} --with-client-ldflags=-all-static" |
241 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 280 | myconf="${myconf} --disable-shared" |
242 | myconf="${myconf} --disable-shared --with-pic" |
| 281 | else |
243 | else |
| 282 | myconf="${myconf} --enable-shared --enable-static" |
244 | myconf="${myconf} --enable-shared --enable-static" |
| 283 | fi |
245 | fi |
| 284 | |
246 | |
| 285 | if use debug ; then |
247 | if use debug ; then |
| … | |
… | |
| 289 | mysql_version_is_at_least "4.1.3" \ |
251 | mysql_version_is_at_least "4.1.3" \ |
| 290 | && use cluster \ |
252 | && use cluster \ |
| 291 | && myconf="${myconf} --without-ndb-debug" |
253 | && myconf="${myconf} --without-ndb-debug" |
| 292 | fi |
254 | fi |
| 293 | |
255 | |
|
|
256 | if [ -n "${MYSQL_DEFAULT_CHARSET}" -a -n "${MYSQL_DEFAULT_COLLATION}" ]; then |
|
|
257 | ewarn "You are using a custom charset of ${MYSQL_DEFAULT_CHARSET}" |
|
|
258 | ewarn "and a collation of ${MYSQL_DEFAULT_COLLATION}." |
|
|
259 | ewarn "You MUST file bugs without these variables set." |
|
|
260 | myconf="${myconf} --with-charset=${MYSQL_DEFAULT_CHARSET}" |
|
|
261 | myconf="${myconf} --with-collation=${MYSQL_DEFAULT_COLLATION}" |
| 294 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
262 | elif mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 295 | myconf="${myconf} --with-charset=utf8" |
263 | myconf="${myconf} --with-charset=utf8" |
| 296 | myconf="${myconf} --with-collation=utf8_general_ci" |
264 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 297 | else |
265 | else |
| 298 | myconf="${myconf} --with-charset=latin1" |
266 | myconf="${myconf} --with-charset=latin1" |
| 299 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
267 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 300 | fi |
268 | fi |
| 301 | |
269 | |
| 302 | if use embedded ; then |
270 | if use embedded ; then |
| 303 | myconf="${myconf} --with-embedded-privilege-control" |
271 | myconf="${myconf} --with-embedded-privilege-control" |
| 304 | myconf="${myconf} --with-embedded-server" |
272 | myconf="${myconf} --with-embedded-server" |
| … | |
… | |
| 327 | myconf="${myconf} $(use_with ssl)" |
295 | myconf="${myconf} $(use_with ssl)" |
| 328 | else |
296 | else |
| 329 | myconf="${myconf} $(use_with ssl openssl)" |
297 | myconf="${myconf} $(use_with ssl openssl)" |
| 330 | fi |
298 | fi |
| 331 | |
299 | |
|
|
300 | if mysql_version_is_at_least "5.0.60" ; then |
|
|
301 | if use berkdb ; then |
|
|
302 | elog "Berkeley DB support was disabled due to build failures" |
|
|
303 | elog "on multiple arches, go to a version earlier than 5.0.60" |
|
|
304 | elog "if you want it again. Gentoo bug #224067." |
|
|
305 | fi |
|
|
306 | myconf="${myconf} --without-berkeley-db" |
|
|
307 | elif use berkdb ; then |
| 332 | # The following fix is due to a bug with bdb on SPARC's. See: |
308 | # 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 |
309 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 334 | # It comes down to non-64-bit safety problems. |
310 | # It comes down to non-64-bit safety problems. |
| 335 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
311 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 336 | elog "Berkeley DB support was disabled due to incompatible arch" |
312 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
313 | myconf="${myconf} --without-berkeley-db" |
|
|
314 | else |
|
|
315 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
316 | fi |
|
|
317 | else |
| 337 | myconf="${myconf} --without-berkeley-db" |
318 | 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 |
319 | fi |
| 345 | |
320 | |
| 346 | if mysql_version_is_at_least "4.1.3" ; then |
321 | if mysql_version_is_at_least "4.1.3" ; then |
| 347 | myconf="${myconf} --with-geometry" |
322 | myconf="${myconf} --with-geometry" |
| 348 | myconf="${myconf} $(use_with cluster ndbcluster)" |
323 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 363 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
338 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 364 | if mysql_version_is_at_least "5.0.3" ; then |
339 | if mysql_version_is_at_least "5.0.3" ; then |
| 365 | elog "Before using the Federated storage engine, please be sure to read" |
340 | elog "Before using the Federated storage engine, please be sure to read" |
| 366 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
341 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 367 | myconf="${myconf} --with-federated-storage-engine" |
342 | myconf="${myconf} --with-federated-storage-engine" |
|
|
343 | fi |
|
|
344 | fi |
|
|
345 | |
|
|
346 | if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then |
|
|
347 | myconf="${myconf} `use_enable community community-features`" |
|
|
348 | if use community; then |
|
|
349 | myconf="${myconf} `use_enable profiling`" |
|
|
350 | else |
|
|
351 | myconf="${myconf} --disable-profiling" |
| 368 | fi |
352 | fi |
| 369 | fi |
353 | fi |
| 370 | |
354 | |
| 371 | mysql_version_is_at_least "5.0.18" \ |
355 | mysql_version_is_at_least "5.0.18" \ |
| 372 | && use max-idx-128 \ |
356 | && use max-idx-128 \ |
| … | |
… | |
| 395 | |
379 | |
| 396 | elog "Before using the Federated storage engine, please be sure to read" |
380 | 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" |
381 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 398 | fi |
382 | fi |
| 399 | |
383 | |
| 400 | if use innodb ; then |
384 | # Upstream specifically requests that InnoDB always be built. |
| 401 | plugins="${plugins},innobase" |
385 | plugins="${plugins},innobase" |
| 402 | fi |
|
|
| 403 | |
386 | |
| 404 | # like configuration=max-no-ndb |
387 | # like configuration=max-no-ndb |
| 405 | if use cluster ; then |
388 | if use cluster ; then |
| 406 | plugins="${plugins},ndbcluster" |
389 | plugins="${plugins},ndbcluster" |
| 407 | myconf="${myconf} --with-ndb-binlog" |
390 | myconf="${myconf} --with-ndb-binlog" |
| … | |
… | |
| 441 | } |
424 | } |
| 442 | |
425 | |
| 443 | # |
426 | # |
| 444 | # EBUILD FUNCTIONS |
427 | # EBUILD FUNCTIONS |
| 445 | # |
428 | # |
| 446 | |
|
|
| 447 | mysql_pkg_setup() { |
429 | mysql_pkg_setup() { |
| 448 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
430 | if hasq test ${FEATURES} ; then |
| 449 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
431 | if ! use minimal ; then |
|
|
432 | if [[ $UID -eq 0 ]]; then |
|
|
433 | eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
434 | fi |
|
|
435 | fi |
|
|
436 | fi |
| 450 | |
437 | |
| 451 | # Check for USE flag problems in pkg_setup |
438 | # Check for USE flag problems in pkg_setup |
| 452 | if use static && use ssl ; then |
439 | if use static && use ssl ; then |
| 453 | eerror "MySQL does not support being built statically with SSL support enabled!" |
440 | 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!" |
441 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 467 | && use minimal ; then |
454 | && use minimal ; then |
| 468 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
455 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 469 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
456 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 470 | fi |
457 | fi |
| 471 | |
458 | |
|
|
459 | # This should come after all of the die statements |
|
|
460 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
461 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
462 | |
| 472 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
463 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 473 | && use berkdb \ |
464 | && use berkdb \ |
| 474 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
465 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 475 | } |
466 | } |
| 476 | |
467 | |
| 477 | mysql_src_unpack() { |
468 | mysql_src_unpack() { |
| 478 | # Initialize the proper variables first |
469 | # Initialize the proper variables first |
| 479 | mysql_init_vars |
470 | mysql_init_vars |
| 480 | |
471 | |
| 481 | unpack ${A} |
472 | unpack ${A} |
| 482 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
473 | # Grab the patches |
| 483 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
474 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
| 484 | bitkeeper_fetch "mysql-5.1-ndb" |
475 | |
| 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}" |
476 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
| 495 | cd "${S}" |
477 | cd "${S}" |
| 496 | fi |
|
|
| 497 | |
478 | |
| 498 | # Apply the patches for this MySQL version |
479 | # Apply the patches for this MySQL version |
| 499 | EPATCH_SUFFIX="patch" |
480 | EPATCH_SUFFIX="patch" |
| 500 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
481 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
482 | # Clean out old items |
|
|
483 | rm -f "${EPATCH_SOURCE}"/* |
|
|
484 | # Now link in right patches |
| 501 | mysql_mv_patches |
485 | mysql_mv_patches |
|
|
486 | # And apply |
| 502 | epatch |
487 | epatch |
| 503 | |
488 | |
| 504 | # Additional checks, remove bundled zlib |
489 | # Additional checks, remove bundled zlib |
| 505 | rm -f "${S}/zlib/"*.[ch] |
490 | rm -f "${S}/zlib/"*.[ch] |
| 506 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
491 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| … | |
… | |
| 522 | |
507 | |
| 523 | local rebuilddirlist d |
508 | local rebuilddirlist d |
| 524 | |
509 | |
| 525 | if mysql_version_is_at_least "5.1.12" ; then |
510 | if mysql_version_is_at_least "5.1.12" ; then |
| 526 | rebuilddirlist="." |
511 | rebuilddirlist="." |
| 527 | # TODO: check this with a cmake expert |
512 | # TODO: check this with a cmake expert |
| 528 | use innodb \ |
|
|
| 529 | && cmake \ |
513 | cmake \ |
| 530 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
514 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 531 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
515 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 532 | "storage/innobase" |
516 | "storage/innobase" |
| 533 | else |
517 | else |
| 534 | rebuilddirlist=". innobase" |
518 | rebuilddirlist=". innobase" |
| 535 | fi |
519 | fi |
| 536 | |
520 | |
| … | |
… | |
| 544 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
528 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 545 | && use berkdb ; then |
529 | && use berkdb ; then |
| 546 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
530 | [[ -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" \ |
531 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
| 548 | || die "Could not copy libtool.m4 to bdb/dist/" |
532 | || die "Could not copy libtool.m4 to bdb/dist/" |
|
|
533 | #These files exist only with libtool-2*, and need to be included. |
|
|
534 | if [ -f '/usr/share/aclocal/ltsugar.m4' ]; then |
|
|
535 | cat "/usr/share/aclocal/ltsugar.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
536 | cat "/usr/share/aclocal/ltversion.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
537 | cat "/usr/share/aclocal/lt~obsolete.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
538 | cat "/usr/share/aclocal/ltoptions.m4" >> "bdb/dist/aclocal/libtool.ac" |
|
|
539 | fi |
| 549 | pushd "bdb/dist" &>/dev/null |
540 | pushd "bdb/dist" &>/dev/null |
| 550 | sh s_all \ |
541 | sh s_all \ |
| 551 | || die "Failed bdb reconfigure" |
542 | || die "Failed bdb reconfigure" |
| 552 | popd &>/dev/null |
543 | popd &>/dev/null |
| 553 | fi |
544 | fi |
| … | |
… | |
| 574 | # Bug #114895, bug #110149 |
565 | # Bug #114895, bug #110149 |
| 575 | filter-flags "-O" "-O[01]" |
566 | filter-flags "-O" "-O[01]" |
| 576 | |
567 | |
| 577 | # glib-2.3.2_pre fix, bug #16496 |
568 | # glib-2.3.2_pre fix, bug #16496 |
| 578 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
569 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
|
|
570 | |
|
|
571 | # As discovered by bug #246652, doing a double-level of SSP causes NDB to |
|
|
572 | # fail badly during cluster startup. |
|
|
573 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
574 | filter-flags "-fstack-protector-all" |
|
|
575 | fi |
| 579 | |
576 | |
| 580 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
577 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 581 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
578 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 582 | mysql_version_is_at_least "5.0" \ |
579 | mysql_version_is_at_least "5.0" \ |
| 583 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
580 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| … | |
… | |
| 613 | |
610 | |
| 614 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
611 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 615 | |
612 | |
| 616 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
613 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 617 | |
614 | |
| 618 | insinto "${MY_INCLUDEDIR}" |
|
|
| 619 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
|
|
| 620 | |
|
|
| 621 | # Convenience links |
615 | # Convenience links |
|
|
616 | einfo "Making Convenience links for mysqlcheck multi-call binary" |
| 622 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
617 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 623 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
618 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 624 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
619 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 625 | |
620 | |
| 626 | # Various junk (my-*.cnf moved elsewhere) |
621 | # Various junk (my-*.cnf moved elsewhere) |
|
|
622 | einfo "Removing duplicate /usr/share/mysql files" |
| 627 | rm -Rf "${D}/usr/share/info" |
623 | rm -Rf "${D}/usr/share/info" |
| 628 | for removeme in "mysql-log-rotate" mysql.server* \ |
624 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 629 | binary-configure* my-*.cnf mi_test_all* |
625 | binary-configure* my-*.cnf mi_test_all* |
| 630 | do |
626 | do |
| 631 | rm -f "${D}"/usr/share/mysql/${removeme} |
627 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 632 | done |
628 | done |
| 633 | |
629 | |
| 634 | # Clean up stuff for a minimal build |
630 | # Clean up stuff for a minimal build |
| 635 | if use minimal ; then |
631 | if use minimal ; then |
|
|
632 | einfo "Remove all extra content for minimal build" |
| 636 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
633 | 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} |
634 | 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" |
635 | 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 |
636 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 640 | fi |
637 | fi |
| … | |
… | |
| 643 | if mysql_version_is_at_least "4.1" ; then |
640 | if mysql_version_is_at_least "4.1" ; then |
| 644 | mysql_mycnf_version="4.1" |
641 | mysql_mycnf_version="4.1" |
| 645 | else |
642 | else |
| 646 | mysql_mycnf_version="4.0" |
643 | mysql_mycnf_version="4.0" |
| 647 | fi |
644 | fi |
|
|
645 | einfo "Building default my.cnf" |
| 648 | insinto "${MY_SYSCONFDIR}" |
646 | insinto "${MY_SYSCONFDIR}" |
| 649 | doins scripts/mysqlaccess.conf |
647 | doins scripts/mysqlaccess.conf |
| 650 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
648 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 651 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
649 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 652 | > "${TMPDIR}/my.cnf.ok" |
650 | > "${TMPDIR}/my.cnf.ok" |
| 653 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
651 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 654 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
652 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 655 | fi |
653 | fi |
| 656 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
654 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 657 | |
655 | |
| 658 | # Minimal builds don't have the MySQL server |
656 | # Minimal builds don't have the MySQL server |
| 659 | if ! use minimal ; then |
657 | if ! use minimal ; then |
|
|
658 | einfo "Creating initial directories" |
| 660 | # Empty directories ... |
659 | # Empty directories ... |
| 661 | diropts "-m0750" |
660 | diropts "-m0750" |
| 662 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
661 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 663 | dodir "${DATADIR}" |
662 | dodir "${MY_DATADIR}" |
| 664 | keepdir "${DATADIR}" |
663 | keepdir "${MY_DATADIR}" |
| 665 | chown -R mysql:mysql "${D}/${DATADIR}" |
664 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 666 | fi |
665 | fi |
| 667 | |
666 | |
| 668 | diropts "-m0755" |
667 | diropts "-m0755" |
| 669 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
668 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 670 | dodir "${folder}" |
669 | dodir "${folder}" |
| … | |
… | |
| 672 | chown -R mysql:mysql "${D}/${folder}" |
671 | chown -R mysql:mysql "${D}/${folder}" |
| 673 | done |
672 | done |
| 674 | fi |
673 | fi |
| 675 | |
674 | |
| 676 | # Docs |
675 | # Docs |
|
|
676 | einfo "Installing docs" |
| 677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
678 | doinfo "${S}"/Docs/mysql.info |
| 678 | |
679 | |
| 679 | # Minimal builds don't have the MySQL server |
680 | # Minimal builds don't have the MySQL server |
| 680 | if ! use minimal ; then |
681 | if ! use minimal ; then |
|
|
682 | einfo "Including support files and sample configurations" |
| 681 | docinto "support-files" |
683 | docinto "support-files" |
| 682 | for script in \ |
684 | for script in \ |
| 683 | support-files/my-*.cnf \ |
685 | "${S}"/support-files/my-*.cnf \ |
| 684 | support-files/magic \ |
686 | "${S}"/support-files/magic \ |
| 685 | support-files/ndb-config-2-node.ini |
687 | "${S}"/support-files/ndb-config-2-node.ini |
| 686 | do |
688 | do |
| 687 | dodoc "${script}" |
689 | dodoc "${script}" |
| 688 | done |
690 | done |
| 689 | |
691 | |
| 690 | docinto "scripts" |
692 | docinto "scripts" |
| 691 | for script in scripts/mysql* ; do |
693 | for script in "${S}"/scripts/mysql* ; do |
| 692 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
694 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 693 | done |
695 | done |
|
|
696 | |
| 694 | fi |
697 | fi |
| 695 | |
698 | |
| 696 | mysql_lib_symlinks "${D}" |
699 | mysql_lib_symlinks "${D}" |
| 697 | } |
700 | } |
| 698 | |
701 | |
| … | |
… | |
| 758 | |
761 | |
| 759 | mysql_pkg_config() { |
762 | mysql_pkg_config() { |
| 760 | # Make sure the vars are correctly initialized |
763 | # Make sure the vars are correctly initialized |
| 761 | mysql_init_vars |
764 | mysql_init_vars |
| 762 | |
765 | |
| 763 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
766 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 764 | |
767 | |
| 765 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
768 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 766 | die "Minimal builds do NOT include the MySQL server" |
769 | die "Minimal builds do NOT include the MySQL server" |
| 767 | fi |
770 | fi |
| 768 | |
771 | |
| 769 | local pwd1="a" |
772 | local pwd1="a" |
| 770 | local pwd2="b" |
773 | local pwd2="b" |
| 771 | local maxtry=5 |
774 | local maxtry=5 |
| 772 | |
775 | |
| 773 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
776 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 774 | ewarn "You have already a MySQL database in place." |
777 | ewarn "You have already a MySQL database in place." |
| 775 | ewarn "(${ROOT}/${DATADIR}/*)" |
778 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 776 | ewarn "Please rename or delete it if you wish to replace it." |
779 | ewarn "Please rename or delete it if you wish to replace it." |
| 777 | die "MySQL database already exists!" |
780 | die "MySQL database already exists!" |
| 778 | fi |
781 | fi |
|
|
782 | |
|
|
783 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
784 | # localhost. Also causes weird failures. |
|
|
785 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 779 | |
786 | |
| 780 | einfo "Creating the mysql database and setting proper" |
787 | einfo "Creating the mysql database and setting proper" |
| 781 | einfo "permissions on it ..." |
788 | einfo "permissions on it ..." |
| 782 | |
789 | |
| 783 | einfo "Insert a password for the mysql 'root' user" |
790 | einfo "Insert a password for the mysql 'root' user" |
| … | |
… | |
| 799 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
806 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 800 | || touch "${TMPDIR}/fill_help_tables.sql" |
807 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 801 | help_tables="${TMPDIR}/fill_help_tables.sql" |
808 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 802 | |
809 | |
| 803 | pushd "${TMPDIR}" &>/dev/null |
810 | pushd "${TMPDIR}" &>/dev/null |
| 804 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
811 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
812 | if [ $? -ne 0 ]; then |
|
|
813 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
814 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
815 | fi |
| 805 | popd &>/dev/null |
816 | popd &>/dev/null |
| 806 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
817 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 807 | || die "MySQL databases not installed" |
818 | || die "MySQL databases not installed" |
| 808 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
819 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 809 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
820 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 810 | |
821 | |
| 811 | if mysql_version_is_at_least "4.1.3" ; then |
822 | if mysql_version_is_at_least "4.1.3" ; then |
| 812 | options="--skip-ndbcluster" |
823 | options="--skip-ndbcluster" |
| 813 | |
824 | |
| 814 | # Filling timezones, see |
825 | # Filling timezones, see |
| … | |
… | |
| 825 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
836 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 826 | ${options} \ |
837 | ${options} \ |
| 827 | --user=mysql \ |
838 | --user=mysql \ |
| 828 | --skip-grant-tables \ |
839 | --skip-grant-tables \ |
| 829 | --basedir=${ROOT}/usr \ |
840 | --basedir=${ROOT}/usr \ |
| 830 | --datadir=${ROOT}/${DATADIR} \ |
841 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 831 | --skip-innodb \ |
842 | --skip-innodb \ |
| 832 | --skip-bdb \ |
843 | --skip-bdb \ |
| 833 | --skip-networking \ |
844 | --skip-networking \ |
| 834 | --max_allowed_packet=8M \ |
845 | --max_allowed_packet=8M \ |
| 835 | --net_buffer_length=16K \ |
846 | --net_buffer_length=16K \ |