Ticket #19346: webkit.patch
File webkit.patch, 3.4 KB (added by mtalexander (Mike Alexander), 16 years ago) |
---|
-
dports/gnome/libsoup/Portfile
4 4 PortSystem 1.0 5 5 6 6 name libsoup 7 version 2.2 4.37 version 2.26.1 8 8 set branch [join [lrange [split ${version} .] 0 1] .] 9 9 categories gnome net 10 10 platforms darwin … … 23 23 master_sites gnome:sources/${name}/${branch}/ 24 24 use_bzip2 yes 25 25 26 checksums md5 118967f097a7e1e9d5023f1f06e0b65a\27 sha1 b63cf9c0bc20264c59e84dea73eb76862be9329c \28 rmd160 9000d0355e65879f4031278bead9a4ad61a2bdea26 checksums md5 94c0495dc8bf213709bdb175ab224c7e \ 27 sha1 ef5e1b921b013b893163f13c848dc7ee279d822c \ 28 rmd160 627da2989062a71748df1c716cf122db7e3bae74 29 29 30 30 depends_lib \ 31 31 port:libxml2 \ … … 34 34 35 35 use_parallel_build yes 36 36 37 configure.args --without-gnome 38 39 variant gnome description "Build libsoup-gnome library" { 40 configure.args-delete --without-gnome 41 } 42 37 43 test.run yes 38 44 test.target check 39 45 -
dports/www/webkit-gtk/Portfile
4 4 PortSystem 1.0 5 5 6 6 name webkit-gtk 7 version r 307077 version r42583 8 8 revision 1 9 9 description Apple's WebKit HTML rendering library for GTK+ 10 10 long_description ${description} … … 16 16 distname WebKit-${version} 17 17 use_bzip2 yes 18 18 checksums \ 19 md5 57f29473a82b70bf72993eae14c5a818\20 sha 1i0c777040c7ef2a0ee7097dfbc8dc89b3e4c9a002 \21 rmd160 4ab419002ce7824797c38699c35f0e85152bd309 19 md5 e0c1dab1ac6af0b6649f56ddb4390611 \ 20 sha1 e04f7db3b95467d506979bfeaaab721c5fb29da2 \ 21 rmd160 7eac6763bac5f0a0a89ecb52f14d65f337642833 22 22 23 23 depends_lib \ 24 24 port:curl \ 25 25 port:gtk2 \ 26 26 port:icu \ 27 27 port:libxslt \ 28 port:sqlite3 28 port:sqlite3 \ 29 port:libsoup \ 30 port:gstreamer \ 31 port:gst-plugins-base 29 32 depends_build \ 30 33 port:libtool \ 31 34 port:pkgconfig 32 35 36 patchfiles corefoundation.patch \ 37 icu_config.patch 38 33 39 post-patch { 34 40 reinplace "s|aclocal |aclocal -I ${prefix}/share/aclocal |" ${worksrcpath}/autogen.sh 35 41 } … … 50 56 configure.args-delete --enable-svg 51 57 configure.args-append --disable-svg 52 58 } 59 60 variant debug description {Enable debugging} { 61 configure.args-append --enable-debug 62 } -
dports/www/webkit-gtk/files/icu_config.patch
old new 1 --- autotools.old/webkit.m4 2009-04-17 23:34:59.000000000 -0400 2 +++ autotools/webkit.m4 2009-04-17 23:37:21.000000000 -0400 3 @@ -131,14 +131,14 @@ 4 AC_MSG_RESULT([$unicode_backend]) 5 6 if test "$unicode_backend" = "icu"; then 7 - if test "$os_darwin" = "yes"; then 8 + AC_PATH_PROG(icu_config, icu-config, no) 9 + if test "$os_darwin" = "yes" && test "$icu_config" = "no"; then 10 UNICODE_CFLAGS="-I\$(srcdir)/JavaScriptCore/icu -I\$(srcdir)/WebCore/icu" 11 UNICODE_LIBS="-licucore" 12 elif test "$os_win32" = "yes"; then 13 UNICODE_CFLAGS="" 14 UNICODE_LIBS="-licuin -licuuc" 15 else 16 - AC_PATH_PROG(icu_config, icu-config, no) 17 if test "$icu_config" = "no"; then 18 AC_MSG_ERROR([Cannot find icu-config. The ICU library is needed.]) 19 fi