wok rev 15747

Up: dillo (3.0.3) with better integration for JWM flavor
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jan 03 10:29:30 2014 +0100 (2014-01-03)
parents e0611ce967ea
children dcda2f70754b
files dillo/receipt dillo/stuff/dillorc
line diff
     1.1 --- a/dillo/receipt	Fri Jan 03 00:18:36 2014 +0100
     1.2 +++ b/dillo/receipt	Fri Jan 03 10:29:30 2014 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="dillo"
     1.7 -VERSION="3.0.2"
     1.8 +VERSION="3.0.3"
     1.9  CATEGORY="network"
    1.10  SHORT_DESC="Light and fast web browse using FLTK."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -11,9 +11,8 @@
    1.13  WGET_URL="http://www.dillo.org/download/$TARBALL"
    1.14  TAGS="browser"
    1.15  
    1.16 -DEPENDS="fltk libpng jpeg zlib openssl xorg-libXi xorg-libXinerama \
    1.17 -gcc-lib-base"
    1.18 -BUILD_DEPENDS="$DEPENDS fltk-dev libpng-dev jpeg-dev zlib-dev"
    1.19 +DEPENDS="fltk libpng jpeg zlib openssl xorg-libX11 gcc-lib-base"
    1.20 +BUILD_DEPENDS="$DEPENDS fltk-dev libpng-dev jpeg-dev zlib-dev openssl-dev"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24 @@ -22,6 +21,7 @@
    1.25  	./configure \
    1.26  		--sysconfdir=/etc \
    1.27  		--prefix=/usr \
    1.28 +		--enable-ssl \
    1.29  		$CONFIGURE_ARGS &&
    1.30  	make &&
    1.31  	make DESTDIR=$DESTDIR install
     2.1 --- a/dillo/stuff/dillorc	Fri Jan 03 00:18:36 2014 +0100
     2.2 +++ b/dillo/stuff/dillorc	Fri Jan 03 10:29:30 2014 +0100
     2.3 @@ -15,9 +15,16 @@
     2.4  #geometry=780x580
     2.5  
     2.6  # Change this if you want to have text-only browsing from the start.
     2.7 -# (there's a toggle button near the bug meter to change this on-the-fly)
     2.8 -#load_images=YES
     2.9 +# (While browsing, this can be changed from the tools/settings menu.)
    2.10 +load_images=YES
    2.11  
    2.12 +# Change this if you want to disable loading of CSS stylesheets initially.
    2.13 +# (While browsing, this can be changed from the tools/settings menu.)
    2.14 +load_stylesheets=YES
    2.15 +
    2.16 +# Change this if you want to disable parsing of embedded CSS initially.
    2.17 +# (While browsing, this can be changed from the tools/settings menu.)
    2.18 +parse_embedded_css=YES
    2.19  
    2.20  # Change the buffering scheme for drawing
    2.21  # 0 no double buffering - useful for debugging
    2.22 @@ -32,42 +39,85 @@
    2.23  #                           RENDERING SECTION
    2.24  #-------------------------------------------------------------------------
    2.25  
    2.26 -# Fontname for variable width rendering (most of the text).
    2.27 -#   - some fonts may slow down rendering.
    2.28 -#   - try to tune a fontname/font_factor combination.
    2.29 -# Ex. {helvetica, lucida, times, "new century schoolbook", utopia, ...}
    2.30 -# vw_fontname="new century schoolbook"
    2.31 -# vw_fontname="helvetica"
    2.32 -# vw_fontname="times"
    2.33 -# vw_fontname="Bitstream vera Serif"
    2.34 -# vw_fontname="arial"
    2.35 -#vw_fontname="DejaVu Sans"
    2.36 +# Default fonts:
    2.37 +#
    2.38 +# If FLTK has been configured with Xft enabled (the default), you can use
    2.39 +# scalable fonts such as DejaVu or Liberation (try running
    2.40 +# "fc-list : family | cut -d ',' -f 2 | sort").
    2.41 +#font_serif="DejaVu Serif"
    2.42 +#font_sans_serif="DejaVu Sans"
    2.43 +#font_cursive="URW Chancery L"
    2.44 +#font_fantasy="DejaVu Sans"
    2.45 +#font_monospace="DejaVu Sans Mono"
    2.46 +#
    2.47 +# Otherwise, use bitmapped fonts like the following (for a list, try running
    2.48 +# "xlsfonts -fn *-iso10646-1 | grep -v -e -0-0 | cut -d - -f 3 | sort | uniq").
    2.49 +# font_serif="times"
    2.50 +# font_sans_serif="helvetica"
    2.51 +# font_cursive="helvetica"
    2.52 +# font_fantasy="helvetica"
    2.53 +# font_monospace="courier"
    2.54  
    2.55 -# Fontname for fixed width rendering (mainly text quoted with <pre>)
    2.56 -# fw_fontname=courier
    2.57 -# fw_fontname="Bitstream Vera Sans Mono"
    2.58 -# fw_fontname="Andale Mono"
    2.59 -#fw_fontname="DejaVu Sans Mono"
    2.60 -
    2.61 -# All fontsizes are scaled by this value
    2.62 +# All font sizes are scaled by this value
    2.63  # font_factor=1.5
    2.64  #font_factor=1.0
    2.65  
    2.66 -# Show tooltip popup for images?
    2.67 -# Note: We use the "title" attribute and not "alt".
    2.68 -#       More info at: http://bugzilla.mozilla.org/show_bug.cgi?id=25537
    2.69 -# *** NOT HOOKED UP YET ***
    2.70 -#
    2.71 +# Maximum font size in pixels
    2.72 +#font_max_size=100
    2.73 +
    2.74 +# Minimum font size in pixels
    2.75 +#font_min_size=6
    2.76 +
    2.77 +# Show tooltip popups for UI and for HTML title attributes
    2.78  #show_tooltip=YES
    2.79  
    2.80  # Set this to YES if you want to limit the word wrap width to the viewport
    2.81  # width (may be useful for iPAQ)
    2.82 -# *** NOT HOOKED UP YET ***
    2.83 -#
    2.84  #limit_text_width=NO
    2.85  
    2.86  
    2.87  #-------------------------------------------------------------------------
    2.88 +#                               PENALTIES
    2.89 +#-------------------------------------------------------------------------
    2.90 +
    2.91 +# Penalties are used to control good and bad break points. The bigger
    2.92 +# the penalty for a given break point, the less likely the line is
    2.93 +# broken here. "inf" means that breaking is prohibited, "-inf" means
    2.94 +# that a line *must* be broken here. (The latter should not be used
    2.95 +# here, however.) Normal spaces get a penalty of 0. The exact
    2.96 +# definition can be found in doc/dw-line-breaking.doc.
    2.97 +
    2.98 +# Penalties for hyphenation breaks; this covers automatic hyphenation,
    2.99 +# soft hyphens, and unconditional hyphens. Since hyphenation should
   2.100 +# rather be avoided, the default values are larger than 0.
   2.101 +
   2.102 +# This is used for hyphenation points, when there is no hyphen or dash
   2.103 +# before:
   2.104 +#penalty_hyphen = 1
   2.105 +
   2.106 +# This is used for hyphenation points, when the line before ends
   2.107 +# already with a hyphen or a dash. Consequent lines ending with
   2.108 +# hyphens or dashes should be avoided, so this value is bigger than
   2.109 +# "penalty_hyphen":
   2.110 +#penalty_hyphen_2 = 8
   2.111 +
   2.112 +# The same for a break right of an em-dash, when there are no spaces
   2.113 +# surrounding it (as in English). The default values are the same as
   2.114 +# for hyphens:
   2.115 +#penalty_em_dash_right = 1
   2.116 +#penalty_em_dash_right_2 = 8
   2.117 +
   2.118 +# Penalty for a break *left* of an em-dash. Since a line ending with
   2.119 +# an em-dash (and so breaking right of the em-dash) looks better than
   2.120 +# a line beginning with an em-dash (breaking left of an em-dash), the
   2.121 +# default value is bigger than "penalty_em_dash_right":
   2.122 +#penalty_em_dash_left = 8
   2.123 +
   2.124 +# Notice that there is no "penalty_em_dash_left_2", since breaking
   2.125 +# left of an em-dash makes the line *begin*, not *end* with a dash.
   2.126 +
   2.127 +
   2.128 +#-------------------------------------------------------------------------
   2.129  #                            PARSING SECTION
   2.130  #-------------------------------------------------------------------------
   2.131  
   2.132 @@ -91,15 +141,33 @@
   2.133  # home="file:/home/jcid/HomePage/Home.html"
   2.134  home="file:/usr/share/webhome/index.html"
   2.135  
   2.136 -# Set the URL used by the web search dialog.
   2.137 +# Set the URLs used by the web search dialog.
   2.138  # "%s" is replaced with the search keywords separated by '+'.
   2.139 -# search_url="http://search.lycos.com/?query=%s"
   2.140 -# search_url="http://www.alltheweb.com/search?cat=web&query=%s"
   2.141 -#search_url="http://www.google.com/search?q=%s"
   2.142 +# Format: search_url="[<label> ]<url>"
   2.143 +# You can enable multiple search_url strings at once and select from among
   2.144 +# them at runtime, with the first being the default.
   2.145 +search_url="http://duckduckgo.com/lite/?kp=-1&q=%s&t=slitaz"
   2.146 +search_url="Wikipedia http://www.wikipedia.org/w/index.php?search=%s&go=Go"
   2.147 +search_url="Free Dictionary http://www.thefreedictionary.com/%s"
   2.148 +search_url="Google http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
   2.149 +
   2.150 +# If set, dillo will ask web servers to send pages in this language.
   2.151 +# This setting does NOT change dillo's user interface.
   2.152 +# Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
   2.153 +# Language-REGION values: www.iana.org/assignments/language-subtag-registry
   2.154 +# (by default, no Accept-Language header is sent)
   2.155 +# http_language="de"
   2.156 +# http_language="pt-BR"
   2.157 +# http_language="vi,de-CH,de;q=0.5,th;q=0.3"
   2.158 +
   2.159 +# Maximum number of simultaneous TCP connections to a single server or proxy.
   2.160 +# http_max_conns=6
   2.161  
   2.162  # Set the proxy information for http.
   2.163 -# WARNING: dillo uses wget for ftp and https. To use a proxy for those
   2.164 -# protocols, you will need to configure wget.
   2.165 +# Note that the http_proxy environment variable overrides this setting.
   2.166 +# WARNING: FTP and downloads plugins use wget. To use a proxy with them,
   2.167 +#          you will need to configure wget accordingly. See
   2.168 +#          http://www.gnu.org/software/wget/manual/html_node/Proxies.html
   2.169  # http_proxy="http://localhost:8080/"
   2.170  #(by default, no proxy is used)
   2.171  
   2.172 @@ -110,7 +178,7 @@
   2.173  
   2.174  # Set the domains to access without proxy
   2.175  # no_proxy = ".hola.com .mynet.cl .hi.de"
   2.176 -#(by default, no proxy is used)
   2.177 +#no_proxy="localhost 127.0.0.1"
   2.178  
   2.179  # Set the HTTP Referer (sic) header.
   2.180  # Note that there is no option to reveal the page that you came from because it
   2.181 @@ -121,53 +189,131 @@
   2.182  # path  : Send the requested URI's host and path.
   2.183  #http_referer=host
   2.184  
   2.185 +# Set the HTTP User-Agent header.
   2.186 +# This can be useful for privacy and for working around servers who think
   2.187 +# Dillo is less capable than it really is. However, if you pretend to use a
   2.188 +# different browser, servers may send you pages that work with the features
   2.189 +# and bugs of that other browser -- or even disallow access in cases like
   2.190 +# wget or googlebot. Remember this before submitting bug reports.
   2.191 +#
   2.192 +# See http://zytrax.com/tech/web/browser_ids.htm for a compilation of strings.
   2.193 +#
   2.194 +# http_user_agent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0"
   2.195 +# http_user_agent="Wget/1.12 (linux-gnu)"
   2.196 +#The default is "Dillo/"+current_version_number
   2.197  
   2.198  #-------------------------------------------------------------------------
   2.199  #                            COLORS SECTION
   2.200  #-------------------------------------------------------------------------
   2.201  
   2.202 -# Here we can use the HTML color names or C syntax.
   2.203 -
   2.204 -# Set the background color
   2.205 +# Set the page background color
   2.206  # bg_color=gray
   2.207  # bg_color=0xd6d6c0
   2.208 -bg_color=ffffff
   2.209 -
   2.210 -# Set the text color
   2.211 -#text_color=black
   2.212 -
   2.213 -# Set the link color
   2.214 -#link_color=blue
   2.215 +#bg_color=0xdcd1ba
   2.216  
   2.217  # If your eyes suffer with white backgrounds, change this.
   2.218  #allow_white_bg=YES
   2.219  
   2.220 -# Use the same colors with all documents?
   2.221 -#force_my_colors=NO
   2.222 -
   2.223  # When set to YES, the page author's visited link color may be overridden
   2.224  # to allow better contrast with text/links/background
   2.225  #contrast_visited_color=YES
   2.226  
   2.227 -# Colors for widgets inside forms.
   2.228 -# YES = toolkit's default colors, NO = use page's text and background color.
   2.229 -# ("NO" looks less traditional but more stylish).
   2.230 -standard_widget_colors=YES
   2.231 -
   2.232  
   2.233  #-------------------------------------------------------------------------
   2.234  #                        USER INTERFACE SECTION
   2.235  #-------------------------------------------------------------------------
   2.236  
   2.237 -# Size of dillo panel (used to enlarge the browsing area)
   2.238 -# tiny   :  recommended for iPAQ (with small_icons)
   2.239 -# small  :  very nice! (it's "medium" without icon titles)
   2.240 -# medium :  nice!
   2.241 -# large  :  Traditional
   2.242 -# panel_size=tiny
   2.243 -# panel_size=small
   2.244 -# panel_size=medium
   2.245 +# UI theme
   2.246 +# "none" is the default FLTK appearance, which "resembles old Windows...and
   2.247 +# old GTK/KDE".
   2.248 +# "plastic" "is inspired by the Aqua user interface on Mac OS X".
   2.249 +# "gtk+" "is inspired by the Red Hat Bluecurve theme".
   2.250 +#theme=none
   2.251 +theme=gtk+
   2.252 +#theme=plastic
   2.253 +
   2.254 +# UI colors
   2.255 +# The first four colors map to concepts in the underlying FLTK toolkit. Note
   2.256 +# that FLTK may sometimes override colors, generally for contrast and
   2.257 +# readability.
   2.258 +#
   2.259 +#ui_fg_color=black
   2.260 +#ui_main_bg_color=silver
   2.261 +#ui_text_bg_color=white
   2.262 +#ui_selection_color=navy
   2.263 +#
   2.264 +# Background used when the mouse cursor is over a button.
   2.265 +#ui_button_highlight_color=(by default, the main background color, lightened)
   2.266 +#
   2.267 +# Colors for the current tab.
   2.268 +#ui_tab_active_bg_color=(by default, the text background color)
   2.269 +#ui_tab_active_fg_color=(by default, the main foreground color)
   2.270 +#
   2.271 +# Colors for the other tabs.
   2.272 +#ui_tab_bg_color=(by default, the main background color)
   2.273 +#ui_tab_fg_color=(by default, the main foreground color)
   2.274 +
   2.275 +
   2.276 +# Note to packagers: leaving these variables for the system to guess
   2.277 +# gives different results in different environments, so we played it safe
   2.278 +# by defining the traditional colors.  Please choose the color theme that
   2.279 +# better fits your distro.
   2.280 +
   2.281 +#
   2.282 +# SliTaz theme
   2.283 +#
   2.284 +ui_fg_color=black
   2.285 +ui_main_bg_color=#ededed
   2.286 +ui_text_bg_color=#d9d4ce
   2.287 +ui_selection_color=#d66018
   2.288 +ui_button_highlight_color=#a9a9a9
   2.289 +ui_tab_active_bg_color=#333333
   2.290 +ui_tab_active_fg_color=white
   2.291 +ui_tab_bg_color=#dadada
   2.292 +
   2.293 +#
   2.294 +# Gray theme (traditional)
   2.295 +#
   2.296 +#ui_fg_color=black
   2.297 +#ui_main_bg_color=#c6c6c6
   2.298 +#ui_text_bg_color=bfdabf
   2.299 +#ui_selection_color=#191970
   2.300 +#ui_button_highlight_color=#a9a9a9
   2.301 +#ui_tab_active_bg_color=#87aca7
   2.302 +#ui_tab_active_fg_color=black
   2.303 +#ui_tab_bg_color=#b7beb7
   2.304 +
   2.305 +#
   2.306 +# Earthly theme:
   2.307 +#
   2.308 +#ui_fg_color=#100404
   2.309 +#ui_main_bg_color=#c2a47b
   2.310 +#ui_text_bg_color=#cdc9a5
   2.311 +#ui_selection_color=#763024
   2.312 +#ui_tab_active_bg_color=#af4b3f
   2.313 +#ui_tab_active_fg_color=white
   2.314 +#ui_tab_bg_color=#d2b48c
   2.315 +
   2.316 +#
   2.317 +# Greenish theme:
   2.318 +#
   2.319 +#ui_fg_color=#100404
   2.320 +#ui_main_bg_color=#c8d394
   2.321 +#ui_text_bg_color=#bdd8b6
   2.322 +#ui_selection_color=#7c5f42
   2.323 +#ui_button_highlight_color=#adad70
   2.324 +#ui_tab_active_bg_color=#b5b679
   2.325 +#ui_tab_active_fg_color=#b60907
   2.326 +#ui_tab_bg_color=#cac682
   2.327 +
   2.328 +
   2.329 +# Size of dillo panel
   2.330 +# tiny   : buttons, location, and progress boxes in one row
   2.331 +# small  : location in one row, buttons + progress boxes in another
   2.332 +# medium : adds text labels to buttons and boxes
   2.333 +#panel_size=tiny
   2.334  panel_size=small
   2.335 +#panel_size=medium
   2.336  
   2.337  #small_icons=NO
   2.338  
   2.339 @@ -179,10 +325,11 @@
   2.340  #show_save=YES
   2.341  #show_stop=YES
   2.342  #show_bookmarks=YES
   2.343 +#show_tools=YES
   2.344  #show_filemenu=YES
   2.345  #show_clear_url=YES
   2.346 -#show_url=YES
   2.347  #show_search=YES
   2.348 +#show_help=YES
   2.349  #show_progress_box=YES
   2.350  
   2.351  # Start dillo with the panels hidden?
   2.352 @@ -194,19 +341,25 @@
   2.353  # useful to keep away from the mouse by forcing enter to submit.
   2.354  #enterpress_forces_submit=NO
   2.355  
   2.356 -# Some forms lack a submit button, and dillo can generate a custom one
   2.357 -# internally. Unfortunately there's no guarantee for it to work. :(
   2.358 -# (my experience is that forms that lack a submit rely on Javascript)
   2.359 -#generate_submit=NO
   2.360 -
   2.361  # A mouse's middle click over a link opens a new Tab.
   2.362  # If you prefer to open a new Window instead, set it to NO.
   2.363  #middle_click_opens_new_tab=YES
   2.364  
   2.365 +# A mouse's middle click over a tab closes the Tab.
   2.366 +# With mousewheel mouses, right click feels way better (set to YES).
   2.367 +#right_click_closes_tab=NO
   2.368 +
   2.369 +# Mouse middle click by default drives drag-scrolling.
   2.370 +# To paste an URL into the window instead of scrolling, set it to NO.
   2.371 +# Note: You could always paste the URL onto the URL box clear button.
   2.372 +#middle_click_drags_page=YES
   2.373 +
   2.374  # Focus follows new Tabs.
   2.375  # You can hold SHIFT to temporarily revert this behaviour.
   2.376  #focus_new_tab=YES
   2.377  
   2.378 +# Ask before quitting Dillo with more than one window or tab open.
   2.379 +#show_quit_dialog=YES
   2.380  
   2.381  #-------------------------------------------------------------------------
   2.382  #                        DEBUG MESSAGES SECTION