ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/mysql.spec
(Generate patch)

Comparing COMP/CMSDIST/mysql.spec (file contents):
Revision 1.1 by argiro, Fri Feb 17 04:27:30 2006 UTC vs.
Revision 1.20 by elmer, Fri Nov 2 19:48:17 2007 UTC

# Line 1 | Line 1
1 < ### RPM external mysql 4.0.24
2 < # Source: ftp://mirror.mcs.anl.gov/pub/mysql/Downloads/MySQL-4.0/%n-%v.tar.gz
3 < Source: http://downloads.mysql.com/archives/mysql-4.0/%n-%v.tar.gz
1 > ### RPM external mysql 5.0.45-CMS18
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://mirror.provenscaling.com/mysql/community/source/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-%v
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.)
# Line 14 | Line 25 | perl -p -i -e 's/-traditional-cpp/-no-cp
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
28 > make %makeprocesses
29 >
30 > %install
31 > make install
32 > perl -p -i -e "s|^#!.*perl(.*)|#!/usr/bin/env perl$1|" $(grep -r -e "^#!.*perl.*" %i | cut -d: -f1)
33 > rm -fR %i/mysql-test
34 >
35 > # SCRAM ToolBox toolfile
36 > mkdir -p %i/etc/scram.d
37 > cat << \EOF_TOOLFILE >%i/etc/scram.d/%n
38 > <doc type=BuildSystem::ToolDoc version=1.0>
39 > <Tool name=%n version=%v>
40 > <Lib name=mysqlclient>
41 > <Client>
42 > <Environment name=MYSQL_BASE default="%i"></Environment>
43 > <Environment name=LIBDIR default="$MYSQL_BASE/lib/mysql"></Environment>
44 > <Environment name=MYSQL_BINDIR default="$MYSQL_BASE/bin"></Environment>
45 > <Environment name=INCLUDE default="$MYSQL_BASE/include/mysql"></Environment>
46 > </Client>
47 > <Runtime name=PATH value="$MYSQL_BINDIR" type=path>
48 > </Tool>
49 > EOF_TOOLFILE
50 >
51 > %post
52 > %{relocateConfig}bin/msql2mysql
53 > %{relocateConfig}bin/mysqlaccess
54 > %{relocateConfig}bin/mysqlbug
55 > %{relocateConfig}bin/mysql_config
56 > %{relocateConfig}bin/mysqld_multi
57 > %{relocateConfig}bin/mysqld_safe
58 > %{relocateConfig}bin/mysql_fix_privilege_tables
59 > %{relocateConfig}bin/mysql_install_db
60 > %{relocateConfig}etc/scram.d/%n
61 >
62 >

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines