# HG changeset patch # User Hans-G?nter Theisgen # Date 1644069717 -3600 # Node ID c21515fa6481dcba03762d158cf85be6214d1f3f # Parent 6f7c7009cd62872033b889c108832345fd5f466c updated bird (2.0.7 -> 2.0.8) diff -r 6f7c7009cd62 -r c21515fa6481 bird/receipt --- a/bird/receipt Sat Feb 05 14:51:40 2022 +0100 +++ b/bird/receipt Sat Feb 05 15:01:57 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="bird" -VERSION="2.0.7" +VERSION="2.0.8" CATEGORY="network" TAGS="route routing daemon" SHORT_DESC="Internet routing daemon." @@ -30,9 +30,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - - cp -a $install/usr/sbin $fs/usr - cp -a $install/etc $fs - cp -a $install/var $fs + cook_copy_folders sbin + cook_copy_folders etc + cook_copy_folders var } diff -r 6f7c7009cd62 -r c21515fa6481 blackbox/stuff/menu --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/blackbox/stuff/menu Sat Feb 05 15:01:57 2022 +0100 @@ -0,0 +1,93 @@ +# This is the default menu file for Blackbox 0.33.0 and up +# suitable for SliTaz +# +# Lines beginning with the '#' character are ignored. +# +# The new syntax is simpler than the old X resource format... +# Each menu item consists of 2 or 3 fields: +# +# [command] (label) {data} +# +# where [command] is one of: +# +# [begin] [end] [exec] [exit] [reconfig] [restart] [submenu] +# [style] [stylesdir] [include] [workspaces] [config] +# +# [begin] is used for the top level menu +# [submenu] is used for submenus +# [end] must be used with BOTH [begin] and [submenu] to tell the parser to stop +# reading from the file. +# +# [exec] (label) {string} +# This will insert an item that runs a program. +# +# [exit] (label) +# This will insert an item that exits the window manager. +# +# [reconfig] (label) {string} +# This will insert an item that tells blackbox to re-read it's configuration +# files. {string} is optional, and if supplied, will execute the string with +# /bin/sh -c before the reconfiguration is performed. (this is helpful for +# writing multiple config files and switching between them) +# +# [restart] (label) {string} +# This will insert an item to restart the window manager. {string} is +# optional, and if omitted, blackbox will restart itself. If {string} is +# specified, then a different window manager will be started. +# +# [style] (filename) +# This will insert an item to reconfigure blackbox with the new style. This +# change is saved when blackbox exits or restarts. +# +# [include] (filename) +# This will read more menu items from the file "filename". The file cannot +# contain a [begin] or [end], except for the [end] needed for submenus. +# +# [workspaces] (label) +# This tells Blackbox to insert a "link" to the workspaces menu directly +# into your menu. +# +# [config] (label) +# This tells Blackbox to insert the ConfigMenu into your menu. The ConfigMenu +# allows you to change several options found in your ~/.blackboxrc file on the +# fly. +# +# example: + +[begin] (Blackbox) + [exec] (xterm) {xterm -ls} + [exec] (Sakura) {sakura} + + [exec] (leafpad) {leafpad} + [exec] (ePDFView) {epdfview} + + [exec] (SliTaz Panel) {tazpanel} + + [submenu] (Graphics) + [exec] (Gpicview) {gpicview} + [end] + + [submenu] (Internet) + [exec] (Midori) {midori} + [exec] (Tazweb) {tazweb} + [end] + + [submenu] (Styles) {Choose a style...} + [stylesdir] (/usr/share/blackbox/styles) + [end] + + [workspaces] (Workspace List) + [config] (Configuration) + + [reconfig] (Reconfigure) + [restart] (Restart) + [submenu] (Others) {Other Window Managers} + [restart] (Start Enlightenment) {enlightenment} + [restart] (Start openbox) {openbox} + [restart] (Start pekwm) {pekwm} + [end] + + [exit] (Exit) +[end] + +# End of example menu.