wok rev 24371

updated bird (2.0.7 -> 2.0.8)
author Hans-G?nter Theisgen
date Sat Feb 05 15:01:57 2022 +0100 (2022-02-05)
parents 6f7c7009cd62
children b0897e8bc1a4
files bird/receipt blackbox/stuff/menu
line diff
     1.1 --- a/bird/receipt	Sat Feb 05 14:51:40 2022 +0100
     1.2 +++ b/bird/receipt	Sat Feb 05 15:01:57 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="bird"
     1.7 -VERSION="2.0.7"
     1.8 +VERSION="2.0.8"
     1.9  CATEGORY="network"
    1.10  TAGS="route routing daemon"
    1.11  SHORT_DESC="Internet routing daemon."
    1.12 @@ -30,9 +30,7 @@
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr
    1.17 -
    1.18 -	cp -a $install/usr/sbin	$fs/usr
    1.19 -	cp -a $install/etc	$fs
    1.20 -	cp -a $install/var	$fs
    1.21 +	cook_copy_folders	sbin
    1.22 +	cook_copy_folders	etc
    1.23 +	cook_copy_folders	var
    1.24  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/blackbox/stuff/menu	Sat Feb 05 15:01:57 2022 +0100
     2.3 @@ -0,0 +1,93 @@
     2.4 +# This is the default menu file for Blackbox 0.33.0 and up
     2.5 +# suitable for SliTaz
     2.6 +# 
     2.7 +# Lines beginning with the '#' character are ignored.
     2.8 +#
     2.9 +# The new syntax is simpler than the old X resource format...
    2.10 +# Each menu item consists of 2 or 3 fields:
    2.11 +#
    2.12 +#	[command]  (label)  {data}
    2.13 +#
    2.14 +# where [command] is one of:
    2.15 +#
    2.16 +#   [begin] [end] [exec] [exit] [reconfig] [restart] [submenu] 
    2.17 +#   [style] [stylesdir] [include] [workspaces] [config]
    2.18 +#
    2.19 +# [begin] is used for the top level menu
    2.20 +# [submenu] is used for submenus
    2.21 +# [end] must be used with BOTH [begin] and [submenu] to tell the parser to stop
    2.22 +#   reading from the file.
    2.23 +#
    2.24 +# [exec] (label) {string}
    2.25 +# This will insert an item that runs a program.
    2.26 +#
    2.27 +# [exit] (label)
    2.28 +# This will insert an item that exits the window manager.
    2.29 +#
    2.30 +# [reconfig] (label) {string}
    2.31 +# This will insert an item that tells blackbox to re-read it's configuration
    2.32 +#  files.  {string} is optional, and if supplied, will execute the string with
    2.33 +#  /bin/sh -c before the reconfiguration is performed.  (this is helpful for
    2.34 +#  writing multiple config files and switching between them)
    2.35 +#
    2.36 +# [restart] (label) {string}
    2.37 +# This will insert an item to restart the window manager.  {string} is
    2.38 +# optional, and if omitted, blackbox will restart itself.  If {string} is
    2.39 +# specified, then a different window manager will be started.
    2.40 +#
    2.41 +# [style] (filename)
    2.42 +# This will insert an item to reconfigure blackbox with the new style. This
    2.43 +# change is saved when blackbox exits or restarts.
    2.44 +#
    2.45 +# [include] (filename)
    2.46 +# This will read more menu items from the file "filename".  The file cannot
    2.47 +# contain a [begin] or [end], except for the [end] needed for submenus.
    2.48 +#
    2.49 +# [workspaces] (label)
    2.50 +# This tells Blackbox to insert a "link" to the workspaces menu directly
    2.51 +# into your menu.
    2.52 +#
    2.53 +# [config] (label)
    2.54 +# This tells Blackbox to insert the ConfigMenu into your menu.  The ConfigMenu
    2.55 +# allows you to change several options found in your ~/.blackboxrc file on the
    2.56 +# fly.
    2.57 +#
    2.58 +# example:
    2.59 +
    2.60 +[begin] (Blackbox)
    2.61 +  [exec] (xterm)    {xterm -ls}
    2.62 +  [exec] (Sakura)   {sakura}
    2.63 +
    2.64 +  [exec] (leafpad)    {leafpad}
    2.65 +  [exec] (ePDFView)   {epdfview}
    2.66 +
    2.67 +  [exec] (SliTaz Panel)   {tazpanel}
    2.68 +
    2.69 +  [submenu] (Graphics)
    2.70 +    [exec] (Gpicview)     {gpicview}
    2.71 +  [end]
    2.72 +
    2.73 +  [submenu] (Internet)
    2.74 +    [exec] (Midori)     {midori}
    2.75 +    [exec] (Tazweb)     {tazweb}
    2.76 +  [end]
    2.77 +
    2.78 +  [submenu] (Styles) {Choose a style...}
    2.79 +    [stylesdir] (/usr/share/blackbox/styles)
    2.80 +  [end]
    2.81 +
    2.82 +  [workspaces] (Workspace List)
    2.83 +  [config] (Configuration)
    2.84 +
    2.85 +  [reconfig] (Reconfigure)
    2.86 +  [restart] (Restart)
    2.87 +  [submenu] (Others)              {Other Window Managers}
    2.88 +    [restart] (Start Enlightenment) {enlightenment}
    2.89 +    [restart] (Start openbox)     {openbox}
    2.90 +    [restart] (Start pekwm)       {pekwm}
    2.91 +  [end]
    2.92 +
    2.93 +  [exit] (Exit)
    2.94 +[end]
    2.95 +
    2.96 +# End of example menu.