# HG changeset patch # User Christophe Lincoln # Date 1397863501 -7200 # Node ID 95324ca5396c7ce1ae7dcbc7a1e87e13e4ea9f26 # Parent 42372193a4802f7a5cfdf861367497156288441e ARM: add lockdis + nmap and improve Dillo integration in slitaz diff -r 42372193a480 -r 95324ca5396c dillo/receipt --- a/dillo/receipt Sat Apr 19 00:20:05 2014 +0200 +++ b/dillo/receipt Sat Apr 19 01:25:01 2014 +0200 @@ -35,9 +35,11 @@ cp -a $install/usr/lib/dillo $fs/usr/lib strip -s $fs/usr/lib/dillo/dpi/*/* chmod +x $fs/usr/bin/* - # Config files with custom dillorc to have webhomepage. + # Config files with custom dillorc to have webhome cp -a $install/etc $fs cp -a $stuff/dillorc $fs/etc/dillo cp -a $stuff/webhome $fs/usr/share + # Dillo version for user agent string + sed -i s"/_dillo_version_/$VERSION/" $fs/etc/dillo/dillorc chown -R root.root $fs } diff -r 42372193a480 -r 95324ca5396c dillo/stuff/dillorc --- a/dillo/stuff/dillorc Sat Apr 19 00:20:05 2014 +0200 +++ b/dillo/stuff/dillorc Sat Apr 19 01:25:01 2014 +0200 @@ -120,6 +120,12 @@ # Notice that there is no "penalty_em_dash_left_2", since breaking # left of an em-dash makes the line *begin*, not *end* with a dash. +# This factor is multiplied with the line height to get the +# stretchability of a non-justified line. The larger this factor (and +# thus, the stretchability), the less likely the words are hyphenated; +# so you can use this value to control hyphenation of non-justified +# text. +#stretchability_factor=1 #------------------------------------------------------------------------- # PARSING SECTION @@ -163,6 +169,7 @@ # http_language="de" # http_language="pt-BR" # http_language="vi,de-CH,de;q=0.5,th;q=0.3" +http_language="en,en_US" # Maximum number of simultaneous TCP connections to a single server or proxy. # http_max_conns=6 @@ -205,6 +212,7 @@ # http_user_agent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0" # http_user_agent="Wget/1.12 (linux-gnu)" #The default is "Dillo/"+current_version_number +http_user_agent="Dillo/_dillo_version_ (SliTaz GNU/Linux)" #------------------------------------------------------------------------- # COLORS SECTION @@ -218,6 +226,10 @@ # If your eyes suffer with white backgrounds, change this. allow_white_bg=YES +# If allow_white_bg is set to NO, white backgrounds are replaced by +# this color. +#white_bg_replacement=0xe0e0a3 + # When set to YES, the page author's visited link color may be overridden # to allow better contrast with text/links/background #contrast_visited_color=YES @@ -315,8 +327,8 @@ # tiny : buttons, location, and progress boxes in one row # small : location in one row, buttons + progress boxes in another # medium : adds text labels to buttons and boxes -#panel_size=tiny -panel_size=small +panel_size=tiny +#panel_size=small #panel_size=medium #small_icons=NO diff -r 42372193a480 -r 95324ca5396c lockdis/receipt --- a/lockdis/receipt Sat Apr 19 00:20:05 2014 +0200 +++ b/lockdis/receipt Sat Apr 19 01:25:01 2014 +0200 @@ -9,13 +9,13 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://lockdis.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +HOST_ARCH="i486 arm" DEPENDS="xorg-libX11 xorg-libXau xorg-libXpm xorg-libXdmcp" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ @@ -30,4 +30,3 @@ mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr } - diff -r 42372193a480 -r 95324ca5396c nmap/receipt --- a/nmap/receipt Sat Apr 19 00:20:05 2014 +0200 +++ b/nmap/receipt Sat Apr 19 01:25:01 2014 +0200 @@ -10,9 +10,10 @@ WEB_SITE="http://nmap.org/" WGET_URL="http://download.insecure.org/nmap/dist/$TARBALL" TAGS="network" +HOST_ARCH="i486 arm" DEPENDS="openssl libpcap pcre gcc-lib-base" -BUILD_DEPENDS="$DEPENDS libpcap-dev python-dev openssl-dev pcre-dev" +BUILD_DEPENDS="libpcap-dev python-dev openssl-dev pcre-dev" # Rules to configure and make the package. compile_rules()