ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/mysql.spec
Revision: 1.14
Committed: Tue May 22 16:57:03 2007 UTC (17 years, 11 months ago) by elmer
Branch: MAIN
CVS Tags: pe20070626c-ports, ge20070625, pe20070626b-ports, sm20070626a-ports, pe20070626a-ports, pe20070625b-ports, pe20070625a-ports, pe20070624a-ports, ge20070622, pe20070607a-ports
Changes since 1.13: +5 -5 lines
Log Message:
o Updates to use %realversion from rpm-preamble
o Versions all updated to -XXXX (we can choose the actual rebuild naming
  convention in a second pass)

File Contents

# Content
1 ### RPM external mysql 5.0.18-XXXX
2 ## INITENV +PATH LD_LIBRARY_PATH %i/lib/mysql
3
4 #Different download locations according to the version.
5
6 %if "%(echo %realversion | cut -d. -f1)" == "4"
7 %define source http://downloads.mysql.com/archives/mysql-4.0/%n-%realversion.tar.gz
8 %else
9 %define source http://mysql.belnet.be/Downloads/MySQL-5.0/mysql-%realversion.tar.gz
10 %endif
11
12 Source: %source
13 # Let's fake the fact that we have perl (DBI) so that rpm does not complain.
14 Provides: perl(DBI)
15
16 %prep
17 %setup -n %n-%realversion
18 %ifos darwin
19 # There's for some reason a "-traditional-cpp", which breaks with GCC 3.3
20 # so remove it. (FIXME: check if this is solved in a newer version.)
21 perl -p -i -e 's/-traditional-cpp/-no-cpp-precomp/g' configure.in configure
22 %endif
23
24 %build
25 CFLAGS=-O3 CXX=gcc CXXFLAGS="-O3 -felide-constructors -fno-exceptions -fno-rtti" \
26 ./configure --prefix=%i --with-extra-charsets=complex \
27 --enable-thread-safe-client --enable-local-infile
28 make %makeprocesses
29 %install
30 make install
31 perl -p -i -e "s|^#!.*perl(.*)|#!/usr/bin/env perl$1|" $(grep -r -e "^#!.*perl.*" %i | cut -d: -f1)
32 %post
33 %{relocateConfig}bin/msql2mysql
34 %{relocateConfig}bin/mysqlaccess
35 %{relocateConfig}bin/mysqlbug
36 %{relocateConfig}bin/mysql_config
37 %{relocateConfig}bin/mysqld_multi
38 %{relocateConfig}bin/mysqld_safe
39 %{relocateConfig}bin/mysql_fix_privilege_tables
40 %{relocateConfig}bin/mysql_install_db
41
42