Ticket #19415: 5.4.3.diff
File 5.4.3.diff, 5.2 KB (added by ryandesign (Ryan Carsten Schmidt), 15 years ago) |
---|
-
databases/mysql5-devel/files/patch-Makefile.in.diff
1 --- Makefile.in.orig 2009- 10-06 12:57:22.000000000 -05002 +++ Makefile.in 2009-1 0-22 01:36:36.000000000 -05001 --- Makefile.in.orig 2009-09-29 02:43:52.000000000 -0500 2 +++ Makefile.in 2009-11-12 23:13:12.000000000 -0600 3 3 @@ -412,7 +412,7 @@ 4 @sql_union_dirs@ unittest \4 @sql_union_dirs@ unittest storage plugin \ 5 5 @sql_server@ @man_dirs@ tests \ 6 6 netware @libmysqld_dirs@ \ 7 - mysql-test support-files sql-bench @tools_dirs@\8 + s upport-files @tools_dirs@\7 - mysql-test support-files sql-bench \ 8 + sql-bench \ 9 9 win 10 10 11 11 DIST_SUBDIRS = . include Docs zlib \ -
databases/mysql5-devel/Portfile
4 4 5 5 name mysql5-devel 6 6 conflicts mysql5 mysql4 7 version 5.1.40 8 revision 1 7 version 5.4.3-beta 9 8 set branch [join [lrange [split ${version} .] 0 1] .] 10 9 homepage http://www.mysql.com/ 11 10 categories databases … … 16 15 dist_subdir mysql5 17 16 use_parallel_build yes 18 17 19 # http://bugs.mysql.com/bug.php?id=4736020 universal_variant no21 22 18 description \ 23 19 Multithreaded SQL database server 24 20 … … 31 27 http://mysql.he.net/Downloads/MySQL-${branch}/ \ 32 28 http://mirrors.sunsite.dk/mysql/Downloads/MySQL-${branch}/ \ 33 29 http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-${branch}/ \ 34 http://ftp.plusline.de/mysql/Downloads/MySQL-${branch}/ \ 35 http://www.innodb.com/download/innodb_plugin/:plugin 30 http://ftp.plusline.de/mysql/Downloads/MySQL-${branch}/ 36 31 37 32 checksums \ 38 [suffix ${distname}] \ 39 md5 32e7373c16271606007374396e6742ad \ 40 sha1 00b600763b4659d9e0256ea6dcce378175aa8d9e \ 41 rmd160 330722fc012777c53933d6803d51a3f1b92d9892 33 md5 9ea08558d51b1d56d3784028d57c2b08 \ 34 sha1 daf96fb8adcdad23afed921727fe767ff0939711 \ 35 rmd160 dc191579cc429441da7d20a1f50b25754fe37ad0 42 36 43 37 depends_lib \ 44 38 port:zlib \ … … 91 85 depends_lib-append port:readline 92 86 configure.args-append --without-readline 93 87 94 # Build libmysqld embedded server 95 configure.cflags-append -fPIC 96 configure.cxxflags-append -fPIC 97 configure.args-append --with-embedded-server --with-pic 88 variant no_embedded_server description {Don't build the libmysqld embedded server (thereby allowing a universal build)} {} 89 if {![variant_isset no_embedded_server]} { 90 # Build libmysqld embedded server. 91 configure.cflags-append -fPIC 92 configure.cxxflags-append -fPIC 93 configure.args-append --with-embedded-server --with-pic 94 95 # http://bugs.mysql.com/bug.php?id=47360 96 universal_variant no 97 } 98 98 99 99 post-configure { 100 100 reinplace "s;openssl_includes = -I;openssl_includes_includes = -I${prefix}/include/openssl;" ${worksrcpath}/tests/Makefile 101 101 } 102 102 103 set plugin_version 1.0.4104 set plugin_distname innodb_plugin-${plugin_version}105 set plugin_distfile [suffix ${plugin_distname}]106 set plugin_worksrcdir ${plugin_distname}107 set plugin_worksrcpath ${workpath}/${plugin_worksrcdir}108 set innobase_dir storage/innobase109 110 variant innodb_plugin description "Use the InnoDB Plugin ${plugin_version} instead of the built-in InnoDB support" {111 distfiles-append ${plugin_distfile}:plugin112 113 checksums-append \114 ${plugin_distfile} \115 md5 4350ba7c1520edce35635f982449efb3 \116 sha1 c39e2a9cfa18b9f103c930d0c4a8edced81ed4ee \117 rmd160 bd0467a10781677a7a7bb2e58ad38e0a43841d7f118 119 post-extract {120 delete ${worksrcpath}/${innobase_dir}121 move ${plugin_worksrcpath} ${worksrcpath}/${innobase_dir}122 }123 }124 125 103 pre-destroot { 126 104 xinstall -m 755 -d ${destroot}${sysconfdir} 127 105 destroot.keepdirs-append ${destroot}${sysconfdir} … … 150 128 } 151 129 152 130 livecheck.type regex 131 livecheck.version [lindex [split ${version} -] 0] 153 132 livecheck.url http://dev.mysql.com/ 154 livecheck.regex "(5\\.1\\.\[0-9\.\]+)"133 livecheck.regex {(5\.4\.[0-9.]+)} -
databases/mysql5-server-devel/Portfile
3 3 PortSystem 1.0 4 4 5 5 name mysql5-server-devel 6 version 5. 1.406 version 5.4.3-beta 7 7 set branch [join [lrange [split ${version} .] 0 1] .] 8 8 homepage http://www.mysql.com/ 9 9 categories databases … … 70 70 } 71 71 72 72 livecheck.type regex 73 livecheck.version [lindex [split ${version} -] 0] 73 74 livecheck.url http://dev.mysql.com/ 74 livecheck.regex "(5\\.1\\.\[0-9\.\]+)"75 livecheck.regex {(5\.4\.[0-9.]+)}