| 1 | # Copyright 1999-2005 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.29 2006/04/12 21:15:17 chtekk Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.94 2008/05/29 05:33:49 robbat2 Exp $ |
| 4 | # $ID: $ |
|
|
| 5 | |
4 | |
| 6 | # Author: Francesco Riosa <vivo at gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
|
|
6 | # Maintainer: MySQL Team <mysql-bugs@gentoo.org> |
| 7 | # Maintainer: Luca Longinotti <chtekk at gentoo.org> |
7 | # - Luca Longinotti <chtekk@gentoo.org> |
|
|
8 | # - Robin H. Johnson <robbat2@gentoo.org> |
| 8 | |
9 | |
| 9 | # MYSQL_VERSION_ID will be |
10 | WANT_AUTOCONF="latest" |
| 10 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo magic number, all [0..99] |
11 | WANT_AUTOMAKE="latest" |
| 11 | # this is an important piece, becouse from this variable depends many of the |
12 | |
| 12 | # choices the ebuild will do. |
13 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
| 13 | # in particular the code below work only with PVR like "5.0.18-r3" |
14 | |
| 14 | # the result with the previous PVR is "5001803" |
15 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 15 | if [[ -z ${MYSQL_VERSION_ID} ]] ; then |
16 | # and we will run a mysql server during test phase |
| 16 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
17 | S="${WORKDIR}/mysql" |
| 17 | for vatom in 0 1 2 3; do |
18 | |
| 18 | # pad to lenght 2 |
19 | [[ "${MY_EXTRAS_VER}" == "latest" ]] && MY_EXTRAS_VER="20070108" |
| 19 | tpv[${vatom}]="00${tpv[${vatom}]}" |
20 | if [[ "${MY_EXTRAS_VER}" == "live" ]]; then |
| 20 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
21 | EGIT_PROJECT=mysql-extras |
| 21 | done |
22 | EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/mysql-extras.git" |
| 22 | # strip leading "0" (otherwise it's considered an octal number from bash) |
23 | inherit git |
| 23 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
| 24 | fi |
24 | fi |
| 25 | |
25 | |
| 26 | [[ -z ${MY_EXTRAS_VER} ]] && MY_EXTRAS_VER="20060411" |
26 | if [[ ${PR#r} -lt 60 ]] ; then |
|
|
27 | IS_BITKEEPER=0 |
|
|
28 | elif [[ ${PR#r} -lt 90 ]] ; then |
|
|
29 | IS_BITKEEPER=60 |
|
|
30 | else |
|
|
31 | IS_BITKEEPER=90 |
|
|
32 | fi |
| 27 | |
33 | |
| 28 | DEPEND="${DEPEND} |
34 | # MYSQL_VERSION_ID will be: |
| 29 | >=sys-libs/readline-4.1 |
35 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 30 | berkdb? ( sys-apps/ed ) |
36 | # This is an important part, because many of the choices the MySQL ebuild will do |
|
|
37 | # depend on this variable. |
|
|
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 | |
|
|
41 | MYSQL_VERSION_ID="" |
|
|
42 | tpv="${PV%[a-z]}" |
|
|
43 | tpv=( ${tpv//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
|
|
44 | for vatom in 0 1 2 3 ; do |
|
|
45 | # pad to length 2 |
|
|
46 | tpv[${vatom}]="00${tpv[${vatom}]}" |
|
|
47 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
|
|
48 | done |
|
|
49 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
|
|
50 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
|
|
51 | |
|
|
52 | # Be warned, *DEPEND are version-dependant |
|
|
53 | # These are used for both runtime and compiletime |
| 31 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
54 | DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 32 | userland_GNU? ( sys-process/procps ) |
55 | userland_GNU? ( sys-process/procps ) |
| 33 | >=sys-libs/zlib-1.2.3 |
56 | >=sys-apps/sed-4 |
| 34 | >=sys-apps/texinfo-4.7-r1 |
57 | >=sys-apps/texinfo-4.7-r1 |
| 35 | >=sys-apps/sed-4" |
58 | >=sys-libs/readline-4.1 |
|
|
59 | >=sys-libs/zlib-1.2.3" |
|
|
60 | |
|
|
61 | # Having different flavours at the same time is not a good idea |
|
|
62 | for i in "" "-community" ; do |
|
|
63 | [[ "${i}" == ${PN#mysql} ]] || |
|
|
64 | DEPEND="${DEPEND} !dev-db/mysql${i}" |
|
|
65 | done |
|
|
66 | |
|
|
67 | RDEPEND="${DEPEND} |
|
|
68 | !minimal? ( dev-db/mysql-init-scripts ) |
| 36 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
69 | selinux? ( sec-policy/selinux-mysql )" |
|
|
70 | |
|
|
71 | # compile-time-only |
|
|
72 | mysql_version_is_at_least "5.1" \ |
|
|
73 | || DEPEND="${DEPEND} berkdb? ( sys-apps/ed )" |
|
|
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 | |
| 37 | # 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 |
| 38 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
84 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 39 | |
85 | |
| 40 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
86 | # Work out the default SERVER_URI correctly |
|
|
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 |
|
|
95 | fi |
| 41 | |
96 | |
| 42 | SLOT=0 |
97 | # Define correct SRC_URIs |
|
|
98 | SRC_URI="${SERVER_URI}" |
| 43 | |
99 | |
| 44 | # shorten the path because the socket path length must be shorter than 107 chars |
100 | [[ ${MY_EXTRAS_VER} != live ]] && SRC_URI="${SRC_URI} |
| 45 | # and we will run a mysql server during test phase |
101 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 46 | S="${WORKDIR}/${PN}" |
102 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
103 | mysql_version_is_at_least "5.1.12" \ |
|
|
104 | && [[ -n "${PBXT_VERSION}" ]] \ |
|
|
105 | && SRC_URI="${SRC_URI} pbxt? ( mirror://sourceforge/pbxt/pbxt-${PBXT_VERSION}.tar.gz )" |
| 47 | |
106 | |
| 48 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
107 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 49 | HOMEPAGE="http://www.mysql.com/" |
108 | HOMEPAGE="http://www.mysql.com/" |
| 50 | NEWP="${P/_/-}" |
|
|
| 51 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${NEWP}.tar.gz |
|
|
| 52 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
|
|
| 53 | LICENSE="GPL-2" |
109 | LICENSE="GPL-2" |
|
|
110 | SLOT="0" |
| 54 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
111 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 55 | RESTRICT="primaryuri confcache" |
|
|
| 56 | |
112 | |
|
|
113 | mysql_version_is_at_least "4.1" \ |
|
|
114 | && IUSE="${IUSE} latin1" |
|
|
115 | |
| 57 | mysql_version_is_at_least "4.01.03.00" \ |
116 | mysql_version_is_at_least "4.1.3" \ |
| 58 | && IUSE="${IUSE} cluster extraengine" |
117 | && IUSE="${IUSE} cluster extraengine" |
| 59 | |
118 | |
| 60 | mysql_version_is_at_least "5.00.00.00" \ |
119 | mysql_version_is_at_least "5.0" \ |
| 61 | || IUSE="${IUSE} raid" |
120 | || IUSE="${IUSE} raid" |
| 62 | |
121 | |
| 63 | mysql_version_is_at_least "5.00.18.00" \ |
122 | mysql_version_is_at_least "5.0.18" \ |
| 64 | && IUSE="${IUSE} max-idx-128" |
123 | && IUSE="${IUSE} max-idx-128" |
| 65 | |
124 | |
| 66 | mysql_version_is_at_least "5.01.00.00" \ |
125 | mysql_version_is_at_least "5.1" \ |
| 67 | && IUSE="${IUSE} innodb" |
126 | && IUSE="${IUSE} innodb" |
| 68 | |
127 | |
|
|
128 | mysql_version_is_at_least "5.1" \ |
|
|
129 | || IUSE="${IUSE} berkdb" |
|
|
130 | |
|
|
131 | mysql_version_is_at_least "5.1.12" \ |
|
|
132 | && IUSE="${IUSE} pbxt" |
|
|
133 | |
| 69 | 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 \ |
| 70 | pkg_postinst pkg_config pkg_postrm |
135 | pkg_postinst pkg_config pkg_postrm |
|
|
136 | |
|
|
137 | # |
|
|
138 | # HELPER FUNCTIONS: |
|
|
139 | # |
|
|
140 | |
|
|
141 | bitkeeper_fetch() { |
|
|
142 | local reposuf |
|
|
143 | if [[ -z "${1}" ]] ; then |
|
|
144 | local tpv |
|
|
145 | tpv=( ${PV//[-._]/ } ) |
|
|
146 | reposuf="mysql-${tpv[0]}.${tpv[1]}" |
|
|
147 | else |
|
|
148 | reposuf="${1}" |
|
|
149 | fi |
|
|
150 | einfo "Using '${reposuf}' repository." |
|
|
151 | local repo_uri="bk://mysql.bkbits.net/${reposuf}" |
|
|
152 | ## -- ebk_store_dir: bitkeeper sources store directory |
|
|
153 | local ebk_store_dir="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/bk-src" |
|
|
154 | ## -- ebk_fetch_cmd: bitkeeper fetch command |
|
|
155 | # always fetch the latest revision, use -r<revision> if a specified revision is wanted |
|
|
156 | # hint: does not work |
|
|
157 | local ebk_fetch_cmd="sfioball" |
|
|
158 | ## -- ebk_update_cmd: bitkeeper update command |
|
|
159 | local ebk_update_cmd="update" |
|
|
160 | |
|
|
161 | # addread "/etc/bitkeeper" |
|
|
162 | addwrite "${ebk_store_dir}" |
|
|
163 | |
|
|
164 | if [[ ! -d "${ebk_store_dir}" ]] ; then |
|
|
165 | debug-print "${FUNCNAME}: initial checkout, creating bitkeeper directory ..." |
|
|
166 | mkdir -p "${ebk_store_dir}" || die "BK: couldn't mkdir ${ebk_store_dir}" |
|
|
167 | fi |
|
|
168 | |
|
|
169 | pushd "${ebk_store_dir}" || die "BK: couldn't chdir to ${ebk_store_dir}" |
|
|
170 | |
|
|
171 | local wc_path=${reposuf} |
|
|
172 | |
|
|
173 | if [[ ! -d "${wc_path}" ]] ; then |
|
|
174 | local options="-r+" |
|
|
175 | |
|
|
176 | # first checkout |
|
|
177 | einfo "bitkeeper checkout start -->" |
|
|
178 | einfo " repository: ${repo_uri}" |
|
|
179 | |
|
|
180 | ${ebk_fetch_cmd} ${options} "${repo_uri}" "${wc_path}" \ |
|
|
181 | || die "BK: couldn't fetch from ${repo_uri}" |
|
|
182 | else |
|
|
183 | if [[ ! -d "${wc_path}/BK" ]] ; then |
|
|
184 | popd |
|
|
185 | die "Looks like ${wc_path} is not a bitkeeper path" |
|
|
186 | fi |
|
|
187 | |
|
|
188 | # update working copy |
|
|
189 | einfo "bitkeeper update start -->" |
|
|
190 | einfo " repository: ${repo_uri}" |
|
|
191 | |
|
|
192 | ${ebk_update_cmd} "${repo_uri}" "${wc_path}" \ |
|
|
193 | || die "BK: couldn't update from ${repo_uri} to ${wc_path}" |
|
|
194 | fi |
|
|
195 | |
|
|
196 | einfo " working copy: ${wc_path}" |
|
|
197 | cd "${wc_path}" |
|
|
198 | rsync -rlpgo --exclude="BK/" . "${S}" || die "BK: couldn't export to ${S}" |
|
|
199 | |
|
|
200 | echo |
|
|
201 | popd |
|
|
202 | } |
|
|
203 | |
|
|
204 | mysql_disable_test() { |
|
|
205 | local testname="${1}" ; shift |
|
|
206 | local reason="${@}" |
|
|
207 | local mysql_disable_file="${S}/mysql-test/t/disabled.def" |
|
|
208 | echo ${testname} : ${reason} >> "${mysql_disable_file}" |
|
|
209 | ewarn "test '${testname}' disabled: '${reason}'" |
|
|
210 | } |
| 71 | |
211 | |
| 72 | # void mysql_init_vars() |
212 | # void mysql_init_vars() |
| 73 | # |
213 | # |
| 74 | # initialize global variables |
214 | # Initialize global variables |
| 75 | # 2005-11-19 <vivo at gentoo.org> |
215 | # 2005-11-19 <vivo@gentoo.org> |
|
|
216 | |
| 76 | mysql_init_vars() { |
217 | mysql_init_vars() { |
| 77 | |
|
|
| 78 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql"} |
218 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 79 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
219 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 80 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
220 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 81 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
221 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 82 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
222 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 83 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
223 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 84 | |
224 | |
| 85 | if [ -z "${DATADIR}" ]; then |
225 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 86 | DATADIR="" |
226 | MY_DATADIR="" |
| 87 | if [ -f "${MY_SYSCONFDIR}/my.cnf" ] ; then |
227 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 88 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
228 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 89 | | sed -ne '/datadir/s|^--datadir=||p' \ |
229 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 90 | | tail -n1` |
230 | | tail -n1` |
| 91 | if [ -z "${DATADIR}" ]; then |
231 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 92 | if useq "srvdir" ; then |
|
|
| 93 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 94 | else |
|
|
| 95 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
232 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 96 | | sed -e 's/.*=\s*//'` |
233 | | sed -e 's/.*=\s*//' \ |
| 97 | fi |
234 | | tail -n1` |
| 98 | fi |
235 | fi |
| 99 | fi |
236 | fi |
| 100 | if [ -z "${DATADIR}" ]; then |
237 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 101 | if useq "srvdir" ; then |
|
|
| 102 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
|
|
| 103 | else |
|
|
| 104 | DATADIR="${MY_LOCALSTATEDIR}" |
238 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 105 | fi |
|
|
| 106 | einfo "Using default DATADIR" |
239 | einfo "Using default MY_DATADIR" |
| 107 | fi |
240 | fi |
| 108 | einfo "MySQL DATADIR is ${DATADIR}" |
241 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 109 | |
242 | |
| 110 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
243 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 111 | if [ -a "${DATADIR}" ] ; then |
244 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 112 | ewarn "Previous datadir found, it's YOUR job to change" |
245 | elog "Previous datadir found, it's YOUR job to change" |
| 113 | ewarn "ownership and have care of it" |
246 | elog "ownership and take care of it" |
| 114 | PREVIOUS_DATADIR="yes" |
247 | PREVIOUS_DATADIR="yes" |
| 115 | export PREVIOUS_DATADIR |
|
|
| 116 | else |
248 | else |
| 117 | PREVIOUS_DATADIR="no" |
249 | PREVIOUS_DATADIR="no" |
| 118 | export PREVIOUS_DATADIR |
|
|
| 119 | fi |
250 | fi |
| 120 | fi |
251 | export PREVIOUS_DATADIR |
| 121 | fi |
252 | fi |
|
|
253 | fi |
|
|
254 | |
|
|
255 | MY_SOURCEDIR=${SERVER_URI##*/} |
|
|
256 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 122 | |
257 | |
| 123 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
258 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 124 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
259 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 125 | export MY_INCLUDEDIR |
260 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 126 | export DATADIR |
|
|
| 127 | } |
261 | } |
| 128 | |
262 | |
| 129 | mysql_pkg_setup() { |
263 | configure_minimal() { |
|
|
264 | # These are things we exclude from a minimal build, please |
|
|
265 | # note that the server actually does get built and installed, |
|
|
266 | # but we then delete it before packaging. |
|
|
267 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 130 | |
268 | |
| 131 | enewgroup mysql 60 || die "problem adding group mysql" |
269 | for i in ${minimal_exclude_list} ; do |
| 132 | enewuser mysql 60 -1 /dev/null mysql \ |
270 | myconf="${myconf} --without-${i}" |
| 133 | || die "problem adding user mysql" |
|
|
| 134 | } |
|
|
| 135 | |
|
|
| 136 | mysql_src_unpack() { |
|
|
| 137 | |
|
|
| 138 | mysql_init_vars |
|
|
| 139 | |
|
|
| 140 | if useq "static" && useq "ssl" ; then |
|
|
| 141 | local msg="MySQL does not support building statically with SSL support" |
|
|
| 142 | eerror "${msg}" |
|
|
| 143 | die "${msg}" |
|
|
| 144 | fi |
|
|
| 145 | |
|
|
| 146 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
| 147 | && useq "cluster" \ |
|
|
| 148 | || useq "extraengine" \ |
|
|
| 149 | && useq "minimal" ; then |
|
|
| 150 | die "USEs cluster, extraengine conflicts with \"minimal\"" |
|
|
| 151 | fi |
|
|
| 152 | |
|
|
| 153 | unpack ${A} || die |
|
|
| 154 | |
|
|
| 155 | mv -f "${WORKDIR}/${NEWP}" "${S}" |
|
|
| 156 | cd "${S}" |
|
|
| 157 | |
|
|
| 158 | EPATCH_SUFFIX="patch" |
|
|
| 159 | mkdir -p "${EPATCH_SOURCE}" || die "unable to create epatch directory" |
|
|
| 160 | mysql_mv_patches |
|
|
| 161 | epatch || die "failed to apply all patches" |
|
|
| 162 | |
|
|
| 163 | # additional check, remove bundled zlib |
|
|
| 164 | rm -f "${S}/zlib/"*.[ch] |
|
|
| 165 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
| 166 | rm -f scripts/mysqlbug |
|
|
| 167 | |
|
|
| 168 | # Make charsets install in the right place |
|
|
| 169 | find . -name 'Makefile.am' \ |
|
|
| 170 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
|
|
| 171 | |
|
|
| 172 | # Manage mysqlmanager |
|
|
| 173 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
| 174 | && sed -i -e "s!@GENTOO_EXT@!!g" \ |
|
|
| 175 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
| 176 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
| 177 | |
|
|
| 178 | # remove what need to be recreated, so we are sure it's actually done |
|
|
| 179 | find . -name Makefile \ |
|
|
| 180 | -o -name Makefile.in \ |
|
|
| 181 | -o -name configure \ |
|
|
| 182 | -exec rm -f {} \; |
|
|
| 183 | rm ltmain.sh |
|
|
| 184 | |
|
|
| 185 | local rebuilddirlist d buildstep bdbdir |
|
|
| 186 | |
|
|
| 187 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
| 188 | rebuilddirlist=". storage/innobase" |
|
|
| 189 | bdbdir='storage/bdb/dist' |
|
|
| 190 | else |
|
|
| 191 | rebuilddirlist=". innobase" |
|
|
| 192 | bdbdir='bdb/dist' |
|
|
| 193 | fi |
|
|
| 194 | |
|
|
| 195 | for d in ${rebuilddirlist}; do |
|
|
| 196 | einfo "reconfiguring dir \"${d}\"" |
|
|
| 197 | pushd "${d}" &>/dev/null |
|
|
| 198 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
| 199 | popd &>/dev/null |
|
|
| 200 | done |
271 | done |
|
|
272 | myconf="${myconf} --with-extra-charsets=none" |
|
|
273 | myconf="${myconf} --enable-local-infile" |
| 201 | |
274 | |
| 202 | #TODO berkdb in 5.1 need to be worked on |
|
|
| 203 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" |
|
|
| 204 | then |
|
|
| 205 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f ltmain.sh "${bdbdir}/ltmain.sh" |
|
|
| 206 | pushd "${bdbdir}" \ |
|
|
| 207 | && sh s_all \ |
|
|
| 208 | || die "failed bdb reconfigure" \ |
|
|
| 209 | &>/dev/null |
|
|
| 210 | popd &>/dev/null |
|
|
| 211 | fi |
|
|
| 212 | |
|
|
| 213 | } |
|
|
| 214 | |
|
|
| 215 | mysql_src_compile() { |
|
|
| 216 | |
|
|
| 217 | mysql_init_vars |
|
|
| 218 | local myconf |
|
|
| 219 | |
|
|
| 220 | if useq "static" ; then |
275 | if use static ; then |
|
|
276 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
277 | myconf="${myconf} --disable-shared --with-pic" |
|
|
278 | else |
|
|
279 | myconf="${myconf} --enable-shared --enable-static" |
|
|
280 | fi |
|
|
281 | |
|
|
282 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
|
|
283 | myconf="${myconf} --with-charset=utf8" |
|
|
284 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
285 | else |
|
|
286 | myconf="${myconf} --with-charset=latin1" |
|
|
287 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
288 | fi |
|
|
289 | } |
|
|
290 | |
|
|
291 | configure_common() { |
|
|
292 | myconf="${myconf} $(use_with big-tables)" |
|
|
293 | myconf="${myconf} --enable-local-infile" |
|
|
294 | myconf="${myconf} --with-extra-charsets=all" |
|
|
295 | myconf="${myconf} --with-mysqld-user=mysql" |
|
|
296 | myconf="${myconf} --with-server" |
|
|
297 | myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" |
|
|
298 | myconf="${myconf} --without-libwrap" |
|
|
299 | |
|
|
300 | if use static ; then |
| 221 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
301 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 222 | myconf="${myconf} --with-client-ldflags=-all-static" |
302 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 223 | myconf="${myconf} --disable-shared" |
303 | myconf="${myconf} --disable-shared --with-pic" |
| 224 | else |
304 | else |
| 225 | myconf="${myconf} --enable-shared --enable-static" |
305 | myconf="${myconf} --enable-shared --enable-static" |
| 226 | fi |
306 | fi |
| 227 | |
307 | |
| 228 | #myconf="${myconf} `use_with tcpd libwrap`" |
|
|
| 229 | myconf="${myconf} --without-libwrap" |
|
|
| 230 | |
|
|
| 231 | if useq "ssl" ; then |
|
|
| 232 | # --with-vio is not needed anymore, it's on by default and |
|
|
| 233 | # has been removed from configure |
|
|
| 234 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
| 235 | if mysql_version_is_at_least "5.00.06.00" ; then |
|
|
| 236 | # yassl-0.96 is young break with gcc-4.0 || amd64 |
|
|
| 237 | #myconf="${myconf} --with-yassl" |
|
|
| 238 | myconf="${myconf} --with-openssl" |
|
|
| 239 | else |
|
|
| 240 | myconf="${myconf} --with-openssl" |
|
|
| 241 | fi |
|
|
| 242 | else |
|
|
| 243 | myconf="${myconf} --without-openssl" |
|
|
| 244 | fi |
|
|
| 245 | |
|
|
| 246 | if useq "debug"; then |
308 | if use debug ; then |
| 247 | myconf="${myconf} --with-debug=full" |
309 | myconf="${myconf} --with-debug=full" |
| 248 | else |
310 | else |
| 249 | myconf="${myconf} --without-debug" |
311 | myconf="${myconf} --without-debug" |
| 250 | mysql_version_is_at_least "4.01.03.00" \ |
312 | mysql_version_is_at_least "4.1.3" \ |
| 251 | && useq "cluster" \ |
313 | && use cluster \ |
| 252 | && myconf="${myconf} --without-ndb-debug" |
314 | && myconf="${myconf} --without-ndb-debug" |
| 253 | fi |
315 | fi |
| 254 | |
316 | |
| 255 | # these are things we exclude from a minimal build |
|
|
| 256 | # note that the server actually does get built and installed |
|
|
| 257 | # but we then delete it before packaging. |
|
|
| 258 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
|
|
| 259 | |
|
|
| 260 | if ! useq "minimal" ; then |
|
|
| 261 | myconf="${myconf} --with-server" |
|
|
| 262 | myconf="${myconf} --with-extra-tools" |
|
|
| 263 | |
|
|
| 264 | if useq "static" ; then |
|
|
| 265 | myconf="${myconf} --without-raid" |
|
|
| 266 | ewarn "disabling raid support, has problem with static" |
|
|
| 267 | else |
|
|
| 268 | if mysql_version_is_at_least "5.00.00.00" ; then |
|
|
| 269 | myconf="${myconf} --without-raid" |
|
|
| 270 | else |
|
|
| 271 | myconf="${myconf} `use_with raid`" |
|
|
| 272 | fi |
|
|
| 273 | fi |
|
|
| 274 | |
|
|
| 275 | if mysql_version_is_at_least "4.01.00.00" ; then |
317 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| 276 | myconf="${myconf} --with-charset=utf8" |
318 | myconf="${myconf} --with-charset=utf8" |
| 277 | myconf="${myconf} --with-collation=utf8_general_ci" |
319 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 278 | else |
320 | else |
| 279 | myconf="${myconf} --with-charset=latin1" |
321 | myconf="${myconf} --with-charset=latin1" |
| 280 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
322 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 281 | fi |
323 | fi |
| 282 | |
324 | |
| 283 | # optional again from 2005-12-05 |
325 | if use embedded ; then |
| 284 | if mysql_version_is_at_least "5.01.00.00" ; then |
326 | myconf="${myconf} --with-embedded-privilege-control" |
| 285 | myconf="${myconf} $(use_with innodb)" |
327 | myconf="${myconf} --with-embedded-server" |
| 286 | else |
328 | else |
|
|
329 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
330 | myconf="${myconf} --without-embedded-server" |
|
|
331 | fi |
|
|
332 | |
|
|
333 | } |
|
|
334 | |
|
|
335 | configure_40_41_50() { |
|
|
336 | myconf="${myconf} $(use_with perl bench)" |
|
|
337 | myconf="${myconf} --enable-assembler" |
|
|
338 | myconf="${myconf} --with-extra-tools" |
| 287 | myconf="${myconf} --with-innodb" |
339 | myconf="${myconf} --with-innodb" |
|
|
340 | myconf="${myconf} --without-readline" |
|
|
341 | mysql_version_is_at_least "5.0" || myconf="${myconf} $(use_with raid)" |
|
|
342 | |
|
|
343 | # --with-vio is not needed anymore, it's on by default and |
|
|
344 | # has been removed from configure |
|
|
345 | if use ssl ; then |
|
|
346 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 288 | fi |
347 | fi |
| 289 | |
348 | |
| 290 | # lots of chars |
349 | if mysql_version_is_at_least "5.1.11" ; then |
| 291 | myconf="${myconf} --with-extra-charsets=all" |
350 | myconf="${myconf} $(use_with ssl)" |
|
|
351 | else |
|
|
352 | myconf="${myconf} $(use_with ssl openssl)" |
|
|
353 | fi |
| 292 | |
354 | |
|
|
355 | if use berkdb ; then |
| 293 | #The following fix is due to a bug with bdb on sparc's. See: |
356 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 294 | #http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
357 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 295 | # it comes down to non-64-bit safety problems |
358 | # It comes down to non-64-bit safety problems. |
| 296 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" \ |
359 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 297 | || useq "amd64" || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
360 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
| 298 | then |
|
|
| 299 | ewarn "bdb berkeley-db disabled due to arch or version" |
|
|
| 300 | myconf="${myconf} --without-berkeley-db" |
361 | myconf="${myconf} --without-berkeley-db" |
| 301 | else |
362 | else |
| 302 | #TODO berkdb in 5.1 need to be worked on |
|
|
| 303 | useq "berkdb" && \ |
|
|
| 304 | ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" \ |
|
|
| 305 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
363 | myconf="${myconf} --with-berkeley-db=./bdb" |
| 306 | || myconf="${myconf} --without-berkeley-db" |
|
|
| 307 | fi |
364 | fi |
| 308 | |
|
|
| 309 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
| 310 | #myconf="${myconf} $(use_with geometry)" |
|
|
| 311 | myconf="${myconf} --with-geometry" |
|
|
| 312 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
| 313 | fi |
|
|
| 314 | |
|
|
| 315 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
| 316 | && myconf="${myconf} `use_with big-tables`" |
|
|
| 317 | |
|
|
| 318 | mysql_version_is_at_least "5.01.06.00" \ |
|
|
| 319 | && myconf="${myconf} --with-ndb-binlog" |
|
|
| 320 | |
|
|
| 321 | if useq "embedded" ; then |
|
|
| 322 | #REMIND, need the privilege control enabled ? |
|
|
| 323 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 324 | myconf="${myconf} --with-embedded-server" |
|
|
| 325 | else |
365 | else |
| 326 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
| 327 | myconf="${myconf} --without-embedded-server" |
|
|
| 328 | fi |
|
|
| 329 | |
|
|
| 330 | # benchmarking stuff needs perl |
|
|
| 331 | if useq "perl" ; then |
|
|
| 332 | myconf="${myconf} --with-bench" |
|
|
| 333 | else |
|
|
| 334 | myconf="${myconf} --without-bench" |
|
|
| 335 | fi |
|
|
| 336 | else |
|
|
| 337 | for i in ${minimal_exclude_list}; do |
|
|
| 338 | myconf="${myconf} --without-${i}" |
|
|
| 339 | done |
|
|
| 340 | myconf="${myconf} --without-berkeley-db" |
366 | myconf="${myconf} --without-berkeley-db" |
| 341 | myconf="${myconf} --with-extra-charsets=none" |
|
|
| 342 | fi |
367 | fi |
| 343 | |
368 | |
|
|
369 | if mysql_version_is_at_least "4.1.3" ; then |
|
|
370 | myconf="${myconf} --with-geometry" |
|
|
371 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
372 | fi |
|
|
373 | |
| 344 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine"; then |
374 | if mysql_version_is_at_least "4.1.3" && use extraengine ; then |
| 345 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
375 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 346 | myconf="${myconf} --with-archive-storage-engine" |
376 | myconf="${myconf} --with-archive-storage-engine" |
|
|
377 | |
| 347 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
378 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
| 348 | |
|
|
| 349 | mysql_version_is_at_least "4.01.04.00" \ |
|
|
| 350 | && myconf="${myconf} --with-csv-storage-engine" |
379 | myconf="${myconf} --with-csv-storage-engine" |
| 351 | |
380 | |
| 352 | mysql_version_is_at_least "4.01.11.00" \ |
381 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
| 353 | && myconf="${myconf} --with-blackhole-storage-engine" |
382 | myconf="${myconf} --with-blackhole-storage-engine" |
| 354 | |
383 | |
|
|
384 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 355 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
385 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 356 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
386 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 357 | if mysql_version_is_at_least "5.00.03.00" ; then |
387 | if mysql_version_is_at_least "5.0.3" ; then |
| 358 | einfo "before to use federated engine be sure to read" |
388 | elog "Before using the Federated storage engine, please be sure to read" |
| 359 | einfo "http://dev.mysql.com/doc/refman/5.0/en/federated-limitations.html" |
389 | elog "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 360 | myconf="${myconf} --with-federated-storage-engine" |
390 | myconf="${myconf} --with-federated-storage-engine" |
|
|
391 | fi |
|
|
392 | fi |
| 361 | |
393 | |
| 362 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
394 | mysql_version_is_at_least "5.0.18" \ |
|
|
395 | && use max-idx-128 \ |
|
|
396 | && myconf="${myconf} --with-max-indexes=128" |
|
|
397 | } |
|
|
398 | |
|
|
399 | configure_51() { |
|
|
400 | # TODO: !!!! readd --without-readline |
|
|
401 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
402 | # readline.h instead of history.h |
|
|
403 | myconf="${myconf} $(use_with ssl)" |
|
|
404 | myconf="${myconf} --enable-assembler" |
|
|
405 | myconf="${myconf} --with-geometry" |
|
|
406 | myconf="${myconf} --with-readline" |
|
|
407 | myconf="${myconf} --with-row-based-replication" |
|
|
408 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
409 | myconf="${myconf} --without-pstack" |
|
|
410 | use max-idx-128 && myconf="${myconf} --with-max-indexes=128" |
|
|
411 | |
|
|
412 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
413 | # like configuration=none |
|
|
414 | local plugins="csv,myisam,myisammrg,heap" |
|
|
415 | if use extraengine ; then |
|
|
416 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
417 | plugins="${plugins},archive,blackhole,example,federated,partition" |
|
|
418 | |
|
|
419 | elog "Before using the Federated storage engine, please be sure to read" |
|
|
420 | elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
421 | fi |
|
|
422 | |
|
|
423 | if use innodb ; then |
|
|
424 | plugins="${plugins},innobase" |
|
|
425 | fi |
|
|
426 | |
|
|
427 | # like configuration=max-no-ndb |
|
|
428 | if use cluster ; then |
|
|
429 | plugins="${plugins},ndbcluster" |
|
|
430 | myconf="${myconf} --with-ndb-binlog" |
|
|
431 | fi |
|
|
432 | |
| 363 | if mysql_version_is_at_least "5.01.00.00" ; then |
433 | if mysql_version_is_at_least "5.2" ; then |
| 364 | myconf="${myconf} --with-partition" |
434 | plugins="${plugins},falcon" |
|
|
435 | fi |
|
|
436 | |
|
|
437 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
438 | } |
|
|
439 | |
|
|
440 | pbxt_src_compile() { |
|
|
441 | mysql_init_vars |
|
|
442 | |
|
|
443 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
444 | |
|
|
445 | einfo "Reconfiguring dir '${PWD}'" |
|
|
446 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
447 | |
|
|
448 | local myconf="" |
|
|
449 | myconf="${myconf} --with-mysql=${S} --libdir=${D}/${MY_LIBDIR}" |
|
|
450 | use debug && myconf="${myconf} --with-debug=full" |
|
|
451 | # TODO: is it safe/needed to use econf here ? |
|
|
452 | ./configure ${myconf} || die "Problem configuring PBXT storage engine" |
|
|
453 | # TODO: is it safe/needed to use emake here ? |
|
|
454 | make || die "Problem making PBXT storage engine (${myconf})" |
|
|
455 | |
|
|
456 | popd |
|
|
457 | # TODO: modify test suite for PBXT |
|
|
458 | } |
|
|
459 | |
|
|
460 | pbxt_src_install() { |
|
|
461 | pushd "${WORKDIR}/pbxt-${PBXT_VERSION}" &>/dev/null |
|
|
462 | make install || die "Failed to install PBXT" |
|
|
463 | popd |
|
|
464 | } |
|
|
465 | |
|
|
466 | # |
|
|
467 | # EBUILD FUNCTIONS |
|
|
468 | # |
|
|
469 | mysql_pkg_setup() { |
|
|
470 | if hasq test ${FEATURES} ; then |
|
|
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." |
| 365 | fi |
474 | fi |
| 366 | fi |
475 | fi |
|
|
476 | fi |
| 367 | |
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" |
|
|
481 | |
|
|
482 | # Check for USE flag problems in pkg_setup |
|
|
483 | if use static && use ssl ; then |
|
|
484 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
485 | die "MySQL does not support being built statically with SSL support enabled!" |
|
|
486 | fi |
|
|
487 | |
|
|
488 | if ! mysql_version_is_at_least "5.0" \ |
|
|
489 | && use raid \ |
|
|
490 | && use static ; then |
|
|
491 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
492 | eerror "with RAID support enabled." |
|
|
493 | die "USE flags 'raid' and 'static' conflict!" |
|
|
494 | fi |
|
|
495 | |
|
|
496 | if mysql_version_is_at_least "4.1.3" \ |
|
|
497 | && ( use cluster || use extraengine ) \ |
|
|
498 | && use minimal ; then |
|
|
499 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
500 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
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" |
|
|
506 | |
|
|
507 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
|
|
508 | && use berkdb \ |
|
|
509 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
|
|
510 | } |
|
|
511 | |
|
|
512 | mysql_src_unpack() { |
|
|
513 | # Initialize the proper variables first |
|
|
514 | mysql_init_vars |
|
|
515 | |
|
|
516 | unpack ${A} |
|
|
517 | # Grab the patches |
|
|
518 | [[ "${MY_EXTRAS_VER}" == "live" ]] && S="${WORKDIR}/mysql-extras" git_src_unpack |
|
|
519 | # Bitkeeper checkout support |
|
|
520 | if [[ ${IS_BITKEEPER} -eq 90 ]] ; then |
|
|
521 | if mysql_check_version_range "5.1 to 5.1.99" ; then |
|
|
522 | bitkeeper_fetch "mysql-5.1-ndb" |
|
|
523 | elif mysql_check_version_range "5.2 to 5.2.99" ; then |
|
|
524 | bitkeeper_fetch "mysql-5.2-falcon" |
|
|
525 | else |
|
|
526 | bitkeeper_fetch |
| 368 | fi |
527 | fi |
|
|
528 | cd "${S}" |
|
|
529 | einfo "Running upstream autorun over BK sources ..." |
|
|
530 | BUILD/autorun.sh |
|
|
531 | else |
|
|
532 | mv -f "${WORKDIR}/${MY_SOURCEDIR}" "${S}" |
|
|
533 | cd "${S}" |
|
|
534 | fi |
| 369 | |
535 | |
|
|
536 | # Apply the patches for this MySQL version |
|
|
537 | EPATCH_SUFFIX="patch" |
|
|
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 |
|
|
542 | mysql_mv_patches |
|
|
543 | # And apply |
|
|
544 | epatch |
|
|
545 | |
|
|
546 | # Additional checks, remove bundled zlib |
|
|
547 | rm -f "${S}/zlib/"*.[ch] |
|
|
548 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
549 | rm -f "scripts/mysqlbug" |
|
|
550 | |
|
|
551 | # Make charsets install in the right place |
|
|
552 | find . -name 'Makefile.am' \ |
|
|
553 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
|
|
554 | |
|
|
555 | if mysql_version_is_at_least "4.1" ; then |
|
|
556 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
557 | find . -name Makefile \ |
|
|
558 | -o -name Makefile.in \ |
|
|
559 | -o -name configure \ |
|
|
560 | -exec rm -f {} \; |
|
|
561 | rm -f "ltmain.sh" |
|
|
562 | rm -f "scripts/mysqlbug" |
|
|
563 | fi |
|
|
564 | |
|
|
565 | local rebuilddirlist d |
|
|
566 | |
| 370 | mysql_version_is_at_least "5.00.18.00" \ |
567 | if mysql_version_is_at_least "5.1.12" ; then |
| 371 | && useq "max-idx-128" \ |
568 | rebuilddirlist="." |
| 372 | && myconf="${myconf} --with-max-indexes=128" |
569 | # TODO: check this with a cmake expert |
|
|
570 | use innodb \ |
|
|
571 | && cmake \ |
|
|
572 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
|
|
573 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
|
|
574 | "storage/innobase" |
|
|
575 | else |
|
|
576 | rebuilddirlist=". innobase" |
|
|
577 | fi |
| 373 | |
578 | |
|
|
579 | for d in ${rebuilddirlist} ; do |
|
|
580 | einfo "Reconfiguring dir '${d}'" |
|
|
581 | pushd "${d}" &>/dev/null |
|
|
582 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
583 | popd &>/dev/null |
|
|
584 | done |
|
|
585 | |
|
|
586 | if mysql_check_version_range "4.1 to 5.0.99.99" \ |
|
|
587 | && use berkdb ; then |
|
|
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/" |
|
|
591 | pushd "bdb/dist" &>/dev/null |
|
|
592 | sh s_all \ |
|
|
593 | || die "Failed bdb reconfigure" |
|
|
594 | popd &>/dev/null |
|
|
595 | fi |
|
|
596 | } |
|
|
597 | |
|
|
598 | mysql_src_compile() { |
|
|
599 | # Make sure the vars are correctly initialized |
|
|
600 | mysql_init_vars |
|
|
601 | |
|
|
602 | # $myconf is modified by the configure_* functions |
|
|
603 | local myconf="" |
|
|
604 | |
|
|
605 | if use minimal ; then |
|
|
606 | configure_minimal |
|
|
607 | else |
|
|
608 | configure_common |
| 374 | if mysql_version_is_at_least "5.01.05.00" ; then |
609 | if mysql_version_is_at_least "5.1.10" ; then |
| 375 | myconf="${myconf} --with-row-based-replication" |
610 | configure_51 |
| 376 | fi |
|
|
| 377 | |
|
|
| 378 | #TODO rechek again later, had problem with assembler enabled |
|
|
| 379 | # and some combination of use-flags with 5.1 |
|
|
| 380 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
| 381 | myconf="${myconf} --disable-assembler" |
|
|
| 382 | else |
611 | else |
| 383 | myconf="${myconf} --enable-assembler" |
612 | configure_40_41_50 |
| 384 | fi |
613 | fi |
|
|
614 | fi |
| 385 | |
615 | |
| 386 | #Bug #114895,Bug #110149 |
616 | # Bug #114895, bug #110149 |
| 387 | filter-flags "-O" "-O[01]" |
617 | filter-flags "-O" "-O[01]" |
|
|
618 | |
| 388 | #glibc-2.3.2_pre fix; bug #16496 |
619 | # glib-2.3.2_pre fix, bug #16496 |
| 389 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
620 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 390 | |
621 | |
| 391 | #the compiler flags are as per their "official" spec ;) |
622 | CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-strict-aliasing" |
| 392 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
|
|
| 393 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
623 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 394 | mysql_version_is_at_least "5.00.00.00" \ |
624 | mysql_version_is_at_least "5.0" \ |
| 395 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
625 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
626 | export CXXFLAGS |
| 396 | |
627 | |
| 397 | econf \ |
628 | econf \ |
| 398 | --libexecdir="/usr/sbin" \ |
629 | --libexecdir="/usr/sbin" \ |
| 399 | --sysconfdir="${MY_SYSCONFDIR}" \ |
630 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 400 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
631 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| 401 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
632 | --sharedstatedir="${MY_SHAREDSTATEDIR}" \ |
| 402 | --libdir="${MY_LIBDIR}" \ |
633 | --libdir="${MY_LIBDIR}" \ |
| 403 | --includedir="${MY_INCLUDEDIR}" \ |
634 | --includedir="${MY_INCLUDEDIR}" \ |
| 404 | --with-low-memory \ |
635 | --with-low-memory \ |
| 405 | --enable-local-infile \ |
|
|
| 406 | --with-mysqld-user=mysql \ |
|
|
| 407 | --with-client-ldflags=-lstdc++ \ |
636 | --with-client-ldflags=-lstdc++ \ |
| 408 | --enable-thread-safe-client \ |
637 | --enable-thread-safe-client \ |
| 409 | --with-comment="Gentoo Linux ${PF}" \ |
638 | --with-comment="Gentoo Linux ${PF}" \ |
| 410 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
|
|
| 411 | --without-readline \ |
|
|
| 412 | --without-docs \ |
639 | --without-docs \ |
| 413 | ${myconf} || die "bad ./configure" |
640 | ${myconf} || die "econf failed" |
| 414 | |
641 | |
| 415 | # TODO Move this before autoreconf !!! |
642 | # TODO: Move this before autoreconf !!! |
| 416 | find . -type f -name Makefile -print0 \ |
643 | find . -type f -name Makefile -print0 \ |
| 417 | | xargs -0 -n100 sed -i \ |
644 | | xargs -0 -n100 sed -i \ |
| 418 | -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)|' |
| 419 | |
646 | |
| 420 | emake || die "compile problem" |
647 | emake || die "emake failed" |
|
|
648 | |
|
|
649 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_compile |
| 421 | } |
650 | } |
| 422 | |
651 | |
| 423 | mysql_src_install() { |
652 | mysql_src_install() { |
| 424 | |
653 | # Make sure the vars are correctly initialized |
| 425 | mysql_init_vars |
654 | mysql_init_vars |
|
|
655 | |
| 426 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
656 | emake install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "emake install failed" |
|
|
657 | |
|
|
658 | mysql_version_is_at_least "5.1.12" && use pbxt && pbxt_src_install |
| 427 | |
659 | |
| 428 | insinto "${MY_INCLUDEDIR}" |
660 | insinto "${MY_INCLUDEDIR}" |
| 429 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
661 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 430 | |
662 | |
| 431 | # convenience links |
663 | # Convenience links |
| 432 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
664 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 433 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
665 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 434 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
666 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 435 | |
667 | |
| 436 | # various junk (my-*.cnf moved elsewhere) |
668 | # Various junk (my-*.cnf moved elsewhere) |
| 437 | rm -rf "${D}/usr/share/info" |
669 | rm -Rf "${D}/usr/share/info" |
| 438 | for removeme in "mysql-log-rotate" mysql.server* \ |
670 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 439 | binary-configure* my-*.cnf mi_test_all* |
671 | binary-configure* my-*.cnf mi_test_all* |
| 440 | do |
672 | do |
| 441 | rm -f ${D}/usr/share/mysql/${removeme} |
673 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 442 | done |
674 | done |
| 443 | |
675 | |
| 444 | # clean up stuff for a minimal build |
676 | # Clean up stuff for a minimal build |
| 445 | # this is anything server-specific |
|
|
| 446 | if useq "minimal" ; then |
677 | if use minimal ; then |
| 447 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
678 | rm -Rf "${D}${MY_SHAREDSTATEDIR}"/{mysql-test,sql-bench} |
| 448 | 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} |
| 449 | rm -f "${D}/usr/sbin/mysqld" |
680 | rm -f "${D}/usr/sbin/mysqld" |
| 450 | 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 |
| 451 | fi |
682 | fi |
| 452 | |
683 | |
| 453 | # config stuff |
684 | # Configuration stuff |
|
|
685 | if mysql_version_is_at_least "4.1" ; then |
|
|
686 | mysql_mycnf_version="4.1" |
|
|
687 | else |
|
|
688 | mysql_mycnf_version="4.0" |
|
|
689 | fi |
| 454 | insinto "${MY_SYSCONFDIR}" |
690 | insinto "${MY_SYSCONFDIR}" |
| 455 | doins scripts/mysqlaccess.conf |
691 | doins scripts/mysqlaccess.conf |
| 456 | sed -e "s!@MY_SUFFIX@!!g" \ |
|
|
| 457 | -e "s!@DATADIR@!${DATADIR}!g" \ |
692 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 458 | "${FILESDIR}/my.cnf-4.1-r1" \ |
693 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 459 | > "${TMPDIR}/my.cnf.ok" |
694 | > "${TMPDIR}/my.cnf.ok" |
|
|
695 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
|
|
696 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
|
|
697 | fi |
| 460 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
698 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 461 | |
699 | |
| 462 | insinto "/etc/conf.d" |
|
|
| 463 | newins "${FILESDIR}/mysql.conf.d-r1" "mysql" |
|
|
| 464 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 465 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
|
|
| 466 | |
|
|
| 467 | # minimal builds don't have the server |
700 | # Minimal builds don't have the MySQL server |
| 468 | if ! useq "minimal" ; then |
701 | if ! use minimal ; then |
| 469 | exeinto /etc/init.d |
702 | # Empty directories ... |
| 470 | newexe "${FILESDIR}/mysql.rc6-r3" "mysql" |
|
|
| 471 | |
|
|
| 472 | mysql_version_is_at_least "5.00.11.00" \ |
|
|
| 473 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
| 474 | insinto /etc/logrotate.d |
|
|
| 475 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
|
|
| 476 | |
|
|
| 477 | #empty dirs... |
|
|
| 478 | diropts "-m0750" |
703 | diropts "-m0750" |
| 479 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
704 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 480 | dodir "${DATADIR}" |
705 | dodir "${MY_DATADIR}" |
| 481 | keepdir "${DATADIR}" |
706 | keepdir "${MY_DATADIR}" |
| 482 | chown -R mysql:mysql "${D}/${DATADIR}" |
707 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 483 | fi |
708 | fi |
| 484 | |
709 | |
| 485 | diropts "-m0755" |
710 | diropts "-m0755" |
| 486 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
711 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 487 | dodir "${folder}" |
712 | dodir "${folder}" |
| 488 | keepdir "${folder}" |
713 | keepdir "${folder}" |
| 489 | chown -R mysql:mysql "${D}/${folder}" |
714 | chown -R mysql:mysql "${D}/${folder}" |
| 490 | done |
715 | done |
| 491 | fi |
716 | fi |
| 492 | |
717 | |
| 493 | # docs |
718 | # Docs |
| 494 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
719 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
720 | doinfo "${S}"/Docs/mysql.info |
|
|
721 | |
| 495 | # minimal builds don't have the server |
722 | # Minimal builds don't have the MySQL server |
| 496 | 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 |
| 497 | docinto "support-files" |
762 | docinto "support-files" |
| 498 | for script in \ |
763 | for script in \ |
| 499 | support-files/my-*.cnf \ |
764 | support-files/my-*.cnf \ |
| 500 | support-files/magic \ |
765 | support-files/magic \ |
| 501 | support-files/ndb-config-2-node.ini |
766 | support-files/ndb-config-2-node.ini |
| … | |
… | |
| 505 | |
770 | |
| 506 | docinto "scripts" |
771 | docinto "scripts" |
| 507 | for script in scripts/mysql* ; do |
772 | for script in scripts/mysql* ; do |
| 508 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
773 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 509 | done |
774 | done |
| 510 | fi |
|
|
| 511 | |
775 | |
| 512 | ROOT="${D}" mysql_lib_symlinks |
776 | einfo |
| 513 | } |
777 | elog "You might want to run:" |
|
|
778 | elog "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
779 | elog "if this is a new install." |
|
|
780 | einfo |
|
|
781 | fi |
| 514 | |
782 | |
| 515 | mysql_pkg_preinst() { |
783 | if mysql_version_is_at_least "5.1.12" && use pbxt ; then |
|
|
784 | # TODO: explain it better |
|
|
785 | elog " mysql> INSTALL PLUGIN pbxt SONAME 'libpbxt.so';" |
|
|
786 | elog " mysql> CREATE TABLE t1 (c1 int, c2 text) ENGINE=pbxt;" |
|
|
787 | elog "if, after that, you cannot start the MySQL server," |
|
|
788 | elog "remove the ${MY_DATADIR}/mysql/plugin.* files, then" |
|
|
789 | elog "use the MySQL upgrade script to restore the table" |
|
|
790 | elog "or execute the following SQL command:" |
|
|
791 | elog " CREATE TABLE IF NOT EXISTS plugin (" |
|
|
792 | elog " name char(64) binary DEFAULT '' NOT NULL," |
|
|
793 | elog " dl char(128) DEFAULT '' NOT NULL," |
|
|
794 | elog " PRIMARY KEY (name)" |
|
|
795 | elog " ) CHARACTER SET utf8 COLLATE utf8_bin;" |
|
|
796 | fi |
| 516 | |
797 | |
| 517 | enewgroup mysql 60 || die "problem adding group mysql" |
798 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 518 | enewuser mysql 60 -1 /dev/null mysql \ |
799 | && use berkdb \ |
| 519 | || die "problem adding user mysql" |
800 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 520 | } |
801 | } |
| 521 | |
802 | |
| 522 | mysql_pkg_postinst() { |
803 | mysql_pkg_config() { |
| 523 | |
804 | # Make sure the vars are correctly initialized |
| 524 | mysql_init_vars |
805 | mysql_init_vars |
| 525 | |
806 | |
| 526 | # mind at FEATURES=collision-protect before to remove this |
|
|
| 527 | [ -d "${ROOT}/var/log/mysql" ] \ |
|
|
| 528 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
|
|
| 529 | |
|
|
| 530 | #secure the logfiles... does this bother anybody? |
|
|
| 531 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
|
|
| 532 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 533 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
|
|
| 534 | |
|
|
| 535 | if ! useq "minimal" ; then |
|
|
| 536 | # your friendly public service announcement... |
|
|
| 537 | einfo |
|
|
| 538 | einfo "You might want to run:" |
|
|
| 539 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
|
|
| 540 | einfo "if this is a new install." |
|
|
| 541 | einfo |
|
|
| 542 | mysql_version_is_at_least "5.01.00.00" \ |
|
|
| 543 | || einfo "InnoDB is not optional as of MySQL-4.0.24, at the request of upstream." |
|
|
| 544 | fi |
|
|
| 545 | } |
|
|
| 546 | |
|
|
| 547 | mysql_pkg_config() { |
|
|
| 548 | mysql_init_vars |
|
|
| 549 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
807 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 550 | |
808 | |
| 551 | if built_with_use dev-db/mysql minimal; then |
809 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 552 | die "Minimal builds do NOT include the MySQL server" |
810 | die "Minimal builds do NOT include the MySQL server" |
| 553 | fi |
811 | fi |
| 554 | |
812 | |
| 555 | local pwd1="a" |
813 | local pwd1="a" |
| 556 | local pwd2="b" |
814 | local pwd2="b" |
| 557 | local maxtry=5 |
815 | local maxtry=5 |
| 558 | |
816 | |
| 559 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
817 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 560 | ewarn "You have already a MySQL database in place." |
818 | ewarn "You have already a MySQL database in place." |
| 561 | ewarn "(${ROOT}/${DATADIR}/*)" |
819 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 562 | 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." |
| 563 | die "MySQL database already exists!" |
821 | die "MySQL database already exists!" |
| 564 | fi |
822 | fi |
| 565 | |
823 | |
| 566 | einfo "Creating the mysql database and setting proper" |
824 | einfo "Creating the mysql database and setting proper" |
| 567 | einfo "permissions on it..." |
825 | einfo "permissions on it ..." |
| 568 | |
826 | |
| 569 | einfo "Insert a password for the mysql 'root' user" |
827 | einfo "Insert a password for the mysql 'root' user" |
| 570 | ewarn "Avoid [\"'\\_%] characters in the password" |
828 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 571 | |
|
|
| 572 | read -rsp " >" pwd1 ; echo |
829 | read -rsp " >" pwd1 ; echo |
|
|
830 | |
| 573 | einfo "Check the password" |
831 | einfo "Retype the password" |
| 574 | read -rsp " >" pwd2 ; echo |
832 | read -rsp " >" pwd2 ; echo |
| 575 | |
833 | |
| 576 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
834 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 577 | die "Passwords are not the same" |
835 | die "Passwords are not the same" |
| 578 | fi |
836 | fi |
| 579 | |
837 | |
| 580 | local options="" |
838 | local options="" |
| 581 | local sqltmp="$(emktemp)" |
839 | local sqltmp="$(emktemp)" |
| 582 | |
840 | |
| 583 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
841 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
| 584 | [[ -r "${help_tables}" ]] \ |
842 | [[ -r "${help_tables}" ]] \ |
| 585 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
843 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 586 | || touch "${TMPDIR}/fill_help_tables.sql" |
844 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 587 | help_tables="${TMPDIR}/fill_help_tables.sql" |
845 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 588 | |
846 | |
| 589 | pushd "${TMPDIR}" &>/dev/null |
847 | pushd "${TMPDIR}" &>/dev/null |
| 590 | ${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 |
| 591 | popd &>/dev/null |
853 | popd &>/dev/null |
| 592 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] \ |
854 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 593 | || die "MySQL databases not installed" |
855 | || die "MySQL databases not installed" |
| 594 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
856 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 595 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
857 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null |
| 596 | |
858 | |
| 597 | if mysql_version_is_at_least "4.01.03.00" ; then |
859 | if mysql_version_is_at_least "4.1.3" ; then |
| 598 | options="--skip-ndbcluster" |
860 | options="--skip-ndbcluster" |
| 599 | |
861 | |
| 600 | # Filling timezones, see |
862 | # Filling timezones, see |
| 601 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
863 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 602 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql ${ROOT}/usr/share/zoneinfo \ |
864 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 603 | > "${sqltmp}" 2>/dev/null |
|
|
| 604 | |
865 | |
| 605 | if [[ -r "${help_tables}" ]] ; then |
866 | if [[ -r "${help_tables}" ]] ; then |
| 606 | cat "${help_tables}" >> "${sqltmp}" |
867 | cat "${help_tables}" >> "${sqltmp}" |
| 607 | fi |
868 | fi |
| 608 | fi |
869 | fi |
| 609 | |
870 | |
| 610 | local socket=${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock |
871 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 611 | local pidfile=${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid |
872 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 612 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
873 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 613 | ${options} \ |
874 | ${options} \ |
| 614 | --user=mysql \ |
875 | --user=mysql \ |
| 615 | --skip-grant-tables \ |
876 | --skip-grant-tables \ |
| 616 | --basedir=${ROOT}/usr \ |
877 | --basedir=${ROOT}/usr \ |
| 617 | --datadir=${ROOT}/${DATADIR} \ |
878 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 618 | --skip-innodb \ |
879 | --skip-innodb \ |
| 619 | --skip-bdb \ |
880 | --skip-bdb \ |
| 620 | --skip-networking \ |
881 | --skip-networking \ |
| 621 | --max_allowed_packet=8M \ |
882 | --max_allowed_packet=8M \ |
| 622 | --net_buffer_length=16K \ |
883 | --net_buffer_length=16K \ |
| 623 | --socket=${socket} \ |
884 | --socket=${socket} \ |
| 624 | --pid-file=${pidfile}" |
885 | --pid-file=${pidfile}" |
| 625 | $mysqld & |
886 | ${mysqld} & |
| 626 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
887 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 627 | maxtry=$(($maxtry-1)) |
888 | maxtry=$((${maxtry}-1)) |
| 628 | echo -n "." |
889 | echo -n "." |
| 629 | sleep 1 |
890 | sleep 1 |
| 630 | done |
891 | done |
| 631 | |
892 | |
| 632 | # do this from memory we don't want clear text password in temp files |
893 | # Do this from memory, as we don't want clear text passwords in temp files |
| 633 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
894 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
| 634 | ${ROOT}/usr/bin/mysql \ |
895 | "${ROOT}/usr/bin/mysql" \ |
| 635 | --socket=${socket} \ |
896 | --socket=${socket} \ |
| 636 | -hlocalhost \ |
897 | -hlocalhost \ |
| 637 | -e "${sql}" |
898 | -e "${sql}" |
| 638 | |
899 | |
| 639 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
900 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 640 | |
901 | |
| 641 | ${ROOT}/usr/bin/mysql \ |
902 | "${ROOT}/usr/bin/mysql" \ |
| 642 | --socket=${socket} \ |
903 | --socket=${socket} \ |
| 643 | -hlocalhost \ |
904 | -hlocalhost \ |
| 644 | -uroot \ |
905 | -uroot \ |
| 645 | -p"${pwd1}" \ |
906 | -p"${pwd1}" \ |
| 646 | mysql < "${sqltmp}" |
907 | mysql < "${sqltmp}" |
| 647 | |
908 | |
| 648 | # server stop and cleanup |
909 | # Stop the server and cleanup |
| 649 | kill $(< "${pidfile}" ) |
910 | kill $(< "${pidfile}" ) |
| 650 | rm "${sqltmp}" |
911 | rm -f "${sqltmp}" |
| 651 | einfo "stopping the server," |
912 | einfo "Stopping the server ..." |
| 652 | wait %1 |
913 | wait %1 |
| 653 | einfo "done" |
914 | einfo "Done" |
| 654 | } |
915 | } |
| 655 | |
916 | |
| 656 | mysql_pkg_postrm() { |
917 | mysql_pkg_postrm() { |
| 657 | mysql_lib_symlinks |
918 | : # mysql_lib_symlinks "${D}" |
| 658 | } |
919 | } |