| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2006 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.38 2006/10/20 13:14:21 chtekk Exp $ |
| 4 | # $ID: $ |
|
|
| 5 | |
4 | |
| 6 | # Author: Francesco Riosa <vivo at gentoo.org> |
5 | # Author: Francesco Riosa <vivo@gentoo.org> |
| 7 | # Maintainer: Luca Longinotti <chtekk at gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
| 8 | |
7 | |
|
|
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too |
|
|
9 | # Note that MYSQL_VERSION_ID must be empty !!! |
|
|
10 | |
| 9 | # MYSQL_VERSION_ID will be |
11 | # MYSQL_VERSION_ID will be: |
| 10 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo magic number, all [0..99] |
12 | # major * 10e6 + minor * 10e4 + micro * 10e2 + gentoo revision number, all [0..99] |
| 11 | # this is an important piece, becouse from this variable depends many of the |
13 | # This is an important part, because many of the choices the MySQL ebuild will do |
| 12 | # choices the ebuild will do. |
14 | # depend on this variable. |
| 13 | # in particular the code below work only with PVR like "5.0.18-r3" |
15 | # In particular, the code below transforms a $PVR like "5.0.18-r3" in "5001803" |
| 14 | # the result with the previous PVR is "5001803" |
16 | |
| 15 | if [[ -z ${MYSQL_VERSION_ID} ]] ; then |
17 | if [[ -z "${MYSQL_VERSION_ID}" ]] ; then |
| 16 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
18 | tpv=( ${PV//[-._]/ } ) ; tpv[3]="${PVR:${#PV}}" ; tpv[3]="${tpv[3]##*-r}" |
| 17 | for vatom in 0 1 2 3; do |
19 | for vatom in 0 1 2 3 ; do |
| 18 | # pad to lenght 2 |
20 | # pad to length 2 |
| 19 | tpv[${vatom}]="00${tpv[${vatom}]}" |
21 | tpv[${vatom}]="00${tpv[${vatom}]}" |
| 20 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
22 | MYSQL_VERSION_ID="${MYSQL_VERSION_ID}${tpv[${vatom}]:0-2}" |
| 21 | done |
23 | done |
| 22 | # strip leading "0" (otherwise it's considered an octal number from bash) |
24 | # strip leading "0" (otherwise it's considered an octal number by BASH) |
| 23 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
25 | MYSQL_VERSION_ID=${MYSQL_VERSION_ID##"0"} |
| 24 | fi |
26 | fi |
| 25 | |
27 | |
| 26 | [[ -z ${MY_EXTRAS_VER} ]] && MY_EXTRAS_VER="20060411" |
|
|
| 27 | |
|
|
| 28 | DEPEND="${DEPEND} |
28 | DEPEND="${DEPEND} |
| 29 | >=sys-libs/readline-4.1 |
29 | >=sys-libs/readline-4.1 |
| 30 | berkdb? ( sys-apps/ed ) |
30 | berkdb? ( sys-apps/ed ) |
| 31 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
31 | ssl? ( >=dev-libs/openssl-0.9.6d ) |
| 32 | userland_GNU? ( sys-process/procps ) |
32 | userland_GNU? ( sys-process/procps ) |
| 33 | >=sys-libs/zlib-1.2.3 |
33 | >=sys-libs/zlib-1.2.3 |
| 34 | >=sys-apps/texinfo-4.7-r1 |
34 | >=sys-apps/texinfo-4.7-r1 |
| 35 | >=sys-apps/sed-4" |
35 | >=sys-apps/sed-4" |
|
|
36 | |
| 36 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
37 | RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-mysql )" |
|
|
38 | |
| 37 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
39 | # dev-perl/DBD-mysql is needed by some scripts installed by MySQL |
| 38 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
40 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 39 | |
41 | |
| 40 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
42 | inherit eutils flag-o-matic gnuconfig autotools mysql_fx |
| 41 | |
43 | |
| 42 | SLOT=0 |
|
|
| 43 | |
|
|
| 44 | # shorten the path because the socket path length must be shorter than 107 chars |
44 | # Shorten the path because the socket path length must be shorter than 107 chars |
| 45 | # and we will run a mysql server during test phase |
45 | # and we will run a mysql server during test phase |
| 46 | S="${WORKDIR}/${PN}" |
46 | S="${WORKDIR}/${PN}" |
| 47 | |
47 | |
|
|
48 | # Define $MY_FIXED_PV for MySQL patchsets |
|
|
49 | MY_FIXED_PV="${PV/_alpha/}" |
|
|
50 | #MY_FIXED_PV="${MY_FIXED_PV/_beta/}" |
|
|
51 | #MY_FIXED_PV="${MY_FIXED_PV/_rc/}" |
|
|
52 | |
|
|
53 | # Define correct SRC_URIs |
|
|
54 | SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}${MYSQL_RERELEASE}.tar.gz" |
|
|
55 | if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then |
|
|
56 | MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" |
|
|
57 | # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball |
|
|
58 | SRC_URI="${SRC_URI} http://gentoo.longitekk.com/${MYSQL_PATCHSET_FILENAME}" |
|
|
59 | fi |
|
|
60 | |
| 48 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" |
61 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 49 | HOMEPAGE="http://www.mysql.com/" |
62 | HOMEPAGE="http://www.mysql.com/" |
| 50 | NEWP="${P/_/-}" |
63 | SLOT="0" |
| 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" |
64 | LICENSE="GPL-2" |
| 54 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
65 | IUSE="big-tables berkdb debug embedded minimal perl selinux srvdir ssl static" |
| 55 | RESTRICT="primaryuri confcache" |
66 | RESTRICT="confcache" |
|
|
67 | |
|
|
68 | mysql_version_is_at_least "4.01.00.00" \ |
|
|
69 | && IUSE="${IUSE} latin1" |
| 56 | |
70 | |
| 57 | mysql_version_is_at_least "4.01.03.00" \ |
71 | mysql_version_is_at_least "4.01.03.00" \ |
| 58 | && IUSE="${IUSE} cluster extraengine" |
72 | && IUSE="${IUSE} cluster extraengine" |
| 59 | |
73 | |
| 60 | mysql_version_is_at_least "5.00.00.00" \ |
74 | mysql_version_is_at_least "5.00.00.00" \ |
| … | |
… | |
| 65 | |
79 | |
| 66 | mysql_version_is_at_least "5.01.00.00" \ |
80 | mysql_version_is_at_least "5.01.00.00" \ |
| 67 | && IUSE="${IUSE} innodb" |
81 | && IUSE="${IUSE} innodb" |
| 68 | |
82 | |
| 69 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
83 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_preinst \ |
| 70 | pkg_postinst pkg_config pkg_postrm |
84 | pkg_postinst pkg_config pkg_postrm |
|
|
85 | |
|
|
86 | # |
|
|
87 | # HELPER FUNCTIONS: |
|
|
88 | # |
| 71 | |
89 | |
| 72 | # void mysql_init_vars() |
90 | # void mysql_init_vars() |
| 73 | # |
91 | # |
| 74 | # initialize global variables |
92 | # Initialize global variables |
| 75 | # 2005-11-19 <vivo at gentoo.org> |
93 | # 2005-11-19 <vivo@gentoo.org> |
|
|
94 | |
| 76 | mysql_init_vars() { |
95 | mysql_init_vars() { |
| 77 | |
|
|
| 78 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR:-"/usr/share/mysql"} |
96 | MY_SHAREDSTATEDIR=${MY_SHAREDSTATEDIR="/usr/share/mysql"} |
| 79 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
97 | MY_SYSCONFDIR=${MY_SYSCONFDIR="/etc/mysql"} |
| 80 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
98 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 81 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
99 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 82 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
100 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 83 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
101 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 84 | |
102 | |
| 85 | if [ -z "${DATADIR}" ]; then |
103 | if [[ -z "${DATADIR}" ]] ; then |
| 86 | DATADIR="" |
104 | DATADIR="" |
| 87 | if [ -f "${MY_SYSCONFDIR}/my.cnf" ] ; then |
105 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 88 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
106 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 89 | | sed -ne '/datadir/s|^--datadir=||p' \ |
107 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 90 | | tail -n1` |
108 | | tail -n1` |
| 91 | if [ -z "${DATADIR}" ]; then |
109 | if [[ -z "${DATADIR}" ]] ; then |
| 92 | if useq "srvdir" ; then |
110 | if useq "srvdir" ; then |
| 93 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
111 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
| 94 | else |
112 | else |
| 95 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
113 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 96 | | sed -e 's/.*=\s*//'` |
114 | | sed -e 's/.*=\s*//'` |
| 97 | fi |
115 | fi |
| 98 | fi |
116 | fi |
| 99 | fi |
117 | fi |
| 100 | if [ -z "${DATADIR}" ]; then |
118 | if [[ -z "${DATADIR}" ]] ; then |
| 101 | if useq "srvdir" ; then |
119 | if useq "srvdir" ; then |
| 102 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
120 | DATADIR="${ROOT}/srv/localhost/mysql/datadir" |
| 103 | else |
121 | else |
| 104 | DATADIR="${MY_LOCALSTATEDIR}" |
122 | DATADIR="${MY_LOCALSTATEDIR}" |
| 105 | fi |
123 | fi |
| 106 | einfo "Using default DATADIR" |
124 | einfo "Using default DATADIR" |
| 107 | fi |
125 | fi |
| 108 | einfo "MySQL DATADIR is ${DATADIR}" |
126 | einfo "MySQL DATADIR is ${DATADIR}" |
| 109 | |
127 | |
| 110 | if [ -z "${PREVIOUS_DATADIR}" ] ; then |
128 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 111 | if [ -a "${DATADIR}" ] ; then |
129 | if [[ -e "${DATADIR}" ]] ; then |
| 112 | ewarn "Previous datadir found, it's YOUR job to change" |
130 | ewarn "Previous datadir found, it's YOUR job to change" |
| 113 | ewarn "ownership and have care of it" |
131 | ewarn "ownership and take care of it" |
| 114 | PREVIOUS_DATADIR="yes" |
132 | PREVIOUS_DATADIR="yes" |
| 115 | export PREVIOUS_DATADIR |
|
|
| 116 | else |
133 | else |
| 117 | PREVIOUS_DATADIR="no" |
134 | PREVIOUS_DATADIR="no" |
| 118 | export PREVIOUS_DATADIR |
|
|
| 119 | fi |
135 | fi |
|
|
136 | export PREVIOUS_DATADIR |
| 120 | fi |
137 | fi |
| 121 | fi |
138 | fi |
| 122 | |
139 | |
| 123 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
140 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 124 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
141 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 125 | export MY_INCLUDEDIR |
142 | export MY_INCLUDEDIR |
| 126 | export DATADIR |
143 | export DATADIR |
| 127 | } |
144 | } |
| 128 | |
145 | |
| 129 | mysql_pkg_setup() { |
146 | configure_minimal() { |
|
|
147 | # these are things we exclude from a minimal build |
|
|
148 | # note that the server actually does get built and installed |
|
|
149 | # but we then delete it before packaging. |
|
|
150 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
| 130 | |
151 | |
| 131 | enewgroup mysql 60 || die "problem adding group mysql" |
152 | for i in ${minimal_exclude_list}; do |
| 132 | enewuser mysql 60 -1 /dev/null mysql \ |
153 | 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 |
154 | done |
| 201 | |
155 | myconf="${myconf} --with-extra-charsets=none" |
| 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 | } |
156 | } |
| 214 | |
157 | |
| 215 | mysql_src_compile() { |
158 | configure_common() { |
| 216 | |
159 | myconf="${myconf} --enable-local-infile" |
| 217 | mysql_init_vars |
160 | myconf="${myconf} --with-extra-charsets=all" |
| 218 | local myconf |
161 | myconf="${myconf} --with-mysqld-user=mysql" |
| 219 | |
162 | myconf="${myconf} --with-unix-socket-path='/var/run/mysqld/mysqld.sock'" |
|
|
163 | myconf="${myconf} --without-libwrap" |
|
|
164 | |
| 220 | if useq "static" ; then |
165 | if useq "static" ; then |
| 221 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
166 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 222 | myconf="${myconf} --with-client-ldflags=-all-static" |
167 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 223 | myconf="${myconf} --disable-shared" |
168 | myconf="${myconf} --disable-shared" |
| 224 | else |
169 | else |
| 225 | myconf="${myconf} --enable-shared --enable-static" |
170 | myconf="${myconf} --enable-shared --enable-static" |
| 226 | fi |
171 | fi |
| 227 | |
172 | |
| 228 | #myconf="${myconf} `use_with tcpd libwrap`" |
173 | if useq "debug" ; then |
|
|
174 | myconf="${myconf} --with-debug=full" |
|
|
175 | else |
|
|
176 | myconf="${myconf} --without-debug" |
|
|
177 | mysql_version_is_at_least "4.01.03.00" \ |
|
|
178 | && useq "cluster" \ |
|
|
179 | && myconf="${myconf} --without-ndb-debug" |
|
|
180 | fi |
|
|
181 | |
|
|
182 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
|
|
183 | myconf="${myconf} --with-charset=utf8" |
|
|
184 | myconf="${myconf} --with-collation=utf8_general_ci" |
|
|
185 | else |
|
|
186 | myconf="${myconf} --with-charset=latin1" |
|
|
187 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
|
|
188 | fi |
|
|
189 | |
|
|
190 | if useq "embedded" ; then |
|
|
191 | myconf="${myconf} --with-embedded-privilege-control" |
|
|
192 | myconf="${myconf} --with-embedded-server" |
|
|
193 | else |
|
|
194 | myconf="${myconf} --without-embedded-privilege-control" |
|
|
195 | myconf="${myconf} --without-embedded-server" |
|
|
196 | fi |
|
|
197 | |
|
|
198 | } |
|
|
199 | |
|
|
200 | configure_40_41_50() { |
|
|
201 | myconf="${myconf} $(use_with perl bench)" |
|
|
202 | myconf="${myconf} --enable-assembler" |
|
|
203 | myconf="${myconf} --with-extra-tools" |
|
|
204 | myconf="${myconf} --with-innodb" |
| 229 | myconf="${myconf} --without-libwrap" |
205 | myconf="${myconf} --without-readline" |
|
|
206 | mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" |
| 230 | |
207 | |
| 231 | if useq "ssl" ; then |
208 | if useq "ssl" ; then |
| 232 | # --with-vio is not needed anymore, it's on by default and |
209 | # --with-vio is not needed anymore, it's on by default and |
| 233 | # has been removed from configure |
210 | # has been removed from configure |
| 234 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
211 | 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 |
212 | 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" |
213 | # myconf="${myconf} --with-yassl" |
| 238 | myconf="${myconf} --with-openssl" |
214 | myconf="${myconf} --with-openssl" |
| 239 | else |
215 | else |
| 240 | myconf="${myconf} --with-openssl" |
216 | myconf="${myconf} --with-openssl" |
| 241 | fi |
217 | fi |
| 242 | else |
218 | else |
| 243 | myconf="${myconf} --without-openssl" |
219 | myconf="${myconf} --without-openssl" |
| 244 | fi |
220 | fi |
| 245 | |
221 | |
|
|
222 | # The following fix is due to a bug with bdb on SPARC's. See: |
|
|
223 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
|
|
224 | # It comes down to non-64-bit safety problems. |
|
|
225 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
|
|
226 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
|
|
227 | myconf="${myconf} --without-berkeley-db" |
|
|
228 | else |
|
|
229 | useq "berkdb" && myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
230 | fi |
|
|
231 | |
|
|
232 | if mysql_version_is_at_least "4.01.03.00" ; then |
|
|
233 | myconf="${myconf} --with-geometry" |
|
|
234 | myconf="${myconf} $(use_with cluster ndbcluster)" |
|
|
235 | fi |
|
|
236 | |
|
|
237 | mysql_version_is_at_least "4.01.11.00" \ |
|
|
238 | && myconf="${myconf} $(use_with big-tables)" |
|
|
239 | |
|
|
240 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
|
|
241 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
|
|
242 | myconf="${myconf} --with-archive-storage-engine" |
|
|
243 | |
|
|
244 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
|
|
245 | myconf="${myconf} --with-csv-storage-engine" |
|
|
246 | |
|
|
247 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
|
|
248 | myconf="${myconf} --with-blackhole-storage-engine" |
|
|
249 | |
|
|
250 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
|
|
251 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
|
|
252 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
|
|
253 | if mysql_version_is_at_least "5.00.03.00" ; then |
|
|
254 | einfo "Before using the Federated storage engine, please be sure to read" |
|
|
255 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
|
|
256 | myconf="${myconf} --with-federated-storage-engine" |
|
|
257 | fi |
|
|
258 | fi |
|
|
259 | |
|
|
260 | mysql_version_is_at_least "5.00.18.00" \ |
|
|
261 | && useq "max-idx-128" \ |
|
|
262 | && myconf="${myconf} --with-max-indexes=128" |
|
|
263 | } |
|
|
264 | |
|
|
265 | configure_51() { |
|
|
266 | # TODO : !!!!! readd --withouth-readline |
|
|
267 | # the failure depend upon config/ac-macros/readline.m4 checking into |
|
|
268 | # readline.h instead of history.h |
|
|
269 | myconf="${myconf} $(use_with big-tables)" |
|
|
270 | myconf="${myconf} $(use_with ssl)" |
|
|
271 | myconf="${myconf} --enable-assembler" |
|
|
272 | myconf="${myconf} --with-geometry" |
|
|
273 | myconf="${myconf} --with-readline" |
|
|
274 | myconf="${myconf} --with-row-based-replication" |
|
|
275 | myconf="${myconf} --with-zlib=/usr/$(get_libdir)" |
|
|
276 | myconf="${myconf} --without-pstack" |
|
|
277 | useq "max-idx-128" && myconf="${myconf} --with-max-indexes=128" |
|
|
278 | |
|
|
279 | # 5.1 introduces a new way to manage storage engines (plugins) |
|
|
280 | # like configuration=none |
|
|
281 | local plugins="csv,myisam,myisammrg,heap" |
|
|
282 | if useq "extraengine" ; then |
|
|
283 | # like configuration=max-no-ndb, archive and example removed in 5.1.11 |
|
|
284 | plugins="${plugins},blackhole,federated,ftexample,partition" |
|
|
285 | |
|
|
286 | einfo "before to use federated engine be sure to read" |
|
|
287 | einfo "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html" |
|
|
288 | fi |
|
|
289 | |
|
|
290 | if useq "innodb" ; then |
|
|
291 | plugins="${plugins},innobase" |
|
|
292 | fi |
|
|
293 | |
|
|
294 | # like configuration=max-no-ndb |
|
|
295 | if useq "cluster" ; then |
|
|
296 | plugins="${plugins},ndbcluster" |
|
|
297 | myconf="${myconf} --with-ndb-binlog" |
|
|
298 | fi |
|
|
299 | |
|
|
300 | myconf="${myconf} --with-plugins=${plugins}" |
|
|
301 | } |
|
|
302 | |
|
|
303 | # |
|
|
304 | # EBUILD FUNCTIONS |
|
|
305 | # |
|
|
306 | |
|
|
307 | mysql_pkg_setup() { |
|
|
308 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
309 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
|
|
310 | |
|
|
311 | if mysql_version_is_at_least "5.01.12.00" && useq "innodb" ; then |
|
|
312 | die "innodb now use cmake to build this is a TODO item" |
|
|
313 | fi |
|
|
314 | |
|
|
315 | # Check for USE flag problems in pkg_setup |
|
|
316 | if useq "static" && useq "ssl" ; then |
|
|
317 | eerror "MySQL does not support being built statically with SSL support enabled!" |
|
|
318 | die "MySQL does not support being built statically with SSL support enabled!" |
|
|
319 | fi |
|
|
320 | |
|
|
321 | if ! mysql_version_is_at_least "5.00.00.00" \ |
|
|
322 | && useq "raid" \ |
|
|
323 | && useq "static" ; then |
|
|
324 | eerror "USE flags 'raid' and 'static' conflict, you cannot build MySQL statically" |
|
|
325 | eerror "with RAID support enabled." |
|
|
326 | die "USE flags 'raid' and 'static' conflict!" |
|
|
327 | fi |
|
|
328 | |
|
|
329 | if mysql_version_is_at_least "4.01.03.00" \ |
|
|
330 | && ( useq "cluster" || useq "extraengine" ) \ |
|
|
331 | && useq "minimal" ; then |
|
|
332 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
333 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
|
|
334 | fi |
|
|
335 | |
|
|
336 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
|
|
337 | } |
|
|
338 | |
|
|
339 | mysql_src_unpack() { |
|
|
340 | # Initialize the proper variables first |
|
|
341 | mysql_init_vars |
|
|
342 | |
|
|
343 | unpack ${A} |
|
|
344 | |
|
|
345 | mv -f "${WORKDIR}/${P/_/-}${MYSQL_RERELEASE}" "${S}" |
|
|
346 | cd "${S}" |
|
|
347 | |
|
|
348 | # Apply the patches for this MySQL version |
|
|
349 | if [[ -d "${WORKDIR}/${MY_FIXED_PV}" ]] ; then |
|
|
350 | EPATCH_SOURCE="${WORKDIR}/${MY_FIXED_PV}" EPATCH_SUFFIX="patch" epatch |
|
|
351 | fi |
|
|
352 | |
|
|
353 | # Additional checks, remove bundled zlib |
|
|
354 | rm -f "${S}/zlib/"*.[ch] |
|
|
355 | sed -i -e "s/zlib\/Makefile dnl/dnl zlib\/Makefile/" "${S}/configure.in" |
|
|
356 | rm -f "scripts/mysqlbug" |
|
|
357 | |
|
|
358 | # Make charsets install in the right place |
|
|
359 | find . -name 'Makefile.am' \ |
|
|
360 | -exec sed --in-place -e 's!$(pkgdatadir)!'${MY_SHAREDSTATEDIR}'!g' {} \; |
|
|
361 | |
|
|
362 | # Manage mysqlmanager |
|
|
363 | mysql_version_is_at_least "5.00.15.00" \ |
|
|
364 | && sed -i -e "s!@GENTOO_EXT@!${MY_SUFFIX}!g" \ |
|
|
365 | -e "s!@GENTOO_SOCK_PATH@!var/run/mysqld!g" \ |
|
|
366 | "${S}/server-tools/instance-manager/Makefile.am" |
|
|
367 | |
|
|
368 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
369 | # Remove what needs to be recreated, so we're sure it's actually done |
|
|
370 | find . -name Makefile \ |
|
|
371 | -o -name Makefile.in \ |
|
|
372 | -o -name configure \ |
|
|
373 | -exec rm -f {} \; |
|
|
374 | rm -f "ltmain.sh" |
|
|
375 | rm -f "scripts/mysqlbug" |
|
|
376 | fi |
|
|
377 | |
|
|
378 | local rebuilddirlist bdbdir d |
|
|
379 | |
|
|
380 | if mysql_version_is_at_least "5.01.00.00" ; then |
|
|
381 | rebuilddirlist=". storage/innobase" |
|
|
382 | bdbdir='storage/bdb/dist' |
|
|
383 | else |
|
|
384 | rebuilddirlist=". innobase" |
|
|
385 | bdbdir='bdb/dist' |
|
|
386 | fi |
|
|
387 | |
|
|
388 | for d in ${rebuilddirlist} ; do |
|
|
389 | einfo "Reconfiguring dir '${d}'" |
|
|
390 | pushd "${d}" &>/dev/null |
|
|
391 | AT_GNUCONF_UPDATE="yes" eautoreconf |
|
|
392 | popd &>/dev/null |
|
|
393 | done |
|
|
394 | |
|
|
395 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
|
|
396 | if useq "berkdb" \ |
|
|
397 | && ! mysql_check_version_range "4.00.00.00 to 4.00.99.99" \ |
|
|
398 | && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
|
|
399 | [[ -w "${bdbdir}/ltmain.sh" ]] && cp -f "ltmain.sh" "${bdbdir}/ltmain.sh" |
|
|
400 | pushd "${bdbdir}" \ |
|
|
401 | && sh s_all \ |
|
|
402 | || die "Failed bdb reconfigure" \ |
|
|
403 | &>/dev/null |
|
|
404 | popd &>/dev/null |
|
|
405 | fi |
|
|
406 | } |
|
|
407 | |
|
|
408 | mysql_src_compile() { |
|
|
409 | # Make sure the vars are correctly initialized |
|
|
410 | mysql_init_vars |
|
|
411 | |
|
|
412 | local myconf |
|
|
413 | |
|
|
414 | if useq "static" ; then |
|
|
415 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
|
|
416 | myconf="${myconf} --with-client-ldflags=-all-static" |
|
|
417 | myconf="${myconf} --disable-shared" |
|
|
418 | else |
|
|
419 | myconf="${myconf} --enable-shared --enable-static" |
|
|
420 | fi |
|
|
421 | |
|
|
422 | myconf="${myconf} --without-libwrap" |
|
|
423 | |
|
|
424 | if useq "ssl" ; then |
|
|
425 | # --with-vio is not needed anymore, it's on by default and |
|
|
426 | # has been removed from configure |
|
|
427 | mysql_version_is_at_least "5.00.04.00" || myconf="${myconf} --with-vio" |
|
|
428 | if mysql_version_is_at_least "5.00.06.00" ; then |
|
|
429 | # yassl-0.96 is still young and breaks with GCC-4.X or amd64 |
|
|
430 | # myconf="${myconf} --with-yassl" |
|
|
431 | myconf="${myconf} --with-openssl" |
|
|
432 | else |
|
|
433 | myconf="${myconf} --with-openssl" |
|
|
434 | fi |
|
|
435 | else |
|
|
436 | myconf="${myconf} --without-openssl" |
|
|
437 | fi |
|
|
438 | |
| 246 | if useq "debug"; then |
439 | if useq "debug" ; then |
| 247 | myconf="${myconf} --with-debug=full" |
440 | myconf="${myconf} --with-debug=full" |
| 248 | else |
441 | else |
| 249 | myconf="${myconf} --without-debug" |
442 | myconf="${myconf} --without-debug" |
|
|
443 | |
| 250 | mysql_version_is_at_least "4.01.03.00" \ |
444 | mysql_version_is_at_least "4.01.03.00" && useq "cluster" \ |
| 251 | && useq "cluster" \ |
|
|
| 252 | && myconf="${myconf} --without-ndb-debug" |
445 | && myconf="${myconf} --without-ndb-debug" |
| 253 | fi |
446 | fi |
| 254 | |
447 | |
| 255 | # these are things we exclude from a minimal build |
448 | # These are things we exclude from a minimal build. |
| 256 | # note that the server actually does get built and installed |
449 | # Note that the server actually does get built and installed, |
| 257 | # but we then delete it before packaging. |
450 | # but we then delete it. |
| 258 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
451 | local minimal_exclude_list="server embedded-server extra-tools innodb bench" |
| 259 | |
452 | |
| 260 | if ! useq "minimal" ; then |
453 | if ! useq "minimal" ; then |
| 261 | myconf="${myconf} --with-server" |
454 | myconf="${myconf} --with-server" |
| 262 | myconf="${myconf} --with-extra-tools" |
455 | myconf="${myconf} --with-extra-tools" |
| 263 | |
456 | |
| 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 |
457 | if ! mysql_version_is_at_least "5.00.00.00" ; then |
|
|
458 | if useq "raid" ; then |
|
|
459 | myconf="${myconf} --with-raid" |
|
|
460 | else |
| 269 | myconf="${myconf} --without-raid" |
461 | myconf="${myconf} --without-raid" |
| 270 | else |
|
|
| 271 | myconf="${myconf} `use_with raid`" |
|
|
| 272 | fi |
462 | fi |
| 273 | fi |
463 | fi |
| 274 | |
464 | |
| 275 | if mysql_version_is_at_least "4.01.00.00" ; then |
465 | if mysql_version_is_at_least "4.01.00.00" && ! useq "latin1" ; then |
| 276 | myconf="${myconf} --with-charset=utf8" |
466 | myconf="${myconf} --with-charset=utf8" |
| 277 | myconf="${myconf} --with-collation=utf8_general_ci" |
467 | myconf="${myconf} --with-collation=utf8_general_ci" |
| 278 | else |
468 | else |
| 279 | myconf="${myconf} --with-charset=latin1" |
469 | myconf="${myconf} --with-charset=latin1" |
| 280 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
470 | myconf="${myconf} --with-collation=latin1_swedish_ci" |
| 281 | fi |
471 | fi |
| 282 | |
472 | |
| 283 | # optional again from 2005-12-05 |
473 | # Optional again with MySQL 5.1 |
| 284 | if mysql_version_is_at_least "5.01.00.00" ; then |
474 | if mysql_version_is_at_least "5.01.00.00" ; then |
| 285 | myconf="${myconf} $(use_with innodb)" |
475 | if useq "innodb" ; then |
| 286 | else |
|
|
| 287 | myconf="${myconf} --with-innodb" |
476 | myconf="${myconf} --with-innodb" |
|
|
477 | else |
|
|
478 | myconf="${myconf} --without-innodb" |
| 288 | fi |
479 | fi |
|
|
480 | fi |
| 289 | |
481 | |
| 290 | # lots of chars |
482 | # Lots of charsets |
| 291 | myconf="${myconf} --with-extra-charsets=all" |
483 | myconf="${myconf} --with-extra-charsets=all" |
| 292 | |
484 | |
| 293 | #The following fix is due to a bug with bdb on sparc's. See: |
485 | # 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 |
486 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 295 | # it comes down to non-64-bit safety problems |
487 | # It comes down to non-64-bit safety problems. |
| 296 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" \ |
488 | if useq "sparc" || useq "alpha" || useq "hppa" || useq "mips" || useq "amd64" ; then |
| 297 | || useq "amd64" || mysql_check_version_range "5.01.00.00 to 5.01.06.99" |
|
|
| 298 | then |
|
|
| 299 | ewarn "bdb berkeley-db disabled due to arch or version" |
489 | ewarn "bdb berkeley-db disabled due to incompatible arch" |
| 300 | myconf="${myconf} --without-berkeley-db" |
490 | myconf="${myconf} --without-berkeley-db" |
| 301 | else |
491 | else |
| 302 | #TODO berkdb in 5.1 need to be worked on |
492 | # TODO: berkdb in MySQL 5.1 needs to be worked on |
| 303 | useq "berkdb" && \ |
|
|
| 304 | ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" \ |
493 | if useq "berkdb" && ! mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
| 305 | && myconf="${myconf} --with-berkeley-db=./bdb" \ |
494 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
495 | else |
| 306 | || myconf="${myconf} --without-berkeley-db" |
496 | myconf="${myconf} --without-berkeley-db" |
|
|
497 | fi |
| 307 | fi |
498 | fi |
| 308 | |
499 | |
| 309 | if mysql_version_is_at_least "4.01.03.00" ; then |
500 | if mysql_version_is_at_least "4.01.03.00" ; then |
| 310 | #myconf="${myconf} $(use_with geometry)" |
|
|
| 311 | myconf="${myconf} --with-geometry" |
501 | myconf="${myconf} --with-geometry" |
|
|
502 | |
|
|
503 | if useq "cluster" ; then |
|
|
504 | myconf="${myconf} --with-ndbcluster" |
|
|
505 | else |
| 312 | myconf="${myconf} $(use_with cluster ndbcluster)" |
506 | myconf="${myconf} --without-ndbcluster" |
| 313 | fi |
507 | fi |
|
|
508 | fi |
| 314 | |
509 | |
| 315 | mysql_version_is_at_least "4.01.11.00" \ |
510 | if useq "big-tables" ; then |
| 316 | && myconf="${myconf} `use_with big-tables`" |
511 | myconf="${myconf} --with-big-tables" |
|
|
512 | else |
|
|
513 | myconf="${myconf} --without-big-tables" |
|
|
514 | fi |
| 317 | |
515 | |
| 318 | mysql_version_is_at_least "5.01.06.00" \ |
516 | mysql_version_is_at_least "5.01.06.00" \ |
| 319 | && myconf="${myconf} --with-ndb-binlog" |
517 | && myconf="${myconf} --with-ndb-binlog" |
| 320 | |
518 | |
| 321 | if useq "embedded" ; then |
519 | if useq "embedded" ; then |
| 322 | #REMIND, need the privilege control enabled ? |
|
|
| 323 | myconf="${myconf} --without-embedded-privilege-control" |
520 | myconf="${myconf} --with-embedded-privilege-control" |
| 324 | myconf="${myconf} --with-embedded-server" |
521 | myconf="${myconf} --with-embedded-server" |
| 325 | else |
522 | else |
| 326 | myconf="${myconf} --without-embedded-privilege-control" |
523 | myconf="${myconf} --without-embedded-privilege-control" |
| 327 | myconf="${myconf} --without-embedded-server" |
524 | myconf="${myconf} --without-embedded-server" |
| 328 | fi |
525 | fi |
| 329 | |
526 | |
| 330 | # benchmarking stuff needs perl |
527 | # Benchmarking stuff needs Perl |
| 331 | if useq "perl" ; then |
528 | if useq "perl" ; then |
| 332 | myconf="${myconf} --with-bench" |
529 | myconf="${myconf} --with-bench" |
| 333 | else |
530 | else |
| 334 | myconf="${myconf} --without-bench" |
531 | myconf="${myconf} --without-bench" |
| 335 | fi |
532 | fi |
| 336 | else |
533 | else |
| 337 | for i in ${minimal_exclude_list}; do |
534 | for i in ${minimal_exclude_list} ; do |
| 338 | myconf="${myconf} --without-${i}" |
535 | myconf="${myconf} --without-${i}" |
| 339 | done |
536 | done |
| 340 | myconf="${myconf} --without-berkeley-db" |
537 | myconf="${myconf} --without-berkeley-db" |
| 341 | myconf="${myconf} --with-extra-charsets=none" |
538 | myconf="${myconf} --with-extra-charsets=none" |
| 342 | fi |
539 | fi |
| 343 | |
540 | |
| 344 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine"; then |
541 | if mysql_version_is_at_least "4.01.03.00" && useq "extraengine" ; then |
| 345 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
542 | # http://dev.mysql.com/doc/mysql/en/archive-storage-engine.html |
| 346 | myconf="${myconf} --with-archive-storage-engine" |
543 | myconf="${myconf} --with-archive-storage-engine" |
|
|
544 | |
| 347 | # http://dev.mysql.com/doc/mysql/en/csv-storage-engine.html |
545 | # 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" |
546 | myconf="${myconf} --with-csv-storage-engine" |
| 351 | |
547 | |
| 352 | mysql_version_is_at_least "4.01.11.00" \ |
548 | # http://dev.mysql.com/doc/mysql/en/blackhole-storage-engine.html |
| 353 | && myconf="${myconf} --with-blackhole-storage-engine" |
549 | myconf="${myconf} --with-blackhole-storage-engine" |
| 354 | |
550 | |
|
|
551 | # http://dev.mysql.com/doc/mysql/en/federated-storage-engine.html |
| 355 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
552 | # http://dev.mysql.com/doc/mysql/en/federated-description.html |
| 356 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
553 | # http://dev.mysql.com/doc/mysql/en/federated-limitations.html |
| 357 | if mysql_version_is_at_least "5.00.03.00" ; then |
554 | if mysql_version_is_at_least "5.00.03.00" ; then |
| 358 | einfo "before to use federated engine be sure to read" |
555 | einfo "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" |
556 | einfo "http://dev.mysql.com/doc/mysql/en/federated-limitations.html" |
| 360 | myconf="${myconf} --with-federated-storage-engine" |
557 | myconf="${myconf} --with-federated-storage-engine" |
|
|
558 | fi |
| 361 | |
559 | |
| 362 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
560 | # http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html |
| 363 | if mysql_version_is_at_least "5.01.00.00" ; then |
561 | if mysql_version_is_at_least "5.01.00.00" ; then |
| 364 | myconf="${myconf} --with-partition" |
562 | myconf="${myconf} --with-partition" |
| 365 | fi |
563 | fi |
| 366 | fi |
|
|
| 367 | |
|
|
| 368 | fi |
564 | fi |
| 369 | |
565 | |
| 370 | mysql_version_is_at_least "5.00.18.00" \ |
566 | mysql_version_is_at_least "5.00.18.00" \ |
| 371 | && useq "max-idx-128" \ |
567 | && useq "max-idx-128" \ |
| 372 | && myconf="${myconf} --with-max-indexes=128" |
568 | && myconf="${myconf} --with-max-indexes=128" |
| 373 | |
569 | |
| 374 | if mysql_version_is_at_least "5.01.05.00" ; then |
570 | mysql_version_is_at_least "5.01.05.00" \ |
| 375 | myconf="${myconf} --with-row-based-replication" |
571 | && myconf="${myconf} --with-row-based-replication" |
| 376 | fi |
|
|
| 377 | |
572 | |
| 378 | #TODO rechek again later, had problem with assembler enabled |
573 | # TODO: Rechek again later, there were problems with assembler enabled |
| 379 | # and some combination of use-flags with 5.1 |
574 | # and some combination of USE flags with MySQL 5.1 |
| 380 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
575 | if mysql_check_version_range "5.01.00.00 to 5.01.08.99" ; then |
| 381 | myconf="${myconf} --disable-assembler" |
576 | myconf="${myconf} --disable-assembler" |
| 382 | else |
577 | else |
| 383 | myconf="${myconf} --enable-assembler" |
578 | myconf="${myconf} --enable-assembler" |
| 384 | fi |
579 | fi |
| 385 | |
580 | |
| 386 | #Bug #114895,Bug #110149 |
581 | # Bug #114895, bug #110149 |
| 387 | filter-flags "-O" "-O[01]" |
582 | filter-flags "-O" "-O[01]" |
|
|
583 | |
| 388 | #glibc-2.3.2_pre fix; bug #16496 |
584 | # glib-2.3.2_pre fix, bug #16496 |
| 389 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
585 | append-flags "-DHAVE_ERRNO_AS_DEFINE=1" |
| 390 | |
586 | |
| 391 | #the compiler flags are as per their "official" spec ;) |
587 | append-flags "-fno-exceptions -fno-strict-aliasing" |
| 392 | #CFLAGS="${CFLAGS/-O?/} -O3" \ |
|
|
| 393 | export CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-exceptions -fno-rtti" |
588 | CXXFLAGS="${CXXFLAGS} -felide-constructors -fno-rtti" |
| 394 | mysql_version_is_at_least "5.00.00.00" \ |
589 | mysql_version_is_at_least "5.00.00.00" \ |
| 395 | && export CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
590 | && CXXFLAGS="${CXXFLAGS} -fno-implicit-templates" |
|
|
591 | export CXXFLAGS="${CXXFLAGS}" |
| 396 | |
592 | |
| 397 | econf \ |
593 | econf \ |
| 398 | --libexecdir="/usr/sbin" \ |
594 | --libexecdir="/usr/sbin" \ |
| 399 | --sysconfdir="${MY_SYSCONFDIR}" \ |
595 | --sysconfdir="${MY_SYSCONFDIR}" \ |
| 400 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
596 | --localstatedir="${MY_LOCALSTATEDIR}" \ |
| … | |
… | |
| 410 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
606 | --with-unix-socket-path="/var/run/mysqld/mysqld.sock" \ |
| 411 | --without-readline \ |
607 | --without-readline \ |
| 412 | --without-docs \ |
608 | --without-docs \ |
| 413 | ${myconf} || die "bad ./configure" |
609 | ${myconf} || die "bad ./configure" |
| 414 | |
610 | |
| 415 | # TODO Move this before autoreconf !!! |
611 | # TODO: Move this before autoreconf !!! |
| 416 | find . -type f -name Makefile -print0 \ |
612 | find . -type f -name Makefile -print0 \ |
| 417 | | xargs -0 -n100 sed -i \ |
613 | | xargs -0 -n100 sed -i \ |
| 418 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
614 | -e 's|^pkglibdir *= *$(libdir)/mysql|pkglibdir = $(libdir)|;s|^pkgincludedir *= *$(includedir)/mysql|pkgincludedir = $(includedir)|' |
| 419 | |
615 | |
| 420 | emake || die "compile problem" |
616 | emake || die "compile problem" |
| 421 | } |
617 | } |
| 422 | |
618 | |
| 423 | mysql_src_install() { |
619 | mysql_src_install() { |
| 424 | |
620 | # Make sure the vars are correctly initialized |
| 425 | mysql_init_vars |
621 | mysql_init_vars |
|
|
622 | |
| 426 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die |
623 | make install DESTDIR="${D}" benchdir_root="${MY_SHAREDSTATEDIR}" || die "make install error" |
| 427 | |
624 | |
| 428 | insinto "${MY_INCLUDEDIR}" |
625 | insinto "${MY_INCLUDEDIR}" |
| 429 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
626 | doins "${MY_INCLUDEDIR}"/my_{config,dir}.h |
| 430 | |
627 | |
| 431 | # convenience links |
628 | # Convenience links |
| 432 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
629 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlanalyze" |
| 433 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
630 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqlrepair" |
| 434 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
631 | dosym "/usr/bin/mysqlcheck" "/usr/bin/mysqloptimize" |
| 435 | |
632 | |
| 436 | # various junk (my-*.cnf moved elsewhere) |
633 | # Various junk (my-*.cnf moved elsewhere) |
| 437 | rm -rf "${D}/usr/share/info" |
634 | rm -Rf "${D}/usr/share/info" |
| 438 | for removeme in "mysql-log-rotate" mysql.server* \ |
635 | for removeme in "mysql-log-rotate" mysql.server* \ |
| 439 | binary-configure* my-*.cnf mi_test_all* |
636 | binary-configure* my-*.cnf mi_test_all* |
| 440 | do |
637 | do |
| 441 | rm -f ${D}/usr/share/mysql/${removeme} |
638 | rm -f "${D}"/usr/share/mysql/${removeme} |
| 442 | done |
639 | done |
| 443 | |
640 | |
| 444 | # clean up stuff for a minimal build |
641 | # Clean up stuff for a minimal build |
| 445 | # this is anything server-specific |
|
|
| 446 | if useq "minimal" ; then |
642 | if useq "minimal" ; then |
| 447 | rm -rf ${D}${MY_SHAREDSTATEDIR}/{mysql-test,sql-bench} |
643 | 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} |
644 | 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" |
645 | 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 |
646 | rm -f "${D}${MY_LIBDIR}"/lib{heap,merge,nisam,my{sys,strings,sqld,isammrg,isam},vio,dbug}.a |
| 451 | fi |
647 | fi |
| 452 | |
648 | |
| 453 | # config stuff |
649 | # Configuration stuff |
|
|
650 | if mysql_version_is_at_least "4.01.00.00" ; then |
|
|
651 | mysql_mycnf_version="4.1" |
|
|
652 | else |
|
|
653 | mysql_mycnf_version="4.0" |
|
|
654 | fi |
| 454 | insinto "${MY_SYSCONFDIR}" |
655 | insinto "${MY_SYSCONFDIR}" |
| 455 | doins scripts/mysqlaccess.conf |
656 | doins "scripts/mysqlaccess.conf" |
| 456 | sed -e "s!@MY_SUFFIX@!!g" \ |
|
|
| 457 | -e "s!@DATADIR@!${DATADIR}!g" \ |
657 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
| 458 | "${FILESDIR}/my.cnf-4.1-r1" \ |
658 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 459 | > "${TMPDIR}/my.cnf.ok" |
659 | > "${TMPDIR}/my.cnf.ok" |
|
|
660 | if mysql_version_is_at_least "4.01.00.00" && useq "latin1" ; then |
|
|
661 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
|
|
662 | fi |
| 460 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
663 | newins "${TMPDIR}/my.cnf.ok" my.cnf |
| 461 | |
664 | |
| 462 | insinto "/etc/conf.d" |
665 | insinto "/etc/conf.d" |
| 463 | newins "${FILESDIR}/mysql.conf.d-r1" "mysql" |
666 | newins "${FILESDIR}/mysql.conf.d" "mysql" |
| 464 | mysql_version_is_at_least "5.00.11.00" \ |
667 | mysql_version_is_at_least "5.00.11.00" \ |
| 465 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
668 | && newins "${FILESDIR}/mysqlmanager.conf.d" "mysqlmanager" |
| 466 | |
669 | |
| 467 | # minimal builds don't have the server |
670 | # Minimal builds don't have the MySQL server |
| 468 | if ! useq "minimal" ; then |
671 | if ! useq "minimal" ; then |
| 469 | exeinto /etc/init.d |
672 | exeinto "/etc/init.d" |
| 470 | newexe "${FILESDIR}/mysql.rc6-r3" "mysql" |
673 | newexe "${FILESDIR}/mysql.rc6" "mysql" |
| 471 | |
|
|
| 472 | mysql_version_is_at_least "5.00.11.00" \ |
674 | mysql_version_is_at_least "5.00.11.00" \ |
| 473 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
675 | && newexe "${FILESDIR}/mysqlmanager.rc6" "mysqlmanager" |
|
|
676 | |
| 474 | insinto /etc/logrotate.d |
677 | insinto "/etc/logrotate.d" |
| 475 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
678 | newins "${FILESDIR}/logrotate.mysql" "mysql" |
| 476 | |
679 | |
| 477 | #empty dirs... |
680 | # Empty directories ... |
| 478 | diropts "-m0750" |
681 | diropts "-m0750" |
| 479 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
682 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 480 | dodir "${DATADIR}" |
683 | dodir "${DATADIR}" |
| 481 | keepdir "${DATADIR}" |
684 | keepdir "${DATADIR}" |
| 482 | chown -R mysql:mysql "${D}/${DATADIR}" |
685 | chown -R mysql:mysql "${D}/${DATADIR}" |
| … | |
… | |
| 488 | keepdir "${folder}" |
691 | keepdir "${folder}" |
| 489 | chown -R mysql:mysql "${D}/${folder}" |
692 | chown -R mysql:mysql "${D}/${folder}" |
| 490 | done |
693 | done |
| 491 | fi |
694 | fi |
| 492 | |
695 | |
| 493 | # docs |
696 | # Docs |
| 494 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
697 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
698 | |
| 495 | # minimal builds don't have the server |
699 | # Minimal builds don't have the MySQL server |
| 496 | if ! useq "minimal" ; then |
700 | if ! useq "minimal" ; then |
| 497 | docinto "support-files" |
701 | docinto "support-files" |
| 498 | for script in \ |
702 | for script in \ |
| 499 | support-files/my-*.cnf \ |
703 | support-files/my-*.cnf \ |
| 500 | support-files/magic \ |
704 | support-files/magic \ |
| … | |
… | |
| 511 | |
715 | |
| 512 | ROOT="${D}" mysql_lib_symlinks |
716 | ROOT="${D}" mysql_lib_symlinks |
| 513 | } |
717 | } |
| 514 | |
718 | |
| 515 | mysql_pkg_preinst() { |
719 | mysql_pkg_preinst() { |
| 516 | |
|
|
| 517 | enewgroup mysql 60 || die "problem adding group mysql" |
720 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
| 518 | enewuser mysql 60 -1 /dev/null mysql \ |
721 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 519 | || die "problem adding user mysql" |
|
|
| 520 | } |
722 | } |
| 521 | |
723 | |
| 522 | mysql_pkg_postinst() { |
724 | mysql_pkg_postinst() { |
| 523 | |
725 | # Make sure the vars are correctly initialized |
| 524 | mysql_init_vars |
726 | mysql_init_vars |
| 525 | |
727 | |
| 526 | # mind at FEATURES=collision-protect before to remove this |
728 | # Check FEATURES="collision-protect" before removing this |
| 527 | [ -d "${ROOT}/var/log/mysql" ] \ |
729 | [[ -d "${ROOT}/var/log/mysql" ]] \ |
| 528 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
730 | || install -d -m0750 -o mysql -g mysql "${ROOT}${MY_LOGDIR}" |
| 529 | |
731 | |
| 530 | #secure the logfiles... does this bother anybody? |
732 | # Secure the logfiles |
| 531 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
733 | touch "${ROOT}${MY_LOGDIR}"/mysql.{log,err} |
| 532 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
734 | chown mysql:mysql "${ROOT}${MY_LOGDIR}"/mysql* |
| 533 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
735 | chmod 0660 "${ROOT}${MY_LOGDIR}"/mysql* |
| 534 | |
736 | |
| 535 | if ! useq "minimal" ; then |
737 | if ! useq "minimal" ; then |
| 536 | # your friendly public service announcement... |
738 | # Your friendly public service announcement ... |
| 537 | einfo |
739 | einfo |
| 538 | einfo "You might want to run:" |
740 | einfo "You might want to run:" |
| 539 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
741 | einfo "\"emerge --config =${CATEGORY}/${PF}\"" |
| 540 | einfo "if this is a new install." |
742 | einfo "if this is a new install." |
| 541 | einfo |
743 | einfo |
| 542 | mysql_version_is_at_least "5.01.00.00" \ |
744 | 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." |
745 | || einfo "InnoDB is *not* optional as of MySQL-4.0.24, at the request of upstream." |
| 544 | fi |
746 | fi |
|
|
747 | useq "berkdb" && ewarn "Berkley DB support is deprecated and will be removed in future versions" |
| 545 | } |
748 | } |
| 546 | |
749 | |
| 547 | mysql_pkg_config() { |
750 | mysql_pkg_config() { |
|
|
751 | # Make sure the vars are correctly initialized |
| 548 | mysql_init_vars |
752 | mysql_init_vars |
|
|
753 | |
| 549 | [[ -z "${DATADIR}" ]] && die "sorry, unable to find DATADIR" |
754 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
| 550 | |
755 | |
| 551 | if built_with_use dev-db/mysql minimal; then |
756 | if built_with_use dev-db/mysql minimal ; then |
| 552 | die "Minimal builds do NOT include the MySQL server" |
757 | die "Minimal builds do NOT include the MySQL server" |
| 553 | fi |
758 | fi |
| 554 | |
759 | |
| 555 | local pwd1="a" |
760 | local pwd1="a" |
| 556 | local pwd2="b" |
761 | local pwd2="b" |
| … | |
… | |
| 562 | ewarn "Please rename or delete it if you wish to replace it." |
767 | ewarn "Please rename or delete it if you wish to replace it." |
| 563 | die "MySQL database already exists!" |
768 | die "MySQL database already exists!" |
| 564 | fi |
769 | fi |
| 565 | |
770 | |
| 566 | einfo "Creating the mysql database and setting proper" |
771 | einfo "Creating the mysql database and setting proper" |
| 567 | einfo "permissions on it..." |
772 | einfo "permissions on it ..." |
| 568 | |
773 | |
| 569 | einfo "Insert a password for the mysql 'root' user" |
774 | einfo "Insert a password for the mysql 'root' user" |
| 570 | ewarn "Avoid [\"'\\_%] characters in the password" |
775 | ewarn "Avoid [\"'\\_%] characters in the password" |
| 571 | |
|
|
| 572 | read -rsp " >" pwd1 ; echo |
776 | read -rsp " >" pwd1 ; echo |
|
|
777 | |
| 573 | einfo "Check the password" |
778 | einfo "Retype the password" |
| 574 | read -rsp " >" pwd2 ; echo |
779 | read -rsp " >" pwd2 ; echo |
| 575 | |
780 | |
| 576 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
781 | if [[ "x$pwd1" != "x$pwd2" ]] ; then |
| 577 | die "Passwords are not the same" |
782 | die "Passwords are not the same" |
| 578 | fi |
783 | fi |
| 579 | |
784 | |
| 580 | local options="" |
785 | local options="" |
| 581 | local sqltmp="$(emktemp)" |
786 | local sqltmp="$(emktemp)" |
| 582 | |
787 | |
| 583 | local help_tables="${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
788 | local help_tables="${ROOT}${MY_SHAREDSTATEDIR}/fill_help_tables.sql" |
| 584 | [[ -r "${help_tables}" ]] \ |
789 | [[ -r "${help_tables}" ]] \ |
| 585 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
790 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 586 | || touch "${TMPDIR}/fill_help_tables.sql" |
791 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 587 | help_tables="${TMPDIR}/fill_help_tables.sql" |
792 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 588 | |
793 | |
| 589 | pushd "${TMPDIR}" &>/dev/null |
794 | pushd "${TMPDIR}" &>/dev/null |
| 590 | ${ROOT}/usr/bin/mysql_install_db | grep -B5 -A999 -i "ERROR" |
795 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
| 591 | popd &>/dev/null |
796 | popd &>/dev/null |
| 592 | [[ -f ${ROOT}/${DATADIR}/mysql/user.frm ]] \ |
797 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
| 593 | || die "MySQL databases not installed" |
798 | || die "MySQL databases not installed" |
| 594 | chown -R mysql:mysql ${ROOT}/${DATADIR} 2> /dev/null |
799 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
| 595 | chmod 0750 ${ROOT}/${DATADIR} 2> /dev/null |
800 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
| 596 | |
801 | |
| 597 | if mysql_version_is_at_least "4.01.03.00" ; then |
802 | if mysql_version_is_at_least "4.01.03.00" ; then |
| 598 | options="--skip-ndbcluster" |
803 | options="--skip-ndbcluster" |
| 599 | |
804 | |
| 600 | # Filling timezones, see |
805 | # Filling timezones, see |
| 601 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
806 | # http://dev.mysql.com/doc/mysql/en/time-zone-support.html |
| 602 | ${ROOT}/usr/bin/mysql_tzinfo_to_sql ${ROOT}/usr/share/zoneinfo \ |
807 | "${ROOT}/usr/bin/mysql_tzinfo_to_sql" "${ROOT}/usr/share/zoneinfo" > "${sqltmp}" 2>/dev/null |
| 603 | > "${sqltmp}" 2>/dev/null |
|
|
| 604 | |
808 | |
| 605 | if [[ -r "${help_tables}" ]] ; then |
809 | if [[ -r "${help_tables}" ]] ; then |
| 606 | cat "${help_tables}" >> "${sqltmp}" |
810 | cat "${help_tables}" >> "${sqltmp}" |
| 607 | fi |
811 | fi |
| 608 | fi |
812 | fi |
| 609 | |
813 | |
| 610 | local socket=${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock |
814 | local socket="${ROOT}/var/run/mysqld/mysqld${RANDOM}.sock" |
| 611 | local pidfile=${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid |
815 | local pidfile="${ROOT}/var/run/mysqld/mysqld${RANDOM}.pid" |
| 612 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
816 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 613 | ${options} \ |
817 | ${options} \ |
| 614 | --user=mysql \ |
818 | --user=mysql \ |
| 615 | --skip-grant-tables \ |
819 | --skip-grant-tables \ |
| 616 | --basedir=${ROOT}/usr \ |
820 | --basedir=${ROOT}/usr \ |
| … | |
… | |
| 620 | --skip-networking \ |
824 | --skip-networking \ |
| 621 | --max_allowed_packet=8M \ |
825 | --max_allowed_packet=8M \ |
| 622 | --net_buffer_length=16K \ |
826 | --net_buffer_length=16K \ |
| 623 | --socket=${socket} \ |
827 | --socket=${socket} \ |
| 624 | --pid-file=${pidfile}" |
828 | --pid-file=${pidfile}" |
| 625 | $mysqld & |
829 | ${mysqld} & |
| 626 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
830 | while ! [[ -S "${socket}" || "${maxtry}" -lt 1 ]] ; do |
| 627 | maxtry=$(($maxtry-1)) |
831 | maxtry=$((${maxtry}-1)) |
| 628 | echo -n "." |
832 | echo -n "." |
| 629 | sleep 1 |
833 | sleep 1 |
| 630 | done |
834 | done |
| 631 | |
835 | |
| 632 | # do this from memory we don't want clear text password in temp files |
836 | # 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'" |
837 | local sql="UPDATE mysql.user SET Password = PASSWORD('${pwd1}') WHERE USER='root'" |
| 634 | ${ROOT}/usr/bin/mysql \ |
838 | "${ROOT}/usr/bin/mysql" \ |
| 635 | --socket=${socket} \ |
839 | --socket=${socket} \ |
| 636 | -hlocalhost \ |
840 | -hlocalhost \ |
| 637 | -e "${sql}" |
841 | -e "${sql}" |
| 638 | |
842 | |
| 639 | einfo "Loading \"zoneinfo\" this step may require few seconds" |
843 | einfo "Loading \"zoneinfo\", this step may require a few seconds ..." |
| 640 | |
844 | |
| 641 | ${ROOT}/usr/bin/mysql \ |
845 | "${ROOT}/usr/bin/mysql" \ |
| 642 | --socket=${socket} \ |
846 | --socket=${socket} \ |
| 643 | -hlocalhost \ |
847 | -hlocalhost \ |
| 644 | -uroot \ |
848 | -uroot \ |
| 645 | -p"${pwd1}" \ |
849 | -p"${pwd1}" \ |
| 646 | mysql < "${sqltmp}" |
850 | mysql < "${sqltmp}" |
| 647 | |
851 | |
| 648 | # server stop and cleanup |
852 | # Stop the server and cleanup |
| 649 | kill $(< "${pidfile}" ) |
853 | kill $(< "${pidfile}" ) |
| 650 | rm "${sqltmp}" |
854 | rm -f "${sqltmp}" |
| 651 | einfo "stopping the server," |
855 | einfo "Stopping the server ..." |
| 652 | wait %1 |
856 | wait %1 |
| 653 | einfo "done" |
857 | einfo "Done" |
| 654 | } |
858 | } |
| 655 | |
859 | |
| 656 | mysql_pkg_postrm() { |
860 | mysql_pkg_postrm() { |
| 657 | mysql_lib_symlinks |
861 | mysql_lib_symlinks |
| 658 | } |
862 | } |