wok-next rev 16449
ARM: add lockdis + nmap and improve Dillo integration in slitaz
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Apr 19 01:25:01 2014 +0200 (2014-04-19) |
parents | 42372193a480 |
children | 35c68ef9e128 |
files | dillo/receipt dillo/stuff/dillorc lockdis/receipt nmap/receipt |
line diff
1.1 --- a/dillo/receipt Sat Apr 19 00:20:05 2014 +0200 1.2 +++ b/dillo/receipt Sat Apr 19 01:25:01 2014 +0200 1.3 @@ -35,9 +35,11 @@ 1.4 cp -a $install/usr/lib/dillo $fs/usr/lib 1.5 strip -s $fs/usr/lib/dillo/dpi/*/* 1.6 chmod +x $fs/usr/bin/* 1.7 - # Config files with custom dillorc to have webhomepage. 1.8 + # Config files with custom dillorc to have webhome 1.9 cp -a $install/etc $fs 1.10 cp -a $stuff/dillorc $fs/etc/dillo 1.11 cp -a $stuff/webhome $fs/usr/share 1.12 + # Dillo version for user agent string 1.13 + sed -i s"/_dillo_version_/$VERSION/" $fs/etc/dillo/dillorc 1.14 chown -R root.root $fs 1.15 }
2.1 --- a/dillo/stuff/dillorc Sat Apr 19 00:20:05 2014 +0200 2.2 +++ b/dillo/stuff/dillorc Sat Apr 19 01:25:01 2014 +0200 2.3 @@ -120,6 +120,12 @@ 2.4 # Notice that there is no "penalty_em_dash_left_2", since breaking 2.5 # left of an em-dash makes the line *begin*, not *end* with a dash. 2.6 2.7 +# This factor is multiplied with the line height to get the 2.8 +# stretchability of a non-justified line. The larger this factor (and 2.9 +# thus, the stretchability), the less likely the words are hyphenated; 2.10 +# so you can use this value to control hyphenation of non-justified 2.11 +# text. 2.12 +#stretchability_factor=1 2.13 2.14 #------------------------------------------------------------------------- 2.15 # PARSING SECTION 2.16 @@ -163,6 +169,7 @@ 2.17 # http_language="de" 2.18 # http_language="pt-BR" 2.19 # http_language="vi,de-CH,de;q=0.5,th;q=0.3" 2.20 +http_language="en,en_US" 2.21 2.22 # Maximum number of simultaneous TCP connections to a single server or proxy. 2.23 # http_max_conns=6 2.24 @@ -205,6 +212,7 @@ 2.25 # http_user_agent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0" 2.26 # http_user_agent="Wget/1.12 (linux-gnu)" 2.27 #The default is "Dillo/"+current_version_number 2.28 +http_user_agent="Dillo/_dillo_version_ (SliTaz GNU/Linux)" 2.29 2.30 #------------------------------------------------------------------------- 2.31 # COLORS SECTION 2.32 @@ -218,6 +226,10 @@ 2.33 # If your eyes suffer with white backgrounds, change this. 2.34 allow_white_bg=YES 2.35 2.36 +# If allow_white_bg is set to NO, white backgrounds are replaced by 2.37 +# this color. 2.38 +#white_bg_replacement=0xe0e0a3 2.39 + 2.40 # When set to YES, the page author's visited link color may be overridden 2.41 # to allow better contrast with text/links/background 2.42 #contrast_visited_color=YES 2.43 @@ -315,8 +327,8 @@ 2.44 # tiny : buttons, location, and progress boxes in one row 2.45 # small : location in one row, buttons + progress boxes in another 2.46 # medium : adds text labels to buttons and boxes 2.47 -#panel_size=tiny 2.48 -panel_size=small 2.49 +panel_size=tiny 2.50 +#panel_size=small 2.51 #panel_size=medium 2.52 2.53 #small_icons=NO
3.1 --- a/lockdis/receipt Sat Apr 19 00:20:05 2014 +0200 3.2 +++ b/lockdis/receipt Sat Apr 19 01:25:01 2014 +0200 3.3 @@ -9,13 +9,13 @@ 3.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.5 WEB_SITE="http://lockdis.sourceforge.net/" 3.6 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 3.7 +HOST_ARCH="i486 arm" 3.8 3.9 DEPENDS="xorg-libX11 xorg-libXau xorg-libXpm xorg-libXdmcp" 3.10 3.11 # Rules to configure and make the package. 3.12 compile_rules() 3.13 { 3.14 - cd $src 3.15 ./configure \ 3.16 --prefix=/usr \ 3.17 --infodir=/usr/share/info \ 3.18 @@ -30,4 +30,3 @@ 3.19 mkdir -p $fs/usr 3.20 cp -a $install/usr/bin $fs/usr 3.21 } 3.22 -
4.1 --- a/nmap/receipt Sat Apr 19 00:20:05 2014 +0200 4.2 +++ b/nmap/receipt Sat Apr 19 01:25:01 2014 +0200 4.3 @@ -10,9 +10,10 @@ 4.4 WEB_SITE="http://nmap.org/" 4.5 WGET_URL="http://download.insecure.org/nmap/dist/$TARBALL" 4.6 TAGS="network" 4.7 +HOST_ARCH="i486 arm" 4.8 4.9 DEPENDS="openssl libpcap pcre gcc-lib-base" 4.10 -BUILD_DEPENDS="$DEPENDS libpcap-dev python-dev openssl-dev pcre-dev" 4.11 +BUILD_DEPENDS="libpcap-dev python-dev openssl-dev pcre-dev" 4.12 4.13 # Rules to configure and make the package. 4.14 compile_rules()