You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
204 lines
7.2 KiB
204 lines
7.2 KiB
## |
|
## mysql4.spec -- OpenPKG RPM Specification |
|
## Copyright (c) 2000-2003 Cable & Wireless Deutschland GmbH |
|
## Copyright (c) 2000-2003 The OpenPKG Project <http://www.openpkg.org/> |
|
## Copyright (c) 2000-2003 Ralf S. Engelschall <rse@engelschall.com> |
|
## |
|
## Permission to use, copy, modify, and distribute this software for |
|
## any purpose with or without fee is hereby granted, provided that |
|
## the above copyright notice and this permission notice appear in all |
|
## copies. |
|
## |
|
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
|
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
|
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR |
|
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
|
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
|
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
## SUCH DAMAGE. |
|
## |
|
|
|
# package version |
|
%define V_major 4.0 |
|
%define V_minor 9 |
|
%define V_class gamma |
|
%define V_mysql %{V_major}.%{V_minor}-%{V_class} |
|
%define V_opkg %{V_major}.%{V_minor}%{V_class} |
|
|
|
# package information |
|
Name: mysql4 |
|
Summary: Fast Relational Database Management System |
|
URL: http://www.mysql.com/ |
|
Vendor: MySQL AB |
|
Packager: The OpenPKG Project |
|
Distribution: OpenPKG [PLUS] |
|
Group: Database |
|
License: GPL |
|
Version: %{V_opkg} |
|
Release: 20030120 |
|
|
|
# package options |
|
%option with_berkeleydb yes |
|
%option with_innobase no |
|
|
|
# package option decisions |
|
%if "%{with_berkeleydb}" == "yes" |
|
%define mysql_bdb_cache_size 8M |
|
%define mysql_bdb_log_buffer_size 32k |
|
%define mysql_bdb_max_lock 10000 |
|
%else |
|
%define mysql_bdb_cache_size 0 |
|
%define mysql_bdb_log_buffer_size 0 |
|
%define mysql_bdb_max_lock 0 |
|
%endif |
|
%if "%{with_berkeleydb}" == "yes" || "%{with_innobase}" == "yes" |
|
%define mysqld mysqld |
|
%else |
|
%define mysqld mysqld-max |
|
%endif |
|
|
|
# list of sources |
|
Source0: http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-%{V_major}/mysql-%{V_mysql}.tar.gz |
|
Source1: my.cnf |
|
Source2: my.pwd |
|
Source3: rc.%{name} |
|
Patch0: %{name}.patch |
|
|
|
# build information |
|
Prefix: %{l_prefix} |
|
BuildRoot: %{l_buildroot} |
|
BuildPreReq: OpenPKG, openpkg >= 20030103, gcc |
|
PreReq: OpenPKG, openpkg >= 20030103 |
|
AutoReq: no |
|
AutoReqProv: no |
|
Provides: MYSQL |
|
Conflicts: mysql |
|
|
|
%description |
|
MySQL is a multi-user Relational Database Management System (RDBMS), |
|
which is controlled through Structured Query Language (SQL) operating in |
|
full multi-threading mode. The main goals of MySQL are speed, robustness |
|
and ease of use. MySQL was originally developed because of the need for |
|
a SQL server that could handle very big databases with magnitude higher |
|
speed than what any database vendor could offer. |
|
|
|
%prep |
|
%setup -q -n mysql-%{V_mysql} |
|
%patch -p0 |
|
|
|
%build |
|
# patch file search path |
|
%{l_shtool} subst \ |
|
-e 's;@l_prefix@;%{l_prefix};g' \ |
|
mysys/default.c |
|
|
|
# determine additional configure options |
|
case "%{l_target}" in |
|
*-freebsd* ) opt="--with-client-ldflags=-static --with-mysqld-ldflags=-static" ;; |
|
*-linux* ) opt="--with-client-ldflags=-static --with-mysqld-ldflags=-static" ;; |
|
*-solaris* ) opt="--with-client-ldflags=-static --with-mysqld-ldflags=-static" ;; |
|
esac |
|
|
|
# configure source tree |
|
CC="%{l_cc}" \ |
|
CXX="%{l_cxx}" \ |
|
CFLAGS="%{l_cflags -O}" \ |
|
CXXFLAGS="%{l_cxxflags -O}" \ |
|
./configure \ |
|
--prefix=%{l_prefix} \ |
|
--sysconfdir=%{l_prefix}/etc/%{name} \ |
|
--localstatedir=%{l_prefix}/var/%{name} \ |
|
--with-unix-socket-path=%{l_prefix}/var/%{name}/mysql.sock \ |
|
--with-mysqld-user=%{l_musr} \ |
|
--enable-thread-safe-client \ |
|
%if "%{with_berkeleydb}" == "yes" |
|
--with-berkeley-db \ |
|
%endif |
|
%if "%{with_innobase}" == "no" |
|
--without-innodb \ |
|
%endif |
|
--with-low-memory \ |
|
--disable-shared \ |
|
$opt |
|
|
|
# build source tree |
|
%{l_make} %{l_mflags} |
|
|
|
%install |
|
rm -rf $RPM_BUILD_ROOT |
|
|
|
# patch init script |
|
%{l_shtool} subst \ |
|
-e 's;@l_prefix@;%{l_prefix};g' \ |
|
scripts/mysql_install_db.sh |
|
|
|
# perform standard installation procedure |
|
%{l_make} %{l_mflags} install \ |
|
AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT" \ |
|
DESTDIR=$RPM_BUILD_ROOT |
|
|
|
# strip installation area |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/mysql-test |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/sql-bench |
|
rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir |
|
rm -f $RPM_BUILD_ROOT%{l_prefix}/share/%{name}/mysql-%{V_mysql}.spec |
|
rm -f $RPM_BUILD_ROOT%{l_prefix}/share/%{name}/binary-configure |
|
strip $RPM_BUILD_ROOT%{l_prefix}/bin/* 2>/dev/null || true |
|
strip $RPM_BUILD_ROOT%{l_prefix}/libexec/* 2>/dev/null || true |
|
|
|
# install global configuration |
|
%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/etc/%{name} |
|
%{l_shtool} install -c -m 644 \ |
|
-e 's;@l_prefix@;%{l_prefix};g' \ |
|
-e 's;@l_rusr@;%{l_rusr};g' \ |
|
-e 's;@mysql_bdb_cache_size@;%{mysql_bdb_cache_size};g' \ |
|
-e 's;@mysql_bdb_log_buffer_size@;%{mysql_bdb_log_buffer_size};g' \ |
|
-e 's;@mysql_bdb_max_lock@;%{mysql_bdb_max_lock};g' \ |
|
%{SOURCE my.cnf} \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/%{name}/ |
|
%{l_shtool} install -c -m 600 \ |
|
%{SOURCE my.pwd} \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/%{name}/ |
|
|
|
# install run-command script |
|
%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d |
|
%{l_shtool} install -c -m 755 \ |
|
-e 's;@l_prefix@;%{l_prefix};g' \ |
|
-e 's;@l_rusr@;%{l_rusr};g' \ |
|
-e 's;@l_rgrp@;%{l_rgrp};g' \ |
|
-e 's;@mysqld@;%{mysqld};g' \ |
|
%{SOURCE rc.%{name}} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/ |
|
|
|
# make sure the database directory exists |
|
%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/var/%{name} |
|
|
|
# determine the package files |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ |
|
%{l_files_std} \ |
|
'%config %{l_prefix}/etc/%{name}/my.cnf' \ |
|
'%config %{l_prefix}/etc/%{name}/my.pwd' |
|
|
|
%files -f files |
|
|
|
%clean |
|
rm -rf $RPM_BUILD_ROOT |
|
|
|
%post |
|
# create initial database |
|
$RPM_INSTALL_PREFIX/bin/mysql_install_db \ |
|
--defaults-file=$RPM_INSTALL_PREFIX/etc/%{name}/my.cnf |
|
chown %{l_rusr}:%{l_rgrp} \ |
|
$RPM_INSTALL_PREFIX/etc/%{name}/my.cnf \ |
|
$RPM_INSTALL_PREFIX/etc/%{name}/my.pwd |
|
chown -R %{l_rusr}:%{l_rgrp} $RPM_INSTALL_PREFIX/var/%{name}/ |
|
( echo "The MySQL package includes automated maintenance procedures" |
|
echo "that require administrator access to the database. For this" |
|
echo "to work you must keep a copy (plain text) of the administrator" |
|
echo "account in '$RPM_INSTALL_PREFIX/etc/%{name}/my.pwd'." |
|
) | %{l_rpmtool} msg -b -t notice |
|
|
|
|