Ticket #28569: apr0-apr-util0-apache20-updates.diff
File apr0-apr-util0-apache20-updates.diff, 5.0 KB (added by ryandesign (Ryan Carsten Schmidt), 14 years ago) |
---|
-
devel/apr0/Portfile
2 2 3 3 PortSystem 1.0 4 4 name apr0 5 version 0.9.1 75 version 0.9.19 6 6 categories devel 7 7 maintainers blair 8 8 platforms darwin … … 20 20 21 21 distname apr-${version} 22 22 use_bzip2 yes 23 checksums md5 cbeb635755165c800f7be5e05902731824 23 24 checksums sha1 bde09166e9d9876715201ee0dbe3e7f69aa551a0 \ 25 rmd160 141119b4b07892bc0008f73cf34508cbb7492f9c 26 25 27 configure.args --with-installbuilddir=${prefix}/share/apr-0/build 26 28 27 29 test.run yes … … 32 34 delete ${destroot}${prefix}/lib/apr.exp 33 35 } 34 36 35 platform darwin 9 {36 post-configure {37 reinplace {s|\(#define APR_HAS_SENDFILE[[:space:]]*\)1|\1 0|} ${worksrcpath}/include/apr.h38 }39 }40 41 platform darwin 10 {42 post-configure {43 reinplace {s|\(#define APR_HAS_SENDFILE[[:space:]]*\)1|\1 0|} ${worksrcpath}/include/apr.h44 }45 }46 47 37 livecheck.type regex 48 38 livecheck.url http://www.apache.org/dist/apr/ 49 39 livecheck.regex APR (0\\.\[0-9.\]+) -
devel/apr-util0/Portfile
2 2 3 3 PortSystem 1.0 4 4 name apr-util0 5 version 0.9.1 55 version 0.9.19 6 6 categories devel 7 7 maintainers blair 8 8 platforms darwin … … 19 19 20 20 distname apr-util-${version} 21 21 use_bzip2 yes 22 checksums md5 8e1427f63379d4ebd6de525e5b242dc323 22 24 depends_lib port:apr0 port:expat port:libiconv port:db44 23 checksums sha1 5ffcdd98ebbc7e7d9da5029cf7fac2744901bb50 \ 24 rmd160 2f03d05f9a0a32158f31a820b75eca5dd3fbb60c 25 25 26 depends_lib port:apr0 port:expat port:libiconv port:db46 27 26 28 configure.args --with-apr=${prefix}/bin/apr-config --with-expat=${prefix} \ 27 29 --with-iconv=${prefix} \ 28 --with-berkeley-db=${prefix}/include:${prefix}/lib/db4 4\30 --with-berkeley-db=${prefix}/include:${prefix}/lib/db46 \ 29 31 --without-mysql --without-pgsql 30 32 31 33 test.run yes … … 37 39 } 38 40 39 41 variant no_bdb { 40 depends_lib-delete port:db4 441 configure.args-delete --with-berkeley-db=${prefix}/include:${prefix}/lib/db4 442 depends_lib-delete port:db46 43 configure.args-delete --with-berkeley-db=${prefix}/include:${prefix}/lib/db46 42 44 configure.args-append --without-berkeley-db 43 45 } 44 46 … … 50 52 } 51 53 52 54 #pre-configure { 53 # reinplace "s|^Libs: |Libs: -L${prefix}/lib/db4 4|" $worksrcpath/apr-util.pc.in55 # reinplace "s|^Libs: |Libs: -L${prefix}/lib/db46 |" $worksrcpath/apr-util.pc.in 54 56 # } 55 57 56 58 livecheck.type regex -
www/apache20/files/patch-openssl-1.0.0.diff
1 --- modules/ssl/ssl_engine_init.c.orig 20 07-12-29 00:07:53.000000000 +09002 +++ modules/ssl/ssl_engine_init.c 201 0-05-01 22:17:22.000000000 +09003 @@ -53 1,7 +531,7 @@1 --- modules/ssl/ssl_engine_init.c.orig 2010-09-28 10:59:13.000000000 -0500 2 +++ modules/ssl/ssl_engine_init.c 2011-02-28 00:58:37.000000000 -0600 3 @@ -535,7 +535,7 @@ 4 4 ssl_die(); 5 5 } 6 6 7 7 - SSL_CTX_set_client_CA_list(ctx, (STACK *)ca_list); 8 8 + SSL_CTX_set_client_CA_list(ctx, ca_list); 9 9 } 10 10 11 11 /* 12 12 --- modules/ssl/ssl_util_ssl.c.orig 2006-07-12 16:40:55.000000000 +0900 13 13 +++ modules/ssl/ssl_util_ssl.c 2010-05-01 22:20:18.000000000 +0900 … … 35 35 int n; 36 36 - STACK *extra_certs; 37 37 + STACK_OF(X509) *extra_certs; 38 38 39 39 if ((bio = BIO_new(BIO_s_file_internal())) == NULL) 40 40 return -1; -
www/apache20/Portfile
19 19 PortSystem 1.0 20 20 21 21 name apache20 22 version 2.0.63 23 revision 1 22 version 2.0.64 24 23 25 24 categories www 26 25 maintainers blair … … 57 56 58 57 master_sites apache:httpd 59 58 distname httpd-${version} 60 checksums md5 c7924ebe95f9f66c9f80c0f9d4012152 \61 sha1 20e2b64944e38e96491af788a37cb709d2c5b755 \62 rmd160 f6a7de59860f627ac40b245fcf742fb07e1b487063 59 use_bzip2 yes 64 60 61 checksums sha1 eeabe0fb428d9f11ce00559ff163740c6ceabf1c \ 62 rmd160 6a4bfe4dfc4119a70cabbec2e0865dc2f12e8ec4 63 65 64 depends_lib port:apr0 \ 66 65 port:apr-util0 \ 67 66 port:expat \ 68 67 port:openssl \ 69 port:pcre 68 port:pcre \ 69 port:perl5 70 70 71 71 patchfiles patch-httpd-std.conf.in \ 72 patch-docs-cgi-examples-printenv.diff \ 72 73 patch-openssl-1.0.0.diff 73 74 74 75 platform darwin { 75 76 post-patch { 77 reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/docs/cgi-examples/printenv 76 78 # Customize userdir naming to match darwin 77 79 reinplace "s|/home/|/Users/|g" ${worksrcpath}/docs/conf/httpd-std.conf.in 78 80 reinplace "s|public_html|Sites|g" ${worksrcpath}/docs/conf/httpd-std.conf.in