ion-3ds-20060317
This commit is contained in:
parent
3722f38043
commit
75626a7eeb
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.32 2006/03/05 16:20:09 pedro Exp $
|
||||
# $OpenBSD: Makefile,v 1.33 2006/03/19 17:36:41 pedro Exp $
|
||||
|
||||
COMMENT= "light, keyboard friendly window manager"
|
||||
|
||||
DISTNAME= ion-3ds-20060305
|
||||
DISTNAME= ion-3ds-20060317
|
||||
CATEGORIES= x11
|
||||
|
||||
HOMEPAGE= http://modeemi.cs.tut.fi/~tuomov/ion/
|
||||
|
@ -1,4 +1,4 @@
|
||||
MD5 (ion-3ds-20060305.tar.gz) = b2ab5225460a106dbe17a170219e594c
|
||||
RMD160 (ion-3ds-20060305.tar.gz) = f88b6777b4432850c65540ba896d36ef44a186d2
|
||||
SHA1 (ion-3ds-20060305.tar.gz) = 066725c81e8186b89c72b6dfbd7526d4aa02e04b
|
||||
SIZE (ion-3ds-20060305.tar.gz) = 612653
|
||||
MD5 (ion-3ds-20060317.tar.gz) = bed9ee5b45cbb46ee086c2b2ed2bf5d4
|
||||
RMD160 (ion-3ds-20060317.tar.gz) = 0be63bdc4aae60199b3f8d82c185866798246927
|
||||
SHA1 (ion-3ds-20060317.tar.gz) = 20635798e068138b36cae6ba99b4b6712e4348d5
|
||||
SIZE (ion-3ds-20060317.tar.gz) = 613630
|
||||
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-etc_cfg_bindings_lua,v 1.1 2006/03/05 00:14:32 pedro Exp $
|
||||
--- etc/cfg_bindings.lua.orig Sat Mar 4 21:08:08 2006
|
||||
+++ etc/cfg_bindings.lua Sat Mar 4 21:08:23 2006
|
||||
@@ -52,8 +52,8 @@ defbindings("WScreen", {
|
||||
kpress(META.."F9", "ioncore.create_ws(_)"),
|
||||
|
||||
bdoc("Display the main menu."),
|
||||
- kpress(ALTMETA.."F12", "mod_query.query_menu(_, 'mainmenu', 'Main menu: ')"),
|
||||
- --kpress(ALTMETA.."F12", "mod_menu.menu(_, _sub, 'mainmenu', {big=true})"),
|
||||
+ --kpress(ALTMETA.."F12", "mod_query.query_menu(_, 'mainmenu', 'Main menu: ')"),
|
||||
+ kpress(ALTMETA.."F12", "mod_menu.menu(_, _sub, 'mainmenu', {big=true})"),
|
||||
mpress("Button3", "mod_menu.pmenu(_, _sub, 'mainmenu')"),
|
||||
|
||||
bdoc("Display the window list menu."),
|
@ -1,15 +1,14 @@
|
||||
$OpenBSD: patch-etc_cfg_ion_lua,v 1.1 2005/09/29 22:19:39 pedro Exp $
|
||||
--- etc/cfg_ion.lua.orig Sat Aug 20 08:33:49 2005
|
||||
+++ etc/cfg_ion.lua Thu Sep 29 18:20:00 2005
|
||||
@@ -57,6 +57,11 @@ dopath("cfg_bindings")
|
||||
-- Define some menus (mod_menu required)
|
||||
dopath("cfg_menus")
|
||||
$OpenBSD: patch-etc_cfg_ion_lua,v 1.2 2006/03/19 17:36:41 pedro Exp $
|
||||
--- etc/cfg_ion.lua.orig Fri Mar 17 16:43:04 2006
|
||||
+++ etc/cfg_ion.lua Sun Mar 19 11:14:54 2006
|
||||
@@ -54,5 +54,10 @@ dopath("cfg_modules")
|
||||
--dopath("mod_dock")
|
||||
--dopath("mod_sp")
|
||||
|
||||
+-- Load workspace nesting stuff.
|
||||
+dopath("detach")
|
||||
+dopath("nest-ws")
|
||||
+detach.setup_hooks()
|
||||
+
|
||||
-- Load additional user configuration. 'true' as second parameter asks
|
||||
-- Ion not to complain if the file is not found.
|
||||
-- Deprecated.
|
||||
dopath("cfg_user", true)
|
||||
|
21
x11/ion/patches/patch-etc_cfg_ioncore_lua
Normal file
21
x11/ion/patches/patch-etc_cfg_ioncore_lua
Normal file
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-etc_cfg_ioncore_lua,v 1.1 2006/03/19 17:36:41 pedro Exp $
|
||||
--- etc/cfg_ioncore.lua.orig Sun Mar 19 11:10:01 2006
|
||||
+++ etc/cfg_ioncore.lua Sun Mar 19 11:12:23 2006
|
||||
@@ -57,8 +57,8 @@ defbindings("WScreen", {
|
||||
kpress(META.."F9", "ioncore.create_ws(_)"),
|
||||
|
||||
bdoc("Display the main menu."),
|
||||
- kpress(ALTMETA.."F12", "mod_query.query_menu(_, 'mainmenu', 'Main menu: ')"),
|
||||
- --kpress(ALTMETA.."F12", "mod_menu.menu(_, _sub, 'mainmenu', {big=true})"),
|
||||
+ --kpress(ALTMETA.."F12", "mod_query.query_menu(_, 'mainmenu', 'Main menu: ')"),
|
||||
+ kpress(ALTMETA.."F12", "mod_menu.menu(_, _sub, 'mainmenu', {big=true})"),
|
||||
mpress("Button3", "mod_menu.pmenu(_, _sub, 'mainmenu')"),
|
||||
|
||||
bdoc("Display the window list menu."),
|
||||
@@ -291,4 +291,6 @@ defctxmenu("WFrame", "Frame", {
|
||||
menuentry("Clear tags", "ioncore.clear_tags()"),
|
||||
menuentry("Window info", "mod_query.show_clientwin(_, _sub)",
|
||||
"_sub:WClientWin"),
|
||||
+ submenu("Attach", "menuattach"),
|
||||
+ submenu("Detach", "menudetach"),
|
||||
})
|
@ -1,10 +0,0 @@
|
||||
$OpenBSD: patch-etc_cfg_menus_lua,v 1.1 2005/09/29 22:19:39 pedro Exp $
|
||||
--- etc/cfg_menus.lua.orig Sat Aug 20 08:33:49 2005
|
||||
+++ etc/cfg_menus.lua Wed Sep 28 23:46:29 2005
|
||||
@@ -43,4 +43,6 @@ defctxmenu("WFrame", {
|
||||
menuentry("Clear tags", "ioncore.clear_tags()"),
|
||||
menuentry("Window info", "mod_query.show_clientwin(_, _sub)",
|
||||
"_sub:WClientWin"),
|
||||
+ submenu("Attach", "menuattach"),
|
||||
+ submenu("Detach", "menudetach"),
|
||||
})
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.15 2006/03/05 16:20:09 pedro Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.16 2006/03/19 17:36:41 pedro Exp $
|
||||
%%SHARED%%
|
||||
bin/ion3
|
||||
bin/pwm3
|
||||
@ -52,18 +52,16 @@ share/doc/ion3/LICENSE
|
||||
share/doc/ion3/README
|
||||
share/doc/ion3/RELNOTES
|
||||
share/examples/ion3/
|
||||
share/examples/ion3/cfg_bindings.lua
|
||||
share/examples/ion3/cfg_dock.lua
|
||||
share/examples/ion3/cfg_floatws.lua
|
||||
share/examples/ion3/cfg_ion.lua
|
||||
share/examples/ion3/cfg_ioncore.lua
|
||||
share/examples/ion3/cfg_ionws.lua
|
||||
share/examples/ion3/cfg_kludges.lua
|
||||
share/examples/ion3/cfg_menu.lua
|
||||
share/examples/ion3/cfg_menus.lua
|
||||
share/examples/ion3/cfg_modules.lua
|
||||
share/examples/ion3/cfg_panews.lua
|
||||
share/examples/ion3/cfg_pwm.lua
|
||||
share/examples/ion3/cfg_pwm_bindings.lua
|
||||
share/examples/ion3/cfg_pwm_menus.lua
|
||||
share/examples/ion3/cfg_query.lua
|
||||
share/examples/ion3/cfg_sp.lua
|
||||
share/examples/ion3/cfg_statusbar.lua
|
||||
@ -87,7 +85,16 @@ share/ion3/welcome.cs.txt
|
||||
share/ion3/welcome.de.txt
|
||||
share/ion3/welcome.fi.txt
|
||||
share/ion3/welcome.txt
|
||||
share/locale/
|
||||
share/locale/cs/
|
||||
share/locale/cs/LC_MESSAGES/
|
||||
share/locale/cs/LC_MESSAGES/ion3.mo
|
||||
share/locale/de/
|
||||
share/locale/de/LC_MESSAGES/
|
||||
share/locale/de/LC_MESSAGES/ion3.mo
|
||||
share/locale/fi/
|
||||
share/locale/fi/LC_MESSAGES/
|
||||
share/locale/fi/LC_MESSAGES/ion3.mo
|
||||
share/locale/ru/
|
||||
share/locale/ru/LC_MESSAGES/
|
||||
share/locale/ru/LC_MESSAGES/ion3.mo
|
||||
|
Loading…
Reference in New Issue
Block a user