Ticket #16789: patch-Portfile.diff
File patch-Portfile.diff, 1.1 KB (added by myschizobuddy@…, 16 years ago) |
---|
-
Portfile
5 5 6 6 name webkit-gtk 7 7 version r30707 8 revision 1 8 9 description Apple's WebKit HTML rendering library for GTK+ 9 10 long_description ${description} 10 maintainers nomaintainer11 maintainers myschizobuddy@gmail.com 11 12 categories www gnome 12 13 platforms darwin freebsd 13 14 homepage http://webkit.org … … 21 22 22 23 depends_lib \ 23 24 port:curl \ 24 port:gnome-vfs \25 port:gstreamer \26 port:gst-plugins-base \27 25 port:gtk2 \ 28 26 port:icu \ 29 27 port:libxslt \ … … 37 35 } 38 36 39 37 configure.cmd ./autogen.sh 40 configure.args --enable-svg \ 41 --enable-video 38 configure.args --enable-svg --enable-icon-database 39 40 variant video description {Add gstreamer video support} { 41 depends_lib-append port:gstreamer \ 42 port:gst-plugins-base \ 43 port:gnome-vfs 44 configure.args-append --enable-video 45 } 46 variant svg_experimental description {Enable SVG experimental features} { 47 configure.args-append --enable-svg-experimental 48 } 49 variant no_svg description {Disable SVG support} { 50 configure.args-delete --enable-svg 51 configure.args-append --disable-svg 52 }