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