X-Git-Url: http://gitweb/?a=blobdiff_plain;f=mysql%2FPkgfile;h=22276fdf0e3c3bec3c92b7c51b565a04d0d499bd;hb=50fa022907b8a2d074ecc3ccf6152f7b867b292c;hp=1a66feb6946656ecaed592324ffa9962187bc18b;hpb=438d83a89b5278286a0f74104098c1b88a3d6e4c;p=ports%2Fopt-arm.git

diff --git a/mysql/Pkgfile b/mysql/Pkgfile
index 1a66feb..22276fd 100644
--- a/mysql/Pkgfile
+++ b/mysql/Pkgfile
@@ -5,15 +5,18 @@
 # Depends on: tcp_wrappers ncurses zlib openssl cmake libaio
 
 name=mysql
-version=5.5.35
+version=5.6.26
 release=1
-source=(http://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.5/$name-$version.tar.gz \
+source=(http://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.6/$name-$version.tar.gz \
         my.cnf mysqld valist.patch)
 
 build () {
   cd $name-$version
 
   patch -p1 -i $SRC/valist.patch
+  
+  # fix for openssl 1.0.2
+  sed -i 's/REGEX "^#define/REGEX "^# *define/' cmake/ssl.cmake
 
   cmake . \
         -DBUILD_CONFIG=mysql_release \
@@ -34,10 +37,7 @@ build () {
   rm $PKG/usr/share/mysql/charsets/README
   find $PKG/usr/share/mysql/* -type d ! -name english ! -name charsets | xargs rm -rf {} \;
 
-  install -d  $PKG/var/{lib,log}
-  touch mysqld.log
-  install -m 600 -o mysql -g mysql mysqld.log $PKG/var/log
-  install -d -m 700 -o mysql -g mysql $PKG/var/lib/mysql
+  install -d -m 700 -o mysql -g mysql $PKG/var/{lib,log,run}/mysql
   install -D -m 755 $SRC/mysqld $PKG/etc/rc.d/mysqld
   install -m 600 $SRC/my.cnf $PKG/etc
 }