Ticket #19415: 5.4.3-remaining.diff
File 5.4.3-remaining.diff, 3.3 KB (added by ryandesign (Ryan Carsten Schmidt), 15 years ago) |
---|
-
databases/mysql5-devel/Portfile
16 16 dist_subdir mysql5 17 17 use_parallel_build yes 18 18 19 # http://bugs.mysql.com/bug.php?id=4736020 universal_variant no21 22 19 description \ 23 20 Multithreaded SQL database server 24 21 … … 31 28 http://mysql.he.net/Downloads/MySQL-${branch}/ \ 32 29 http://mirrors.sunsite.dk/mysql/Downloads/MySQL-${branch}/ \ 33 30 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 31 http://ftp.plusline.de/mysql/Downloads/MySQL-${branch}/ 36 32 37 33 checksums \ 38 [suffix ${distname}] \39 34 md5 9ea08558d51b1d56d3784028d57c2b08 \ 40 35 sha1 daf96fb8adcdad23afed921727fe767ff0939711 \ 41 36 rmd160 dc191579cc429441da7d20a1f50b25754fe37ad0 … … 91 86 depends_lib-append port:readline 92 87 configure.args-append --without-readline 93 88 94 # Build libmysqld embedded server 95 configure.cflags-append -fPIC 96 configure.cxxflags-append -fPIC 97 configure.args-append --with-embedded-server --with-pic 89 variant no_embedded_server description {Don't build the libmysqld embedded server (thereby allowing a universal build)} {} 90 if {![variant_isset no_embedded_server]} { 91 # Build libmysqld embedded server. 92 configure.cflags-append -fPIC 93 configure.cxxflags-append -fPIC 94 configure.args-append --with-embedded-server --with-pic 95 96 # http://bugs.mysql.com/bug.php?id=47360 97 universal_variant no 98 } 98 99 99 100 post-configure { 100 101 reinplace "s;openssl_includes = -I;openssl_includes_includes = -I${prefix}/include/openssl;" ${worksrcpath}/tests/Makefile 101 102 } 102 103 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 104 pre-destroot { 126 105 xinstall -m 755 -d ${destroot}${sysconfdir} 127 106 destroot.keepdirs-append ${destroot}${sysconfdir} -
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