wok rev 2795

Add Dillo - Light Web browse (~300 kb)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 28 15:38:14 2009 +0200 (2009-04-28)
parents 3a3ac96180a9
children a36fcdad71b1
files dillo/receipt dillo/stuff/dillo.desktop dillo/stuff/dillo.png dillo/stuff/dillorc
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dillo/receipt	Tue Apr 28 15:38:14 2009 +0200
     1.3 @@ -0,0 +1,38 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dillo"
     1.7 +VERSION="2.0"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Light and fast web browse using FLTK."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.12 +WEB_SITE="http://www.dillo.org/"
    1.13 +WGET_URL="http://www.dillo.org/download/$TARBALL"
    1.14 +DEPENDS="fltk-2.0.x libpng jpeg zlib"
    1.15 +BUILD_DEPENDS="$DEPENDS fltk-2.0.x-dev libpng-dev jpeg-dev zlib-dev"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure \
    1.22 +		--sysconfdir=/etc/dillo \
    1.23 +		--prefix=/usr \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make DESTDIR=$PWD/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/lib
    1.33 +	cp -a $_pkg/usr/bin $fs/usr
    1.34 +	cp -a $_pkg/usr/lib/dillo $fs/usr/lib
    1.35 +	strip -s $fs/usr/lib/dillo/dpi/*/*
    1.36 +	chmod +x $fs/usr/bin/*
    1.37 +	# Config files with custom dillorc to have webhomepage.
    1.38 +	cp -a $_pkg/etc $fs
    1.39 +	cp -a stuff/dillorc $fs/etc/dillo
    1.40 +	chown -R root.root $fs
    1.41 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/dillo/stuff/dillo.desktop	Tue Apr 28 15:38:14 2009 +0200
     2.3 @@ -0,0 +1,11 @@
     2.4 +[Desktop Entry]
     2.5 +Name=Dillo Web Browser
     2.6 +Name[de]=Netznavigator Dillo
     2.7 +Name[fr]=Navigateur Web Dillo
     2.8 +Name[pt_PT]=Navegador Web Dillo
     2.9 +Type=Application
    2.10 +Categories=Network;
    2.11 +MimeType=text/html;application/xhtml+xml;
    2.12 +Exec=dillo %u
    2.13 +Icon=dillo.png
    2.14 +Terminal=false
     3.1 Binary file dillo/stuff/dillo.png has changed
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/dillo/stuff/dillorc	Tue Apr 28 15:38:14 2009 +0200
     4.3 @@ -0,0 +1,232 @@
     4.4 +# dillorc
     4.5 +# Sample dillo initialization file.
     4.6 +#
     4.7 +# Lines that start with a '#' are comments.
     4.8 +# "#option=..." shows the built-in default.
     4.9 +# "# option=..." is an additional example.
    4.10 +# "option=..." overrides the built-in value.
    4.11 +
    4.12 +#-------------------------------------------------------------------------
    4.13 +#                             FIRST SECTION                             :)
    4.14 +#-------------------------------------------------------------------------
    4.15 +
    4.16 +# Set the desired initial browser size
    4.17 +# geometry=650x545+0+20
    4.18 +#geometry=780x580
    4.19 +
    4.20 +# Change this if you want to have text-only browsing from the start.
    4.21 +# (there's a toggle button near the bug meter to change this on-the-fly)
    4.22 +#load_images=YES
    4.23 +
    4.24 +
    4.25 +# Change the buffering scheme for drawing
    4.26 +# 0 no double buffering - useful for debugging
    4.27 +# 1 light buffering using a single back buffer for all windows
    4.28 +# 2 full fltk-based double buffering for all windows
    4.29 +#buffered_drawing=1
    4.30 +
    4.31 +# Set your default directory for download/save operations
    4.32 +#save_dir=/tmp
    4.33 +
    4.34 +#-------------------------------------------------------------------------
    4.35 +#                           RENDERING SECTION
    4.36 +#-------------------------------------------------------------------------
    4.37 +
    4.38 +# Fontname for variable width rendering (most of the text).
    4.39 +#   - some fonts may slow down rendering.
    4.40 +#   - try to tune a fontname/font_factor combination.
    4.41 +# Ex. {helvetica, lucida, times, "new century schoolbook", utopia, ...}
    4.42 +# vw_fontname="new century schoolbook"
    4.43 +# vw_fontname="helvetica"
    4.44 +# vw_fontname="times"
    4.45 +# vw_fontname="Bitstream vera Serif"
    4.46 +# vw_fontname="arial"
    4.47 +#vw_fontname="DejaVu Sans"
    4.48 +
    4.49 +# Fontname for fixed width rendering (mainly text quoted with <pre>)
    4.50 +# fw_fontname=courier
    4.51 +# fw_fontname="Bitstream Vera Sans Mono"
    4.52 +# fw_fontname="Andale Mono"
    4.53 +#fw_fontname="DejaVu Sans Mono"
    4.54 +
    4.55 +# All fontsizes are scaled by this value
    4.56 +# font_factor=1.5
    4.57 +#font_factor=1.0
    4.58 +
    4.59 +# Show tooltip popup for images?
    4.60 +# Note: We use the "title" attribute and not "alt".
    4.61 +#       More info at: http://bugzilla.mozilla.org/show_bug.cgi?id=25537
    4.62 +# *** NOT HOOKED UP YET ***
    4.63 +#
    4.64 +#show_tooltip=YES
    4.65 +
    4.66 +# Set this to YES if you want to limit the word wrap width to the viewport
    4.67 +# width (may be useful for iPAQ)
    4.68 +# *** NOT HOOKED UP YET ***
    4.69 +#
    4.70 +#limit_text_width=NO
    4.71 +
    4.72 +
    4.73 +#-------------------------------------------------------------------------
    4.74 +#                            PARSING SECTION
    4.75 +#-------------------------------------------------------------------------
    4.76 +
    4.77 +# If you prefer more accurate HTML bug diagnosis over better rendering
    4.78 +# (page authors and webmasters) set the following to "NO".
    4.79 +#
    4.80 +#w3c_plus_heuristics=YES
    4.81 +
    4.82 +
    4.83 +#-------------------------------------------------------------------------
    4.84 +#                            NETWORK SECTION
    4.85 +#-------------------------------------------------------------------------
    4.86 +
    4.87 +# Set the start page.
    4.88 +# start_page="about:blank"
    4.89 +# start_page="http://www.dillo.org"
    4.90 +# start_page="file:/home/jcid/custom_page.html"
    4.91 +start_page="file:/usr/share/webhome/index.html"
    4.92 +
    4.93 +# Set the home location
    4.94 +# home="file:/home/jcid/HomePage/Home.html"
    4.95 +home="file:/usr/share/webhome/index.html"
    4.96 +
    4.97 +# Set the URL used by the web search dialog.
    4.98 +# "%s" is replaced with the search keywords separated by '+'.
    4.99 +# search_url="http://search.lycos.com/?query=%s"
   4.100 +# search_url="http://www.alltheweb.com/search?cat=web&query=%s"
   4.101 +#search_url="http://www.google.com/search?q=%s"
   4.102 +
   4.103 +# Set the proxy information for http.
   4.104 +# WARNING: dillo uses wget for ftp and https. To use a proxy for those
   4.105 +# protocols, you will need to configure wget.
   4.106 +# http_proxy="http://localhost:8080/"
   4.107 +#(by default, no proxy is used)
   4.108 +
   4.109 +# If you need to provide a  user/password pair for the proxy,
   4.110 +# set the proxy user name here and Dillo will ask for the password later.
   4.111 +# http_proxyuser="joe"
   4.112 +#(by default, no proxy is used)
   4.113 +
   4.114 +# Set the domains to access without proxy
   4.115 +# no_proxy = ".hola.com .mynet.cl .hi.de"
   4.116 +#(by default, no proxy is used)
   4.117 +
   4.118 +# Set the HTTP Referer (sic) header.
   4.119 +# Note that there is no option to reveal the page that you came from because it
   4.120 +# would endanger your privacy. 'host' and 'path' allow you to pretend that the
   4.121 +# link you followed was on the same site that you're going to.
   4.122 +# none  : Don't send any Referer header at all.
   4.123 +# host  : Send the requested URI's hostname.
   4.124 +# path  : Send the requested URI's host and path.
   4.125 +#http_referer=host
   4.126 +
   4.127 +
   4.128 +#-------------------------------------------------------------------------
   4.129 +#                            COLORS SECTION
   4.130 +#-------------------------------------------------------------------------
   4.131 +
   4.132 +# Here we can use the HTML color names or C syntax.
   4.133 +
   4.134 +# Set the background color
   4.135 +# bg_color=gray
   4.136 +# bg_color=0xd6d6c0
   4.137 +bg_color=ffffff
   4.138 +
   4.139 +# Set the text color
   4.140 +#text_color=black
   4.141 +
   4.142 +# Set the link color
   4.143 +#link_color=blue
   4.144 +
   4.145 +# If your eyes suffer with white backgrounds, change this.
   4.146 +#allow_white_bg=YES
   4.147 +
   4.148 +# Use the same colors with all documents?
   4.149 +#force_my_colors=NO
   4.150 +
   4.151 +# When set to YES, the page author's visited link color may be overridden
   4.152 +# to allow better contrast with text/links/background
   4.153 +#contrast_visited_color=YES
   4.154 +
   4.155 +# Colors for widgets inside forms.
   4.156 +# YES = toolkit's default colors, NO = use page's text and background color.
   4.157 +# ("NO" looks less traditional but more stylish).
   4.158 +standard_widget_colors=YES
   4.159 +
   4.160 +
   4.161 +#-------------------------------------------------------------------------
   4.162 +#                        USER INTERFACE SECTION
   4.163 +#-------------------------------------------------------------------------
   4.164 +
   4.165 +# Size of dillo panel (used to enlarge the browsing area)
   4.166 +# tiny   :  recommended for iPAQ (with small_icons)
   4.167 +# small  :  very nice! (it's "medium" without icon titles)
   4.168 +# medium :  nice!
   4.169 +# large  :  Traditional
   4.170 +# panel_size=tiny
   4.171 +# panel_size=small
   4.172 +# panel_size=medium
   4.173 +panel_size=small
   4.174 +
   4.175 +#small_icons=NO
   4.176 +
   4.177 +# Here you can choose to hide some widgets of the dillo panel...
   4.178 +#show_back=YES
   4.179 +#show_forw=YES
   4.180 +#show_home=YES
   4.181 +#show_reload=YES
   4.182 +#show_save=YES
   4.183 +#show_stop=YES
   4.184 +#show_bookmarks=YES
   4.185 +#show_filemenu=YES
   4.186 +#show_clear_url=YES
   4.187 +#show_url=YES
   4.188 +#show_search=YES
   4.189 +#show_progress_box=YES
   4.190 +
   4.191 +# Start dillo with the panels hidden?
   4.192 +#fullwindow_start=NO
   4.193 +
   4.194 +# When filling out forms, our default behaviour is to submit on enterpress,
   4.195 +# but only when there's a single text entry (to avoid incomplete submits).
   4.196 +# OTOH, if you have to fill out the same form repeatedly, you may find it
   4.197 +# useful to keep away from the mouse by forcing enter to submit.
   4.198 +#enterpress_forces_submit=NO
   4.199 +
   4.200 +# Some forms lack a submit button, and dillo can generate a custom one
   4.201 +# internally. Unfortunately there's no guarantee for it to work. :(
   4.202 +# (my experience is that forms that lack a submit rely on Javascript)
   4.203 +#generate_submit=NO
   4.204 +
   4.205 +# A mouse's middle click over a link opens a new Tab.
   4.206 +# If you prefer to open a new Window instead, set it to NO.
   4.207 +#middle_click_opens_new_tab=YES
   4.208 +
   4.209 +# Focus follows new Tabs.
   4.210 +# You can hold SHIFT to temporarily revert this behaviour.
   4.211 +#focus_new_tab=YES
   4.212 +
   4.213 +
   4.214 +#-------------------------------------------------------------------------
   4.215 +#                        DEBUG MESSAGES SECTION
   4.216 +#-------------------------------------------------------------------------
   4.217 +
   4.218 +# Soon we should add the "show_debug_messages=NO" option...
   4.219 +
   4.220 +# Generic messages (mainly for debugging specific parts)
   4.221 +# Change this to disable them.
   4.222 +#show_msg=YES
   4.223 +
   4.224 +
   4.225 +#-------------------------------------------------------------------------
   4.226 +#                        HTML BUG MESSAGES SECTION
   4.227 +#-------------------------------------------------------------------------
   4.228 +
   4.229 +# Accepted by the W3C validator but "strongly discouraged" by the SPEC.
   4.230 +# (Such as "TAB character inside <PRE>").
   4.231 +#show_extra_warnings=NO
   4.232 +
   4.233 +
   4.234 +# -----------------------------------------------------------------------
   4.235 +# dillorc ends here.