Browse Source

ctwm: Updated (3.6 -> 3.8a)

stable/0.2
Christian Wiese 14 years ago
parent
commit
e219c66757
  1. 2
      x11/ctwm/ctwm.conf
  2. 4
      x11/ctwm/ctwm.desc
  3. 28
      x11/ctwm/fix-comment.patch
  4. 90
      x11/ctwm/yyparse.patch

2
x11/ctwm/ctwm.conf

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../ctwm/ctwm.conf
# Copyright (C) 2011 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
@ -13,6 +14,7 @@
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
hook_add preconf 5 "cp Imakefile.local{-template,}"
hook_add premake 5 "tar $taropt `match_source_file -p ctwm-images`"
hook_add postmake 5 "$MAKE install.man"
hook_add postinstall 3 "register_wm ctwm CTWM $bindir/ctwm"

4
x11/ctwm/ctwm.desc

@ -27,9 +27,9 @@
[L] OpenSource
[S] Stable
[V] 3.6
[V] 3.8a
[P] X -----5---9 120.500
[D] 766067885 ctwm-3.6.tar.gz http://ctwm.free.lp.se/dist/
[D] 1090017359 ctwm-3.8a.tar.gz http://ctwm.free.lp.se/dist/
[D] 3321485359 ctwm-images.tar.gz http://slpc1.epfl.ch/public/software/ctwm/

28
x11/ctwm/fix-comment.patch

@ -1,28 +0,0 @@
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../ctwm/fix-comment.patch
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
# More information can be found in the files COPYING and README.
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
# --- SDE-COPYRIGHT-NOTE-END ---
--- ./windowbox.c.org Tue Dec 11 16:38:52 2001
+++ ./windowbox.c Mon Mar 17 11:50:44 2003
@@ -40,7 +40,7 @@
{
WindowBox *winbox;
- //printf ("addWindowBox : name = %s, geometry = %s\n", boxname, geometry);
+/* printf ("addWindowBox : name = %s, geometry = %s\n", boxname, geometry); */
winbox = (WindowBox*) malloc (sizeof (WindowBox));
winbox->next = NULL;
winbox->name = strdup (boxname);

90
x11/ctwm/yyparse.patch

@ -1,90 +0,0 @@
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../ctwm/yyparse.patch
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
# More information can be found in the files COPYING and README.
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
# --- SDE-COPYRIGHT-NOTE-END ---
*** ./gram.y~ Tue Dec 11 16:38:52 2001
--- ./gram.y Thu Jun 13 08:42:58 2002
***************
*** 419,425 ****
| WINDOW_RING { list = &Scr->WindowRingL; }
win_list
| WINDOW_RING { Scr->WindowRingAll = TRUE; }
- ;
| WINDOW_RING_EXCLUDE { if (!Scr->WindowRingL)
Scr->WindowRingAll = TRUE;
list = &Scr->WindowRingExcludeL; }
--- 419,424 ----
***************
*** 427,432 ****
--- 426,432 ----
| WINDOW_GEOMETRIES { }
wingeom_list
+ ;
noarg : KEYWORD { if (!do_single_keyword ($1)) {
twmrc_error_prefix();
***************
*** 683,691 ****
| wingeom_entries wingeom_entry
;
! wingeom_entry : string string { AddToList (&Scr->WindowGeometries, $1, $2) }
!
!
squeeze : SQUEEZE_TITLE {
if (HasShape) Scr->SqueezeTitle = TRUE;
--- 683,690 ----
| wingeom_entries wingeom_entry
;
! wingeom_entry : string string { AddToList (&Scr->WindowGeometries, $1, $2); }
! ;
squeeze : SQUEEZE_TITLE {
if (HasShape) Scr->SqueezeTitle = TRUE;
***************
*** 834,839 ****
--- 833,839 ----
occupy_workspc_entry : string {
AddToClientsList ($1, client);
}
+ ;
occupy_window_list : LB occupy_window_entries RB {}
;
***************
*** 845,850 ****
--- 845,851 ----
occupy_window_entry : string {
AddToClientsList (workspace, $1);
}
+ ;
icon_list : LB icon_entries RB {}
;
***************
*** 962,967 ****
--- 963,970 ----
RemoveDQuote(ptr);
$$ = (unsigned char*)ptr;
}
+ ;
+
number : NUMBER { $$ = $1; }
;
Loading…
Cancel
Save