| 1 | # Copyright 1999-2006 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.60 2007/01/05 11:09:34 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.94 2008/05/29 05:33:49 robbat2 Exp $ |
| 4 | # kate: encoding utf-8; eol unix; |
|
|
| 5 | # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; |
|
|
| 6 | # kate: word-wrap-column 80; word-wrap off; |
|
|
| 7 | |
4 | |
| 8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 9 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 10 | |
9 | |
| 11 | # Note that MYSQL_VERSION_ID must be empty !!! |
|
|
| 12 | |
|
|
| 13 | ECLASS="mysql" |
|
|
| 14 | INHERITED="$INHERITED $ECLASS" |
|
|
| 15 | WANT_AUTOCONF="latest" |
10 | WANT_AUTOCONF="latest" |
| 16 | WANT_AUTOMAKE="latest" |
11 | WANT_AUTOMAKE="latest" |
|
|
12 | |
| 17 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
| 18 | |
14 | |
| 19 | # 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 |
| 20 | # and we will run a mysql server during test phase |
16 | # and we will run a mysql server during test phase |
| 21 | S="${WORKDIR}/mysql" |
17 | S="${WORKDIR}/mysql" |
| 22 | |
18 | |
| 23 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070105" |
19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
|
|
20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
|
|
21 | EGIT_PROJECT=mysql-extras |
|
|
22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
|
|
23 | inherit git |
|
|
24 | fi |
| 24 | |
25 | |
| 25 | if [[ ${PR#r} -lt 60 ]] ; then |
26 | if [[ ${PR#r} -lt 60 ]] ; then |
| 26 | IS_BITKEEPER=0 |
27 | IS_BITKEEPER=0 |
| 27 | elif [[ ${PR#r} -lt 90 ]] ; then |
28 | elif [[ ${PR#r} -lt 90 ]] ; then |
| 28 | IS_BITKEEPER=60 |
29 | IS_BITKEEPER=60 |
| … | |
… | |
| 33 | # MYSQL_VERSION_ID will be: |
34 | # MYSQL_VERSION_ID will be: |
| 34 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
35 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 35 | # This is an important part, because many of the choices the MySQL ebuild will do |
36 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 36 | # depend on this variable. |
37 | # depend on this variable. |
| 37 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
38 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
|
|
39 | # We also strip off upstream's trailing letter that they use to respin tarballs |
|
|
40 | |
| 38 | MYSQL_VERSION_ID="" |
41 | MYSQL_VERSION_ID="" |
|
|
42 | tpv="${PV%[a-z]}" |
| 39 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
43 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 40 | for vatom in 0 1 2 3 ; do |
44 | for vatom in 0 1 2 3 ; do |
| 41 | # pad to length 2 |
45 | # pad to length 2 |
| 42 | tpv[${vatom}]="00${tpv[${vatom}]}" |
46 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 43 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
47 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 44 | done |
48 | done |
| 45 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
49 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 46 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 47 | |
51 | |
| 48 | # Be warned, *DEPEND are version-dependant |
52 | # Be warned, *DEPEND are version-dependant |
|
|
53 | # These are used for both runtime and compiletime |
| 49 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 50 | userland_GNU? ( sys-process/procps ) |
55 | userland_GNU? ( sys-process/procps ) |
| 51 | >=sys-apps/sed-4 |
56 | >=sys-apps/sed-4 |
| 52 | >=sys-apps/texinfo-4.7-r1 |
57 | >=sys-apps/texinfo-4.7-r1 |
| 53 | >=sys-libs/readline-4.1 |
58 | >=sys-libs/readline-4.1 |
| 54 | >=sys-libs/zlib-1.2.3 |
59 | >=sys-libs/zlib-1.2.3" |
| 55 | " |
|
|
| 56 | |
60 | |
| 57 | # having different flavours at the same time is not a good idea |
61 | # Having different flavours at the same time is not a good idea |
| 58 | for i in "" "-community" "-slotted" ; do |
62 | for i in "" "-community" ; do |
| 59 | [[ "${i}" == ${PN#mysql} ]] || |
63 | [[ "${i}" == ${PN#mysql} ]] || |
| 60 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
64 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
| 61 | done |
65 | done |
| 62 | |
66 | |
|
|
67 | RDEPEND="${DEPEND} |
|
|
68 | !minimal? ( dev-db/mysql-init-scripts ) |
|
|
69 | selinux? ( sec-policy/selinux-mysql )" |
|
|
70 | |
|
|
71 | # compile-time-only |
| 63 | mysql_version_is_at_least "5.1" \ |
72 | mysql_version_is_at_least "5.1" \ |
| 64 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
73 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
| 65 | |
74 | |
|
|
75 | # compile-time-only |
|
|
76 | mysql_version_is_at_least "5.1.12" \ |
|
|
77 | && DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
|
|
78 | |
|
|
79 | # BitKeeper dependency, compile-time only |
|
|
80 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
81 | |
|
|
82 | |
| 66 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
83 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
85 | |
| 69 | if mysql_version_is_at_least "5.1.12" ; then |
86 | # Work out the default SERVER_URI correctly |
| 70 | DEPEND="${DEPEND} innodb? ( >=dev-util/cmake-2.4.3 )" |
87 | if [ -z "${SERVER_URI}" ]; then |
|
|
88 | # The community build is on the mirrors |
|
|
89 | if [ "${PN}" == "mysql-community" ]; then |
|
|
90 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
91 | # The enterprise source is on the primary site only |
|
|
92 | elif [ "${PN}" == "mysql" ]; then |
|
|
93 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
94 | fi |
| 71 | fi |
95 | fi |
| 72 | |
96 | |
| 73 | # BitKeeper dependency, compile-time only |
|
|
| 74 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
|
|
| 75 | |
|
|
| 76 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 77 | DEPEND="${DEPEND} app-admin/eselect-mysql" |
|
|
| 78 | fi |
|
|
| 79 | |
|
|
| 80 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 81 | SLOT="" |
|
|
| 82 | tpv=( ${PV//[-._]/ } ) |
|
|
| 83 | for vatom in 0 1 2 ; do |
|
|
| 84 | SLOT="${SLOT}${tpv[${vatom}]}_" |
|
|
| 85 | done |
|
|
| 86 | #finally SLOT=5_0_24 |
|
|
| 87 | SLOT=${SLOT:0:${#SLOT}-1} |
|
|
| 88 | else |
|
|
| 89 | SLOT="0" |
|
|
| 90 | fi |
|
|
| 91 | |
|
|
| 92 | # Define correct SRC_URIs |
97 | # Define correct SRC_URIs |
| 93 | SRC_URI=" |
98 | SRC_URI="${SERVER_URI}" |
| 94 | ${SERVER_URI} |
99 | |
|
|
100 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
|
|
101 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 95 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
102 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 96 | " |
|
|
| 97 | mysql_version_is_at_least "5.1.12" \ |
103 | mysql_version_is_at_least "5.1.12" \ |
| 98 | && [[ -n "${PBXT_VERSION}" ]] \ |
104 | && [[ -n "${PBXT_VERSION}" ]] \ |
| 99 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
105 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 100 | |
106 | |
| 101 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
107 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 102 | HOMEPAGE="http://www.mysql.com/" |
108 | HOMEPAGE="http://www.mysql.com/" |
| 103 | LICENSE="GPL-2" |
109 | LICENSE="GPL-2" |
|
|
110 | SLOT="0" |
| 104 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
111 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 105 | RESTRICT="confcache" |
|
|
| 106 | |
112 | |
| 107 | mysql_version_is_at_least "4.1" \ |
113 | mysql_version_is_at_least "4.1" \ |
| 108 | && IUSE="${IUSE} latin1" |
114 | && IUSE="${IUSE} latin1" |
| 109 | |
115 | |
| 110 | mysql_version_is_at_least "4.1.3" \ |
116 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 122 | mysql_version_is_at_least "5.1" \ |
128 | mysql_version_is_at_least "5.1" \ |
| 123 | || IUSE="${IUSE} berkdb" |
129 | || IUSE="${IUSE} berkdb" |
| 124 | |
130 | |
| 125 | mysql_version_is_at_least "5.1.12" \ |
131 | mysql_version_is_at_least "5.1.12" \ |
| 126 | && IUSE="${IUSE} pbxt" |
132 | && IUSE="${IUSE} pbxt" |
| 127 | |
|
|
| 128 | RDEPEND="${DEPEND} |
|
|
| 129 | sys-apps/mysql |
|
|
| 130 | selinux? ( sec-policy/selinux-mysql ) |
|
|
| 131 | " |
|
|
| 132 | |
133 | |
| 133 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
134 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 134 | pkg_postinst pkg_config pkg_postrm |
135 | pkg_postinst pkg_config pkg_postrm |
| 135 | |
136 | |
| 136 | # |
137 | # |
| 137 | # HELPER FUNCTIONS: |
138 | # HELPER FUNCTIONS: |
| 138 | # |
139 | # |
| 139 | |
140 | |
| 140 | bitkeeper_fetch() { |
141 | bitkeeper_fetch() { |
| 141 | |
|
|
| 142 | local reposuf |
142 | local reposuf |
| 143 | if [[ -z "${1}" ]] ; then |
143 | if [[ -z "${1}" ]] ; then |
| 144 | local tpv |
144 | local tpv |
| 145 | tpv=( ${PV//[-._]/ } ) |
145 | tpv=( ${PV//[-._]/ } ) |
| 146 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
146 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
| 147 | else |
147 | else |
| 148 | reposuf="${1}" |
148 | reposuf="${1}" |
| 149 | fi |
149 | fi |
| 150 | einfo "using \"${reposuf}\" repository." |
150 | einfo "Using '${reposuf}' repository." |
| 151 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
151 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
| 152 | ## -- ebk_store_dir: bitkeeper sources store directory |
152 | ## -- ebk_store_dir: bitkeeper sources store directory |
| 153 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
153 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
| 154 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
154 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
| 155 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
155 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
| 156 | # hint: does not work |
156 | # hint: does not work |
| 157 | local ebk_fetch_cmd="sfioball" |
157 | local ebk_fetch_cmd="sfioball" |
| 158 | ## -- ebk_update_cmd: bitkeeper update command |
158 | ## -- ebk_update_cmd: bitkeeper update command |
| 159 | local ebk_update_cmd="update" |
159 | local ebk_update_cmd="update" |
| 160 | |
160 | |
| 161 | #addread "/etc/bitkeeper" |
161 | # addread "/etc/bitkeeper" |
| 162 | addwrite "${ebk_store_dir}" |
162 | addwrite "${ebk_store_dir}" |
| 163 | |
163 | |
| 164 | if [[ ! -d "${ebk_store_dir}" ]]; then |
164 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
| 165 | debug-print "${FUNCNAME}: initial checkout. creating bitkeeper directory" |
165 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
| 166 | mkdir -p "${ebk_store_dir}" || die "${EBK}: can't mkdir ${ebk_store_dir}." |
166 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
| 167 | fi |
167 | fi |
| 168 | |
168 | |
| 169 | pushd "${ebk_store_dir}" || die "${EBK}: can't chdir to ${ebk_store_dir}" |
169 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
| 170 | |
170 | |
| 171 | local wc_path=${reposuf} |
171 | local wc_path=${reposuf} |
| 172 | |
172 | |
| 173 | if [[ ! -d "${wc_path}" ]]; then |
173 | if [[ ! -d "${wc_path}" ]] ; then |
| 174 | local options="-r+" |
174 | local options="-r+" |
|
|
175 | |
| 175 | # first check out |
176 | # first checkout |
| 176 | einfo "bitkeeper check out start -->" |
177 | einfo "bitkeeper checkout start -->" |
| 177 | einfo " repository: ${repo_uri}" |
178 | einfo " repository: ${repo_uri}" |
|
|
179 | |
| 178 | ${ebk_fetch_cmd} ${options} "${repo_uri}" ${wc_path} \ |
180 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
| 179 | || die "${EBK}: can't fetch from ${repo_uri}." |
181 | || die "BK: couldn't fetch from ${repo_uri}" |
| 180 | else |
182 | else |
| 181 | if [[ ! -d "${wc_path}/BK" ]]; then |
183 | if [[ ! -d "${wc_path}/BK" ]] ; then |
| 182 | popd |
184 | popd |
| 183 | die "Look like ${wc_path} is not a bitkeeper path." |
185 | die "Looks like ${wc_path} is not a bitkeeper path" |
| 184 | fi |
186 | fi |
| 185 | |
187 | |
| 186 | # update working copy |
188 | # update working copy |
| 187 | einfo "bitkeeper update start -->" |
189 | einfo "bitkeeper update start -->" |
| 188 | einfo " repository: ${repo_uri}" |
190 | einfo " repository: ${repo_uri}" |
| 189 | |
191 | |
| 190 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
192 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
| 191 | || die "BK: can't update from ${repo_uri} to ${wc_path}." |
193 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
| 192 | fi |
194 | fi |
| 193 | |
195 | |
| 194 | einfo " working copy: ${wc_path}" |
196 | einfo " working copy: ${wc_path}" |
| 195 | cd "${wc_path}" |
197 | cd "${wc_path}" |
| 196 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: can't export to ${S}." |
198 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
| 197 | |
199 | |
| 198 | echo |
200 | echo |
| 199 | popd |
201 | popd |
| 200 | |
|
|
| 201 | } |
202 | } |
| 202 | |
203 | |
| 203 | mysql_disable_test() { |
204 | mysql_disable_test() { |
| 204 | local testname="${1}" ; shift |
205 | local testname="${1}" ; shift |
| 205 | local reason="${@}" |
206 | local reason="${@}" |
| 206 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
| 207 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
| 208 | ewarn "test \"${testname}\" disabled because: \"${reason}\"" |
209 | ewarn "test '${testname}' disabled: '${reason}'" |
| 209 | } |
210 | } |
| 210 | |
211 | |
| 211 | # void mysql_init_vars() |
212 | # void mysql_init_vars() |
| 212 | # |
213 | # |
| 213 | # Initialize global variables |
214 | # Initialize global variables |
| 214 | # 2005-11-19 <vivo@gentoo.org> |
215 | # 2005-11-19 <vivo@gentoo.org> |
| 215 | |
216 | |
| 216 | mysql_init_vars() { |
217 | mysql_init_vars() { |
| 217 | if [[ ${SLOT} == "0" ]] ; then |
|
|
| 218 | MY_SUFFIX="" |
|
|
| 219 | else |
|
|
| 220 | MY_SUFFIX=${MY_SUFFIX:-"-${SLOT}"} |
|
|
| 221 | fi |
|
|
| 222 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql${MY_SUFFIX}"} |
218 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 223 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql${MY_SUFFIX}"} |
219 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 224 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql${MY_SUFFIX}"} |
220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 225 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql${MY_SUFFIX}"} |
221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 226 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql${MY_SUFFIX}"} |
222 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 227 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql${MY_SUFFIX}"} |
223 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 228 | |
224 | |
| 229 | if [[ -z "${DATADIR}" ]] ; then |
225 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 230 | DATADIR="" |
226 | MY_DATADIR="" |
| 231 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
227 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 232 | DATADIR=`"my_print_defaults${MY_SUFFIX}" mysqld 2>/dev/null \ |
228 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 233 | | sed -ne '/datadir/s|^--datadir=||p' \ |
229 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 234 | | tail -n1` |
230 | | tail -n1` |
| 235 | if [[ -z "${DATADIR}" ]] ; then |
231 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 236 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
232 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 237 | | sed -e 's/.*=\s*//'` |
233 | | sed -e 's/.*=\s*//' \ |
|
|
234 | | tail -n1` |
| 238 | fi |
235 | fi |
| 239 | fi |
236 | fi |
| 240 | if [[ -z "${DATADIR}" ]] ; then |
237 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 241 | DATADIR="${MY_LOCALSTATEDIR}" |
238 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 242 | einfo "Using default DATADIR" |
239 | einfo "Using default MY_DATADIR" |
| 243 | fi |
240 | fi |
| 244 | elog "MySQL DATADIR is ${DATADIR}" |
241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 245 | |
242 | |
| 246 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 247 | if [[ -e "${DATADIR}" ]] ; then |
244 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 248 | elog "Previous datadir found, it's YOUR job to change" |
245 | elog "Previous datadir found, it's YOUR job to change" |
| 249 | elog "ownership and take care of it" |
246 | elog "ownership and take care of it" |
| 250 | PREVIOUS_DATADIR="yes" |
247 | PREVIOUS_DATADIR="yes" |
| 251 | else |
248 | else |
| 252 | PREVIOUS_DATADIR="no" |
249 | PREVIOUS_DATADIR="no" |
| … | |
… | |
| 256 | fi |
253 | fi |
| 257 | |
254 | |
| 258 | MY_SOURCEDIR=${SERVER_URI##*/} |
255 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 259 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
256 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 260 | |
257 | |
| 261 | export MY_SUFFIX MY_SHAREDSTATEDIR MY_SYSCONFDIR |
258 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 262 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
259 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 263 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
260 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 264 | } |
261 | } |
| 265 | |
262 | |
| 266 | configure_minimal() { |
263 | configure_minimal() { |
| 267 | # These are things we exclude from a minimal build, please |
264 | # These are things we exclude from a minimal build, please |
| 268 | # note that the server actually does get built and installed, |
265 | # note that the server actually does get built and installed, |
| 269 | # but we then delete it before packaging. |
266 | # but we then delete it before packaging. |
| 270 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
267 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 271 | |
268 | |
| 272 | for i in ${minimal_exclude_list} ; do |
269 | for i in ${minimal_exclude_list} ; do |
| 273 | myconf="${myconf} --without-${i}" |
270 | myconf="${myconf} --without-${i}" |
| 274 | done |
271 | done |
| 275 | myconf="${myconf} --with-extra-charsets=none" |
272 | myconf="${myconf} --with-extra-charsets=none" |
| 276 | myconf="${myconf} --enable-local-infile" |
273 | myconf="${myconf} --enable-local-infile" |
| 277 | |
274 | |
| 278 | if useq "static" ; then |
275 | if use static ; then |
| 279 | myconf="${myconf} --with-client-ldflags=-all-static" |
276 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 280 | myconf="${myconf} --disable-shared" |
277 | myconf="${myconf} --disable-shared --with-pic" |
| 281 | else |
278 | else |
| 282 | myconf="${myconf} --enable-shared --enable-static" |
279 | myconf="${myconf} --enable-shared --enable-static" |
| 283 | fi |
280 | fi |
| 284 | |
281 | |
| 285 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
282 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 286 | myconf="${myconf} --with-charset=utf8" |
283 | myconf="${myconf} --with-charset=utf8" |
| 287 | myconf="${myconf} --with-collation=utf8_general_ci" |
284 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 288 | else |
285 | else |
| 289 | myconf="${myconf} --with-charset=latin1" |
286 | myconf="${myconf} --with-charset=latin1" |
| 290 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
287 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| … | |
… | |
| 298 | myconf="${myconf} --with-mysqld-user=mysql" |
295 | myconf="${myconf} --with-mysqld-user=mysql" |
| 299 | myconf="${myconf} --with-server" |
296 | myconf="${myconf} --with-server" |
| 300 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
297 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
| 301 | myconf="${myconf} --without-libwrap" |
298 | myconf="${myconf} --without-libwrap" |
| 302 | |
299 | |
| 303 | if useq "static" ; then |
300 | if use static ; then |
| 304 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
301 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 305 | myconf="${myconf} --with-client-ldflags=-all-static" |
302 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 306 | myconf="${myconf} --disable-shared" |
303 | myconf="${myconf} --disable-shared --with-pic" |
| 307 | else |
304 | else |
| 308 | myconf="${myconf} --enable-shared --enable-static" |
305 | myconf="${myconf} --enable-shared --enable-static" |
| 309 | fi |
306 | fi |
| 310 | |
307 | |
| 311 | if useq "debug" ; then |
308 | if use debug ; then |
| 312 | myconf="${myconf} --with-debug=full" |
309 | myconf="${myconf} --with-debug=full" |
| 313 | else |
310 | else |
| 314 | myconf="${myconf} --without-debug" |
311 | myconf="${myconf} --without-debug" |
| 315 | mysql_version_is_at_least "4.1.3" \ |
312 | mysql_version_is_at_least "4.1.3" \ |
| 316 | && useq "cluster" \ |
313 | && use cluster \ |
| 317 | && myconf="${myconf} --without-ndb-debug" |
314 | && myconf="${myconf} --without-ndb-debug" |
| 318 | fi |
315 | fi |
| 319 | |
316 | |
| 320 | if mysql_version_is_at_least "4.1" && ! useq "latin1" ; then |
317 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 321 | myconf="${myconf} --with-charset=utf8" |
318 | myconf="${myconf} --with-charset=utf8" |
| 322 | myconf="${myconf} --with-collation=utf8_general_ci" |
319 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 323 | else |
320 | else |
| 324 | myconf="${myconf} --with-charset=latin1" |
321 | myconf="${myconf} --with-charset=latin1" |
| 325 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
322 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 326 | fi |
323 | fi |
| 327 | |
324 | |
| 328 | if useq "embedded" ; then |
325 | if use embedded ; then |
| 329 | myconf="${myconf} --with-embedded-privilege-control" |
326 | myconf="${myconf} --with-embedded-privilege-control" |
| 330 | myconf="${myconf} --with-embedded-server" |
327 | myconf="${myconf} --with-embedded-server" |
| 331 | else |
328 | else |
| 332 | myconf="${myconf} --without-embedded-privilege-control" |
329 | myconf="${myconf} --without-embedded-privilege-control" |
| 333 | myconf="${myconf} --without-embedded-server" |
330 | myconf="${myconf} --without-embedded-server" |
| … | |
… | |
| 341 | myconf="${myconf} --with-extra-tools" |
338 | myconf="${myconf} --with-extra-tools" |
| 342 | myconf="${myconf} --with-innodb" |
339 | myconf="${myconf} --with-innodb" |
| 343 | myconf="${myconf} --without-readline" |
340 | myconf="${myconf} --without-readline" |
| 344 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
341 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
| 345 | |
342 | |
| 346 | if useq "ssl" ; then |
|
|
| 347 | # --with-vio is not needed anymore, it's on by default and |
343 | # --with-vio is not needed anymore, it's on by default and |
| 348 | # has been removed from configure |
344 | # has been removed from configure |
|
|
345 | if use ssl ; then |
| 349 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
346 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
|
|
347 | fi |
|
|
348 | |
| 350 | if mysql_version_is_at_least "5.0.6" ; then |
349 | if mysql_version_is_at_least "5.1.11" ; then |
| 351 | # myconf="${myconf} --with-yassl" |
|
|
| 352 | myconf="${myconf} --with-ssl" |
350 | myconf="${myconf} $(use_with ssl)" |
|
|
351 | else |
|
|
352 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
353 | fi |
|
|
354 | |
|
|
355 | if use berkdb ; then |
|
|
356 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
357 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
358 | # It comes down to non-64-bit safety problems. |
|
|
359 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
|
|
360 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
361 | myconf="${myconf} --without-berkeley-db" |
| 353 | else |
362 | else |
| 354 | myconf="${myconf} --with-openssl" |
363 | myconf="${myconf} --with-berkeley-db=./bdb" |
| 355 | fi |
|
|
| 356 | else |
|
|
| 357 | myconf="${myconf} --without-openssl" |
|
|
| 358 | fi |
364 | fi |
| 359 | |
365 | else |
| 360 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
| 361 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
| 362 | # It comes down to non-64-bit safety problems. |
|
|
| 363 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
| 364 | elog "Berkeley DB support was disabled due to incompatible arch" |
|
|
| 365 | myconf="${myconf} --without-berkeley-db" |
366 | myconf="${myconf} --without-berkeley-db" |
| 366 | else |
|
|
| 367 | if useq "berkdb" ; then |
|
|
| 368 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 369 | else |
|
|
| 370 | myconf="${myconf} --without-berkeley-db" |
|
|
| 371 | fi |
|
|
| 372 | fi |
367 | fi |
| 373 | |
368 | |
| 374 | if mysql_version_is_at_least "4.1.3" ; then |
369 | if mysql_version_is_at_least "4.1.3" ; then |
| 375 | myconf="${myconf} --with-geometry" |
370 | myconf="${myconf} --with-geometry" |
| 376 | myconf="${myconf} $(use_with cluster ndbcluster)" |
371 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| 377 | fi |
372 | fi |
| 378 | |
373 | |
| 379 | if mysql_version_is_at_least "4.1.3" && useq "extraengine" ; then |
374 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 380 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
375 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 381 | myconf="${myconf} --with-archive-storage-engine" |
376 | myconf="${myconf} --with-archive-storage-engine" |
| 382 | |
377 | |
| 383 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
378 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 384 | myconf="${myconf} --with-csv-storage-engine" |
379 | myconf="${myconf} --with-csv-storage-engine" |
| … | |
… | |
| 395 | myconf="${myconf} --with-federated-storage-engine" |
390 | myconf="${myconf} --with-federated-storage-engine" |
| 396 | fi |
391 | fi |
| 397 | fi |
392 | fi |
| 398 | |
393 | |
| 399 | mysql_version_is_at_least "5.0.18" \ |
394 | mysql_version_is_at_least "5.0.18" \ |
| 400 | && useq "max-idx-128" \ |
395 | && use max-idx-128 \ |
| 401 | && myconf="${myconf} --with-max-indexes=128" |
396 | && myconf="${myconf} --with-max-indexes=128" |
| 402 | } |
397 | } |
| 403 | |
398 | |
| 404 | configure_51() { |
399 | configure_51() { |
| 405 | # TODO: !!!! readd --without-readline |
400 | # TODO: !!!! readd --without-readline |
| … | |
… | |
| 410 | myconf="${myconf} --with-geometry" |
405 | myconf="${myconf} --with-geometry" |
| 411 | myconf="${myconf} --with-readline" |
406 | myconf="${myconf} --with-readline" |
| 412 | myconf="${myconf} --with-row-based-replication" |
407 | myconf="${myconf} --with-row-based-replication" |
| 413 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
408 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
| 414 | myconf="${myconf} --without-pstack" |
409 | myconf="${myconf} --without-pstack" |
| 415 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
410 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
| 416 | |
411 | |
| 417 | # 5.1 introduces a new way to manage storage engines (plugins) |
412 | # 5.1 introduces a new way to manage storage engines (plugins) |
| 418 | # like configuration=none |
413 | # like configuration=none |
| 419 | local plugins="csv,myisam,myisammrg,heap" |
414 | local plugins="csv,myisam,myisammrg,heap" |
| 420 | if useq "extraengine" ; then |
415 | if use extraengine ; then |
| 421 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
416 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
| 422 | plugins="${plugins},archive,blackhole,example,federated,partition" |
417 | plugins="${plugins},archive,blackhole,example,federated,partition" |
| 423 | |
418 | |
| 424 | elog "Before using the Federated storage engine, please be sure to read" |
419 | elog "Before using the Federated storage engine, please be sure to read" |
| 425 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
420 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
| 426 | fi |
421 | fi |
| 427 | |
422 | |
| 428 | if useq "innodb" ; then |
423 | if use innodb ; then |
| 429 | plugins="${plugins},innobase" |
424 | plugins="${plugins},innobase" |
| 430 | fi |
425 | fi |
| 431 | |
426 | |
| 432 | # like configuration=max-no-ndb |
427 | # like configuration=max-no-ndb |
| 433 | if useq "cluster" ; then |
428 | if use cluster ; then |
| 434 | plugins="${plugins},ndbcluster" |
429 | plugins="${plugins},ndbcluster" |
| 435 | myconf="${myconf} --with-ndb-binlog" |
430 | myconf="${myconf} --with-ndb-binlog" |
| 436 | fi |
431 | fi |
| 437 | |
432 | |
| 438 | if mysql_version_is_at_least "5.2" ; then |
433 | if mysql_version_is_at_least "5.2" ; then |
| … | |
… | |
| 448 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
443 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 449 | |
444 | |
| 450 | einfo "Reconfiguring dir '${PWD}'" |
445 | einfo "Reconfiguring dir '${PWD}'" |
| 451 | AT_GNUCONF_UPDATE="yes" eautoreconf |
446 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 452 | |
447 | |
| 453 | local myconf |
448 | local myconf="" |
| 454 | myconf="${myconf} --with-mysql=${S}" |
|
|
| 455 | mkdir -p ${T}/lib |
|
|
| 456 | myconf="${myconf} --libdir=${D}/${MY_LIBDIR}" |
449 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
| 457 | useq "debug" && myconf="${myconf} --with-debug=full" |
450 | use debug && myconf="${myconf} --with-debug=full" |
| 458 | # TODO is safe/needed to use econf here ? |
451 | # TODO: is it safe/needed to use econf here ? |
| 459 | ./configure ${myconf} || die "problem configuring pbxt storage engine" |
452 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
| 460 | # TODO is safe/needed to use emake here ? |
453 | # TODO: is it safe/needed to use emake here ? |
| 461 | make || die "problem making pbxt storage engine (${myconf})" |
454 | make || die "Problem making PBXT storage engine (${myconf})" |
| 462 | |
455 | |
| 463 | popd |
456 | popd |
| 464 | # TODO: modify test suite |
457 | # TODO: modify test suite for PBXT |
| 465 | } |
458 | } |
| 466 | |
459 | |
| 467 | pbxt_src_install() { |
460 | pbxt_src_install() { |
| 468 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
461 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
| 469 | make install || die "failed pbxt install" |
462 | make install || die "Failed to install PBXT" |
| 470 | popd |
463 | popd |
| 471 | } |
464 | } |
| 472 | |
465 | |
| 473 | # |
466 | # |
| 474 | # EBUILD FUNCTIONS |
467 | # EBUILD FUNCTIONS |
| 475 | # |
468 | # |
| 476 | |
|
|
| 477 | mysql_pkg_setup() { |
469 | mysql_pkg_setup() { |
| 478 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
470 | if hasq test ${FEATURES} ; then |
| 479 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
471 | if ! use minimal ; then |
|
|
472 | if [[ $UID -eq 0 ]]; then |
|
|
473 | die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |
|
|
474 | fi |
|
|
475 | fi |
|
|
476 | fi |
|
|
477 | |
|
|
478 | # Bug #213475 - MySQL _will_ object strenously if your machine is named |
|
|
479 | # localhost. Also causes weird failures. |
|
|
480 | [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost" |
| 480 | |
481 | |
| 481 | # Check for USE flag problems in pkg_setup |
482 | # Check for USE flag problems in pkg_setup |
| 482 | if useq "static" && useq "ssl" ; then |
483 | if use static && use ssl ; then |
| 483 | eerror "MySQL does not support being built statically with SSL support enabled!" |
484 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 484 | die "MySQL does not support being built statically with SSL support enabled!" |
485 | die "MySQL does not support being built statically with SSL support enabled!" |
| 485 | fi |
486 | fi |
| 486 | |
487 | |
| 487 | if ! mysql_version_is_at_least "5.0" \ |
488 | if ! mysql_version_is_at_least "5.0" \ |
| 488 | && useq "raid" \ |
489 | && use raid \ |
| 489 | && useq "static" ; then |
490 | && use static ; then |
| 490 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
491 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
| 491 | eerror "with RAID support enabled." |
492 | eerror "with RAID support enabled." |
| 492 | die "USE flags 'raid' and 'static' conflict!" |
493 | die "USE flags 'raid' and 'static' conflict!" |
| 493 | fi |
494 | fi |
| 494 | |
495 | |
| 495 | if mysql_version_is_at_least "4.1.3" \ |
496 | if mysql_version_is_at_least "4.1.3" \ |
| 496 | && ( useq "cluster" || useq "extraengine" ) \ |
497 | && ( use cluster || use extraengine ) \ |
| 497 | && useq "minimal" ; then |
498 | && use minimal ; then |
| 498 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
499 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 499 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
500 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 500 | fi |
501 | fi |
|
|
502 | |
|
|
503 | # This should come after all of the die statements |
|
|
504 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
505 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 501 | |
506 | |
| 502 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
507 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 503 | && useq "berkdb" \ |
508 | && use berkdb \ |
| 504 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
509 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 505 | } |
510 | } |
| 506 | |
511 | |
| 507 | mysql_src_unpack() { |
512 | mysql_src_unpack() { |
| 508 | # Initialize the proper variables first |
513 | # Initialize the proper variables first |
| 509 | mysql_init_vars |
514 | mysql_init_vars |
| 510 | |
515 | |
| 511 | unpack ${A} |
516 | unpack ${A} |
|
|
517 | # Grab the patches |
|
|
518 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
|
|
519 | # Bitkeeper checkout support |
| 512 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
520 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
| 513 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
521 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
| 514 | bitkeeper_fetch "mysql-5.1-ndb" |
522 | bitkeeper_fetch "mysql-5.1-ndb" |
| 515 | elif mysql_check_version_range "5.2.0 to 5.2.99" ; then |
523 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
| 516 | bitkeeper_fetch "mysql-5.2-falcon" |
524 | bitkeeper_fetch "mysql-5.2-falcon" |
| 517 | else |
525 | else |
| 518 | bitkeeper_fetch |
526 | bitkeeper_fetch |
| 519 | fi |
527 | fi |
| 520 | cd "${S}" |
528 | cd "${S}" |
| 521 | einfo "running upstream autorun on bk sources" |
529 | einfo "Running upstream autorun over BK sources ..." |
| 522 | BUILD/autorun.sh |
530 | BUILD/autorun.sh |
| 523 | else |
531 | else |
| 524 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
532 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
| 525 | cd "${S}" |
533 | cd "${S}" |
| 526 | fi |
534 | fi |
| 527 | |
535 | |
| 528 | # Apply the patches for this MySQL version |
536 | # Apply the patches for this MySQL version |
| 529 | EPATCH_SUFFIX="patch" |
537 | EPATCH_SUFFIX="patch" |
| 530 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
538 | mkdir -p "${EPATCH_SOURCE}" || die "Unable to create epatch directory" |
|
|
539 | # Clean out old items |
|
|
540 | rm -f "${EPATCH_SOURCE}"/* |
|
|
541 | # Now link in right patches |
| 531 | mysql_mv_patches |
542 | mysql_mv_patches |
| 532 | epatch || die "failed to apply all patches" |
543 | # And apply |
|
|
544 | epatch |
| 533 | |
545 | |
| 534 | # Additional checks, remove bundled zlib |
546 | # Additional checks, remove bundled zlib |
| 535 | rm -f "${S}/zlib/"*.[ch] |
547 | rm -f "${S}/zlib/"*.[ch] |
| 536 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
548 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
| 537 | rm -f "scripts/mysqlbug" |
549 | rm -f "scripts/mysqlbug" |
| … | |
… | |
| 552 | |
564 | |
| 553 | local rebuilddirlist d |
565 | local rebuilddirlist d |
| 554 | |
566 | |
| 555 | if mysql_version_is_at_least "5.1.12" ; then |
567 | if mysql_version_is_at_least "5.1.12" ; then |
| 556 | rebuilddirlist="." |
568 | rebuilddirlist="." |
| 557 | # TODO IMPO! Check this with a cmake expert |
569 | # TODO: check this with a cmake expert |
| 558 | useq "innodb" \ |
570 | use innodb \ |
| 559 | && cmake \ |
571 | && cmake \ |
| 560 | -DCMAKE_C_COMPILER=$(which $(tc-getCC)) \ |
572 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 561 | -DCMAKE_CXX_COMPILER=$(which $(tc-getCC)) \ |
573 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 562 | "storage/innobase" |
574 | "storage/innobase" |
| 563 | else |
575 | else |
| 564 | rebuilddirlist=". innobase" |
576 | rebuilddirlist=". innobase" |
| 565 | fi |
577 | fi |
| 566 | |
578 | |
| … | |
… | |
| 570 | AT_GNUCONF_UPDATE="yes" eautoreconf |
582 | AT_GNUCONF_UPDATE="yes" eautoreconf |
| 571 | popd &>/dev/null |
583 | popd &>/dev/null |
| 572 | done |
584 | done |
| 573 | |
585 | |
| 574 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
586 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
| 575 | && useq "berkdb" ; then |
587 | && use berkdb ; then |
| 576 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
588 | [[ -w "bdb/dist/ltmain.sh" ]] && cp -f "ltmain.sh" "bdb/dist/ltmain.sh" |
|
|
589 | cp -f "/usr/share/aclocal/libtool.m4" "bdb/dist/aclocal/libtool.ac" \ |
|
|
590 | || die "Could not copy libtool.m4 to bdb/dist/" |
| 577 | pushd "bdb/dist" \ |
591 | pushd "bdb/dist" &>/dev/null |
| 578 | && sh s_all \ |
592 | sh s_all \ |
| 579 | || die "Failed bdb reconfigure" \ |
593 | || die "Failed bdb reconfigure" |
| 580 | &>/dev/null |
|
|
| 581 | popd &>/dev/null |
594 | popd &>/dev/null |
| 582 | fi |
595 | fi |
| 583 | } |
596 | } |
| 584 | |
597 | |
| 585 | mysql_src_compile() { |
598 | mysql_src_compile() { |
| … | |
… | |
| 587 | mysql_init_vars |
600 | mysql_init_vars |
| 588 | |
601 | |
| 589 | # $myconf is modified by the configure_* functions |
602 | # $myconf is modified by the configure_* functions |
| 590 | local myconf="" |
603 | local myconf="" |
| 591 | |
604 | |
| 592 | if useq "minimal" ; then |
605 | if use minimal ; then |
| 593 | configure_minimal |
606 | configure_minimal |
| 594 | else |
607 | else |
| 595 | configure_common |
608 | configure_common |
| 596 | if mysql_version_is_at_least "5.1.10" ; then |
609 | if mysql_version_is_at_least "5.1.10" ; then |
| 597 | configure_51 |
610 | configure_51 |
| … | |
… | |
| 611 | mysql_version_is_at_least "5.0" \ |
624 | mysql_version_is_at_least "5.0" \ |
| 612 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
625 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
| 613 | export CXXFLAGS |
626 | export CXXFLAGS |
| 614 | |
627 | |
| 615 | econf \ |
628 | econf \ |
| 616 | --program-suffix="${MY_SUFFIX}" \ |
|
|
| 617 | --libexecdir="/usr/sbin" \ |
629 | --libexecdir="/usr/sbin" \ |
| 618 | --sysconfdir="${MY_SYSCONFDIR}" \ |
630 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 619 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
631 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 620 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
632 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 621 | --libdir="${MY_LIBDIR}" \ |
633 | --libdir="${MY_LIBDIR}" \ |
| … | |
… | |
| 632 | | xargs -0 -n100 sed -i \ |
644 | | xargs -0 -n100 sed -i \ |
| 633 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
645 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 634 | |
646 | |
| 635 | emake || die "emake failed" |
647 | emake || die "emake failed" |
| 636 | |
648 | |
| 637 | mysql_version_is_at_least "5.1.1" && useq "pbxt" && pbxt_src_compile |
649 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 638 | } |
650 | } |
| 639 | |
651 | |
| 640 | mysql_src_install() { |
652 | mysql_src_install() { |
| 641 | # Make sure the vars are correctly initialized |
653 | # Make sure the vars are correctly initialized |
| 642 | mysql_init_vars |
654 | mysql_init_vars |
| 643 | |
655 | |
| 644 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
656 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
| 645 | |
657 | |
| 646 | mysql_version_is_at_least "5.1.12" && useq "pbxt" && pbxt_src_install |
658 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 647 | |
659 | |
| 648 | insinto "${MY_INCLUDEDIR}" |
660 | insinto "${MY_INCLUDEDIR}" |
| 649 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
661 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 650 | |
662 | |
| 651 | # Convenience links |
663 | # Convenience links |
| 652 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlanalyze${MY_SUFFIX}" |
664 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 653 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqlrepair${MY_SUFFIX}" |
665 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 654 | dosym "/usr/bin/mysqlcheck${MY_SUFFIX}" "/usr/bin/mysqloptimize${MY_SUFFIX}" |
666 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 655 | |
667 | |
| 656 | # Various junk (my-*.cnf moved elsewhere) |
668 | # Various junk (my-*.cnf moved elsewhere) |
| 657 | rm -Rf "${D}/usr/share/info" |
669 | rm -Rf "${D}/usr/share/info" |
| 658 | for removeme in "mysql-log-rotate" mysql.server* \ |
670 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 659 | binary-configure* my-*.cnf mi_test_all* |
671 | binary-configure* my-*.cnf mi_test_all* |
| 660 | do |
672 | do |
| 661 | rm -f "${D}"/usr/share/mysql/${removeme} |
673 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 662 | done |
674 | done |
| 663 | |
675 | |
| 664 | # TODO change at Makefile-am level |
|
|
| 665 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 666 | for moveme in "mysql_fix_privilege_tables.sql" \ |
|
|
| 667 | "fill_help_tables.sql" "ndb-config-2-node.ini" |
|
|
| 668 | do |
|
|
| 669 | mv -f "${D}/usr/share/mysql/${moveme}" "${D}/usr/share/mysql${MY_SUFFIX}/" 2>/dev/null |
|
|
| 670 | done |
|
|
| 671 | fi |
|
|
| 672 | |
|
|
| 673 | # clean up stuff for a minimal build |
676 | # Clean up stuff for a minimal build |
| 674 | if useq "minimal" ; then |
677 | if use minimal ; then |
| 675 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
678 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 676 | 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} |
679 | 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} |
| 677 | rm -f "${D}/usr/sbin/mysqld" |
680 | rm -f "${D}/usr/sbin/mysqld" |
| 678 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
681 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 679 | fi |
682 | fi |
| 680 | |
683 | |
| 681 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 682 | local notcatched=$(ls "${D}/usr/share/mysql"/*) |
|
|
| 683 | if [[ -n "${notcatched}" ]] ; then |
|
|
| 684 | ewarn "QA notice" |
|
|
| 685 | ewarn "${notcatched} files in /usr/share/mysql" |
|
|
| 686 | ewarn "bug mysql-herd to manage them" |
|
|
| 687 | fi |
|
|
| 688 | rm -Rf "${D}/usr/share/mysql" |
|
|
| 689 | fi |
|
|
| 690 | |
|
|
| 691 | # Configuration stuff |
684 | # Configuration stuff |
| 692 | if mysql_version_is_at_least "4.1" ; then |
685 | if mysql_version_is_at_least "4.1" ; then |
| 693 | mysql_mycnf_version="4.1" |
686 | mysql_mycnf_version="4.1" |
| 694 | else |
687 | else |
| 695 | mysql_mycnf_version="4.0" |
688 | mysql_mycnf_version="4.0" |
| 696 | fi |
689 | fi |
| 697 | insinto "${MY_SYSCONFDIR}" |
690 | insinto "${MY_SYSCONFDIR}" |
| 698 | doins scripts/mysqlaccess.conf |
691 | doins scripts/mysqlaccess.conf |
| 699 | sed -e "s!@MY_SUFFIX@!${MY_SUFFIX}!g" \ |
|
|
| 700 | -e "s!@DATADIR@!${DATADIR}!g" \ |
692 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 701 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
693 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 702 | > "${TMPDIR}/my.cnf.ok" |
694 | > "${TMPDIR}/my.cnf.ok" |
| 703 | if mysql_version_is_at_least "4.1" && useq "latin1" ; then |
695 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 704 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
696 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 705 | fi |
697 | fi |
| 706 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
698 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 707 | |
699 | |
| 708 | # Minimal builds don't have the MySQL server |
700 | # Minimal builds don't have the MySQL server |
| 709 | if ! useq "minimal" ; then |
701 | if ! use minimal ; then |
| 710 | # Empty directories ... |
702 | # Empty directories ... |
| 711 | diropts "-m0750" |
703 | diropts "-m0750" |
| 712 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
704 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 713 | dodir "${DATADIR}" |
705 | dodir "${MY_DATADIR}" |
| 714 | keepdir "${DATADIR}" |
706 | keepdir "${MY_DATADIR}" |
| 715 | chown -R mysql:mysql "${D}/${DATADIR}" |
707 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 716 | fi |
708 | fi |
| 717 | |
709 | |
| 718 | diropts "-m0755" |
710 | diropts "-m0755" |
| 719 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
711 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 720 | dodir "${folder}" |
712 | dodir "${folder}" |
| … | |
… | |
| 723 | done |
715 | done |
| 724 | fi |
716 | fi |
| 725 | |
717 | |
| 726 | # Docs |
718 | # Docs |
| 727 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
719 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
720 | doinfo "${S}"/Docs/mysql.info |
| 728 | |
721 | |
| 729 | # Minimal builds don't have the MySQL server |
722 | # Minimal builds don't have the MySQL server |
| 730 | if ! useq "minimal" ; then |
723 | if ! use minimal ; then |
|
|
724 | docinto "support-files" |
|
|
725 | for script in \ |
|
|
726 | "${S}"/support-files/my-*.cnf \ |
|
|
727 | "${S}"/support-files/magic \ |
|
|
728 | "${S}"/support-files/ndb-config-2-node.ini |
|
|
729 | do |
|
|
730 | dodoc "${script}" |
|
|
731 | done |
|
|
732 | |
|
|
733 | docinto "scripts" |
|
|
734 | for script in "${S}"/scripts/mysql* ; do |
|
|
735 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
736 | done |
|
|
737 | |
|
|
738 | fi |
|
|
739 | |
|
|
740 | mysql_lib_symlinks "${D}" |
|
|
741 | } |
|
|
742 | |
|
|
743 | mysql_pkg_preinst() { |
|
|
744 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
745 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
746 | } |
|
|
747 | |
|
|
748 | mysql_pkg_postinst() { |
|
|
749 | # Make sure the vars are correctly initialized |
|
|
750 | mysql_init_vars |
|
|
751 | |
|
|
752 | # Check FEATURES="collision-protect" before removing this |
|
|
753 | [[ -d "${ROOT}/var/log/mysql" ]] || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
754 | |
|
|
755 | # Secure the logfiles |
|
|
756 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
757 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
758 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
759 | |
|
|
760 | # Minimal builds don't have the MySQL server |
|
|
761 | if ! use minimal ; then |
| 731 | docinto "support-files" |
762 | docinto "support-files" |
| 732 | for script in \ |
763 | for script in \ |
| 733 | support-files/my-*.cnf \ |
764 | support-files/my-*.cnf \ |
| 734 | support-files/magic \ |
765 | support-files/magic \ |
| 735 | support-files/ndb-config-2-node.ini |
766 | support-files/ndb-config-2-node.ini |
| … | |
… | |
| 739 | |
770 | |
| 740 | docinto "scripts" |
771 | docinto "scripts" |
| 741 | for script in scripts/mysql* ; do |
772 | for script in scripts/mysql* ; do |
| 742 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
773 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 743 | done |
774 | done |
| 744 | fi |
|
|
| 745 | |
775 | |
| 746 | if [[ ${PN} == "mysql-slotted" ]] ; then |
776 | einfo |
| 747 | # MOVED HERE DUE TO BUG #121445 |
777 | elog "You might want to run:" |
| 748 | # create a list of files, to be used |
778 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
| 749 | # by external utilities |
779 | elog "if this is a new install." |
| 750 | mkdir -p "${D}/var/lib/eselect/mysql/" |
780 | einfo |
| 751 | local filelist="${D}/var/lib/eselect/mysql/mysql${MY_SUFFIX}.filelist" |
|
|
| 752 | pushd "${D}/" &>/dev/null |
|
|
| 753 | find usr/bin/ usr/sbin/ \ |
|
|
| 754 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 755 | -and -not -name "mysql_config${MY_SUFFIX}" \ |
|
|
| 756 | > "${filelist}" |
|
|
| 757 | find usr/share/man \ |
|
|
| 758 | -type f -name "*${MY_SUFFIX}*" \ |
|
|
| 759 | | sed -e 's/$/.gz/' \ |
|
|
| 760 | >> "${filelist}" |
|
|
| 761 | echo "${MY_SYSCONFDIR#"/"}" >> "${filelist}" |
|
|
| 762 | echo "${MY_LIBDIR#"/"}" >> "${filelist}" |
|
|
| 763 | echo "${MY_SHAREDSTATEDIR#"/"}" >> "${filelist}" |
|
|
| 764 | popd &>/dev/null |
|
|
| 765 | fi |
781 | fi |
| 766 | |
782 | |
| 767 | mysql_lib_symlinks "${D}" |
783 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
| 768 | } |
784 | # TODO: explain it better |
| 769 | |
|
|
| 770 | mysql_pkg_preinst() { |
|
|
| 771 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
| 772 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
| 773 | } |
|
|
| 774 | |
|
|
| 775 | mysql_pkg_postinst() { |
|
|
| 776 | # Make sure the vars are correctly initialized |
|
|
| 777 | mysql_init_vars |
|
|
| 778 | |
|
|
| 779 | # Check FEATURES="collision-protect" before removing this |
|
|
| 780 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
|
|
| 781 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
| 782 | |
|
|
| 783 | # Secure the logfiles |
|
|
| 784 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
| 785 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 786 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 787 | |
|
|
| 788 | # Minimal builds don't have the MySQL server |
|
|
| 789 | if ! useq "minimal" ; then |
|
|
| 790 | docinto "support-files" |
|
|
| 791 | for script in \ |
|
|
| 792 | support-files/my-*.cnf \ |
|
|
| 793 | support-files/magic \ |
|
|
| 794 | support-files/ndb-config-2-node.ini |
|
|
| 795 | do |
|
|
| 796 | dodoc "${script}" |
|
|
| 797 | done |
|
|
| 798 | |
|
|
| 799 | docinto "scripts" |
|
|
| 800 | for script in scripts/mysql* ; do |
|
|
| 801 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
|
|
| 802 | done |
|
|
| 803 | fi |
|
|
| 804 | |
|
|
| 805 | einfo "you may want to read slotting upgrade documents in the overlay" |
|
|
| 806 | if useq "pbxt" && mysql_version_is_at_least "5.1" ; then |
|
|
| 807 | # TODO tell it better ;-) |
|
|
| 808 | einfo "mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
785 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
| 809 | einfo "CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
786 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
| 810 | einfo "if, after that you cannot start the mysql server" |
787 | elog "if, after that, you cannot start the MySQL server," |
| 811 | einfo "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
788 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
| 812 | einfo "use the mysql upgrade script to restore the table" |
789 | elog "use the MySQL upgrade script to restore the table" |
| 813 | einfo " or " |
790 | elog "or execute the following SQL command:" |
| 814 | einfo "CREATE TABLE IF NOT EXISTS plugin (" |
791 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
| 815 | einfo " name char(64) binary DEFAULT '' NOT NULL," |
792 | elog " name char(64) binary DEFAULT '' NOT NULL," |
| 816 | einfo " dl char(128) DEFAULT '' NOT NULL," |
793 | elog " dl char(128) DEFAULT '' NOT NULL," |
| 817 | einfo " PRIMARY KEY (name)" |
794 | elog " PRIMARY KEY (name)" |
| 818 | einfo ") CHARACTER SET utf8 COLLATE utf8_bin;" |
795 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
| 819 | fi |
796 | fi |
|
|
797 | |
| 820 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
798 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 821 | && useq "berkdb" \ |
799 | && use berkdb \ |
| 822 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
800 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 823 | } |
801 | } |
| 824 | |
802 | |
| 825 | mysql_pkg_config() { |
803 | mysql_pkg_config() { |
| 826 | # Make sure the vars are correctly initialized |
804 | # Make sure the vars are correctly initialized |
| 827 | mysql_init_vars |
805 | mysql_init_vars |
| 828 | |
806 | |
| 829 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
807 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 830 | |
808 | |
| 831 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
809 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 832 | die "Minimal builds do NOT include the MySQL server" |
810 | die "Minimal builds do NOT include the MySQL server" |
| 833 | fi |
811 | fi |
| 834 | |
812 | |
| 835 | local pwd1="a" |
813 | local pwd1="a" |
| 836 | local pwd2="b" |
814 | local pwd2="b" |
| 837 | local maxtry=5 |
815 | local maxtry=5 |
| 838 | |
816 | |
| 839 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
817 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 840 | ewarn "You have already a MySQL database in place." |
818 | ewarn "You have already a MySQL database in place." |
| 841 | ewarn "(${ROOT}/${DATADIR}/*)" |
819 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 842 | ewarn "Please rename or delete it if you wish to replace it." |
820 | ewarn "Please rename or delete it if you wish to replace it." |
| 843 | die "MySQL database already exists!" |
821 | die "MySQL database already exists!" |
| 844 | fi |
822 | fi |
| 845 | |
823 | |
| 846 | einfo "Creating the mysql database and setting proper" |
824 | einfo "Creating the mysql database and setting proper" |
| … | |
… | |
| 865 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
843 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 866 | || touch "${TMPDIR}/fill_help_tables.sql" |
844 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 867 | help_tables="${TMPDIR}/fill_help_tables.sql" |
845 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 868 | |
846 | |
| 869 | pushd "${TMPDIR}" &>/dev/null |
847 | pushd "${TMPDIR}" &>/dev/null |
| 870 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
848 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
849 | if [ $? -ne 0 ]; then |
|
|
850 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
851 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
852 | fi |
| 871 | popd &>/dev/null |
853 | popd &>/dev/null |
| 872 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
854 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 873 | || die "MySQL databases not installed" |
855 | || die "MySQL databases not installed" |
| 874 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
856 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 875 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
857 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 876 | |
858 | |
| 877 | if mysql_version_is_at_least "4.1.3" ; then |
859 | if mysql_version_is_at_least "4.1.3" ; then |
| 878 | options="--skip-ndbcluster" |
860 | options="--skip-ndbcluster" |
| 879 | |
861 | |
| 880 | # Filling timezones, see |
862 | # Filling timezones, see |
| … | |
… | |
| 891 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
873 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 892 | ${options} \ |
874 | ${options} \ |
| 893 | --user=mysql \ |
875 | --user=mysql \ |
| 894 | --skip-grant-tables \ |
876 | --skip-grant-tables \ |
| 895 | --basedir=${ROOT}/usr \ |
877 | --basedir=${ROOT}/usr \ |
| 896 | --datadir=${ROOT}/${DATADIR} \ |
878 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 897 | --skip-innodb \ |
879 | --skip-innodb \ |
| 898 | --skip-bdb \ |
880 | --skip-bdb \ |
| 899 | --skip-networking \ |
881 | --skip-networking \ |
| 900 | --max_allowed_packet=8M \ |
882 | --max_allowed_packet=8M \ |
| 901 | --net_buffer_length=16K \ |
883 | --net_buffer_length=16K \ |
| … | |
… | |
| 931 | wait %1 |
913 | wait %1 |
| 932 | einfo "Done" |
914 | einfo "Done" |
| 933 | } |
915 | } |
| 934 | |
916 | |
| 935 | mysql_pkg_postrm() { |
917 | mysql_pkg_postrm() { |
| 936 | if [[ ${PN} == "mysql-slotted" ]] ; then |
|
|
| 937 | mysql_lib_symlinks |
918 | : # mysql_lib_symlinks "${D}" |
| 938 | mysql_clients_link_to_best_version |
|
|
| 939 | fi |
|
|
| 940 | } |
919 | } |