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