[csw-devel] SF.net SVN: gar:[10273] csw/mgar/pkg

theferret at users.sourceforge.net theferret at users.sourceforge.net
Tue Jun 22 00:50:32 CEST 2010


Revision: 10273
          http://gar.svn.sourceforge.net/gar/?rev=10273&view=rev
Author:   theferret
Date:     2010-06-21 22:50:31 +0000 (Mon, 21 Jun 2010)

Log Message:
-----------
openbox: new package

Added Paths:
-----------
    csw/mgar/pkg/openbox/
    csw/mgar/pkg/openbox/Makefile
    csw/mgar/pkg/openbox/trunk/
    csw/mgar/pkg/openbox/trunk/Makefile
    csw/mgar/pkg/openbox/trunk/README
    csw/mgar/pkg/openbox/trunk/copyright
    csw/mgar/pkg/openbox/trunk/depend
    csw/mgar/pkg/openbox/trunk/patches.pre-conf
    csw/mgar/pkg/openbox/trunk/pkginfo
    csw/mgar/pkg/openbox/trunk/prototype

Added: csw/mgar/pkg/openbox/Makefile
===================================================================
--- csw/mgar/pkg/openbox/Makefile	                        (rev 0)
+++ csw/mgar/pkg/openbox/Makefile	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,15 @@
+
+# This is somewhat of a "stub" Makefile, for 
+# directories managed by the "createpkg" TEMPLATES.
+#
+# Not all of targets listed here may actualy be supported by
+# the subdir in question. But they are a goal
+
+DEFAULT_DIR=trunk
+
+
+# The -C means you must use gmake, unfortunately.
+
+all package build garchive extract configure clean distclean reallyclean :
+	@echo Going to make $@ in $(DEFAULT_DIR)
+	$(MAKE) -C  $(DEFAULT_DIR) $@


Property changes on: csw/mgar/pkg/openbox/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work
cswstage
build


Added: csw/mgar/pkg/openbox/trunk/Makefile
===================================================================
--- csw/mgar/pkg/openbox/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/openbox/trunk/Makefile	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,154 @@
+# This file is from TEMPLATES/createpkg/Makefile.lib
+# You MUST build this with gnu make, unfortunately.
+# Mainly just because of the ARCH expansion, but also for "?="
+
+# Customize your prototype file(s) as needed
+
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= openbox-3.4.11.2.tar.gz
+EXTRACTPROG ?= /usr/sfw/bin/gtar zfx
+
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= http://openbox.org/dist/openbox
+
+ARCH := $(shell /bin/uname -p)
+
+LDFLAGS_COMMON :=
+
+SRCDIR= build/*
+
+# DO NOT specify the arch-64 stuff such as -m64 here.
+# the individual targets will do that.
+
+CFLAGS_COMMON   ?= -mt -xnorunpath -xO2
+CXXFLAGS_COMMON ?= -mt -norunpath  -xO2
+CFLAGS_sparc    ?= -xarch=v8
+CFLAGS_i386     ?= -xarch=386
+
+# Keep this arch-neutral if possible. add arch-specific tweaks
+# to arch-specific target
+CONFIGURE=./configure X_CFLAGS=-I/opt/csw/include --prefix=/opt/csw --enable-static=no
+
+
+
+CREATEPKG=createpkg -r `pwd`/build/*/cswstage
+
+
+all:	$(ARCH)-32
+#all:	$(ARCH)-32 package
+
+# ARCH-XX handles configure, build, and stage for its own combo
+# 
+
+EXTRACTPROG ?= /bin/echo ERROR: need to set EXTRACTPROG ; exit 1 ;
+
+
+
+extract:	build/.extract.done
+
+build/.extract.done:
+	test -d build || mkdir build
+	@if test -f  $(ARCHIVEDIR)/$(ARCHIVENAME) ; then \
+		echo Extracting $(ARCHIVENAME) under build dir... ;\
+		( cd build && $(EXTRACTPROG) $(ARCHIVEDIR)/$(ARCHIVENAME) ) ; \
+	else echo Cannot extract - $(ARCHIVEDIR)/$(ARCHIVENAME) does not exist ;\
+		exit 1; \
+	fi
+	touch build/.extract.done
+	
+
+clean distclean:
+	@echo Calling $@ in $(SRCDIR)
+	$(MAKE) -C $(SRCDIR) $@
+
+
+reallyclean:	distclean
+	@echo Removing any milestone files in build as well...
+	@rm -f build/.??*
+	@echo '(However, leaving src tree intact, with any patches in it)'
+	@echo '(If you want, you could rm -r build, then make extract once more)'
+
+garchive:
+	@echo Call the fetch target instead: it does the same thing.
+
+
+# Downloads the source code to the common ARCHIVEDIR
+fetch:	$(ARCHIVEDIR)/$(ARCHIVENAME)
+	@echo fetch done
+
+$(ARCHIVEDIR)/$(ARCHIVENAME):
+	wget -P $(ARCHIVEDIR) $(MASTER_SITES)/$(ARCHIVENAME)
+
+patch:
+	@echo patch: patching is handled automatically as part of the configure phase.
+
+package:
+	$(CREATEPKG)
+
+
+# split out generic $(ARCH) sections to platform-specific sections if needed.
+# but it usually should not be neccessary
+
+
+$(ARCH)-32 ::   configure-$(ARCH)-32 build-$(ARCH)-32 stage-$(ARCH)-32
+	@echo Completed $(ARCH)-32 configure, build and stage
+	touch build/.$(ARCH)-32.done
+
+
+
+build/.$(ARCH)-32.done:	$(ARCH)-32
+
+# Since we share the same src tree, we should only need to
+# pre-configure patching one time for all.
+build/.patch-preconf.done:	build/.extract.done
+	if test -f patchfile.preconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.preconf ; fi
+	touch $@
+
+
+#Note: I WANT to use LDFLAGS=-R$$ORIGIN, but stupid libtool
+# wont allow it! so force it at build time
+build/.configure-$(ARCH)-32.done:	build/.patch-preconf.done
+	@echo handling $@ target
+	(cd $(SRCDIR) ; \
+	  CFLAGS="$(CFLAGS_COMMON) $(CFLAGS_$(ARCH))" \
+	  CXXFLAGS="$(CXXFLAGS_COMMON)" \
+	  LDFLAGS='-R/opt/csw/lib -L/opt/csw/lib' \
+	  $(CONFIGURE) )
+	if test -f patchfile.postconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.postconf ; fi
+	touch $@
+
+
+# See note about LDFLAGS and ORIGIN, higher up	
+build/.build-$(ARCH)-32.done:
+	@echo handling $@ target
+	LD_OPTIONS='-R$$ORIGIN' $(MAKE) -C $(SRCDIR) $(MFLAGS)
+	touch $@
+
+
+
+## NOTE: This is a DESTRUCTIVE target build!!
+## 'stagepkg'  will destroy any prior "cswstage" directory!!!
+## So, we remove all 64bit milestones
+build/.stage-$(ARCH)-32.done:
+	@echo Handling stage of $(ARCH)-32
+	(cd $(SRCDIR) ; MAKE=gmake stagepkg)
+	(cd $(SRCDIR); cp COPYING cswstage/.)
+	@rm -f build/.*64.done
+	touch $@
+
+
+
+#These are the easy-to-type targets. They just trigger the real ones.
+configure-$(ARCH)-32:	build/.configure-$(ARCH)-32.done
+	@echo $@ done
+build-$(ARCH)-32:	build/.build-$(ARCH)-32.done
+	@echo $@ done
+stage-$(ARCH)-32:	build/.stage-$(ARCH)-32.done
+	@echo $@ done

Added: csw/mgar/pkg/openbox/trunk/README
===================================================================
--- csw/mgar/pkg/openbox/trunk/README	                        (rev 0)
+++ csw/mgar/pkg/openbox/trunk/README	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,20 @@
+This compile  is a bit odd.
+It is "intelligent" and adds -I/usr/openwin/include, but that actually
+breaks us.
+make sure to REMOVE it.
+
+it also "helpfully" adds a buncha junk such as -L /usr/openwin/lib.
+kill it
+
+
+Note that this package will benefit by having "obconf", and
+"openbox_themes" installed as well
+
+
+
+This thing passes in defines on the COMMAND LINE  (-Dxxx) 
+instead of having a civilized config.h file
+
+
+
+the "ShapeInput" ifdefs, are inspired by sawfish ifdefs that I saw.

Added: csw/mgar/pkg/openbox/trunk/copyright
===================================================================
--- csw/mgar/pkg/openbox/trunk/copyright	                        (rev 0)
+++ csw/mgar/pkg/openbox/trunk/copyright	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,2 @@
+Please see /opt/csw/share/doc/openbox/COPYING for full license text.
+(GPL v2)

Added: csw/mgar/pkg/openbox/trunk/depend
===================================================================
--- csw/mgar/pkg/openbox/trunk/depend	                        (rev 0)
+++ csw/mgar/pkg/openbox/trunk/depend	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,8 @@
+P	CSWfconfig
+P	CSWftype2
+P	CSWggettextrt
+P	CSWglib2
+P	CSWlibxft2
+P	CSWlibxml2
+P	CSWlibxrender
+P	CSWpango

Added: csw/mgar/pkg/openbox/trunk/patches.pre-conf
===================================================================
--- csw/mgar/pkg/openbox/trunk/patches.pre-conf	                        (rev 0)
+++ csw/mgar/pkg/openbox/trunk/patches.pre-conf	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,90 @@
+--- ./openbox/event.c.orig	Tue Jun 22 00:02:57 2010
++++ ./openbox/event.c	Tue Jun 22 00:12:38 2010
+@@ -1593,10 +1593,12 @@
+                         client->shaped = ((XShapeEvent*)e)->shaped;
+                         kind = ShapeBounding;
+                         break;
++#ifdef ShapeInput
+                     case ShapeInput:
+                         client->shaped_input = ((XShapeEvent*)e)->shaped;
+                         kind = ShapeInput;
+                         break;
++#endif
+                 }
+                 frame_adjust_shape_kind(client->frame, kind);
+             }
+--- ./openbox/openbox.c.orig	Fri May 14 15:59:05 2010
++++ ./openbox/openbox.c	Tue Jun 22 00:34:00 2010
+@@ -202,7 +202,7 @@
+ 
+     /* set the DISPLAY environment variable for any lauched children, to the
+        display we're using, so they open in the right place. */
+-    setenv("DISPLAY", DisplayString(ob_display), TRUE);
++    g_setenv("DISPLAY", DisplayString(ob_display), TRUE);
+ 
+     /* create available cursors */
+     cursors[OB_CURSOR_NONE] = None;
+@@ -585,12 +585,12 @@
+     const gchar *id;
+ 
+     /* unset this so we don't pass it on unknowingly */
+-    unsetenv("DESKTOP_STARTUP_ID");
++    g_unsetenv("DESKTOP_STARTUP_ID");
+ 
+     /* this is how gnome-session passes in a session client id */
+     id = g_getenv("DESKTOP_AUTOSTART_ID");
+     if (id) {
+-        unsetenv("DESKTOP_AUTOSTART_ID");
++        g_unsetenv("DESKTOP_AUTOSTART_ID");
+         if (ob_sm_id) g_free(ob_sm_id);
+         ob_sm_id = g_strdup(id);
+         ob_debug_type(OB_DEBUG_SM,
+--- ./openbox/frame.c.orig	Fri May 14 15:59:05 2010
++++ ./openbox/frame.c	Tue Jun 22 00:13:55 2010
+@@ -274,8 +274,11 @@
+     gint num;
+     XRectangle xrect[2];
+ 
+-    if (!((kind == ShapeBounding && self->client->shaped) ||
+-          (kind == ShapeInput && self->client->shaped_input))) {
++    if (!( (kind == ShapeBounding && self->client->shaped)
++#ifdef ShapeInput
++	   || (kind == ShapeInput && self->client->shaped_input)
++#endif
++	  )) {
+         /* clear the shape on the frame window */
+         XShapeCombineMask(ob_display, self->window, kind,
+                           self->size.left,
+@@ -320,8 +323,10 @@
+ {
+ #ifdef SHAPE
+   frame_adjust_shape_kind(self, ShapeBounding);
++#ifdef ShapeInput
+   frame_adjust_shape_kind(self, ShapeInput);
+ #endif
++#endif
+ }
+ 
+ void frame_adjust_area(ObFrame *self, gboolean moved,
+--- ./openbox/startupnotify.c.orig	Fri May 14 15:59:05 2010
++++ ./openbox/startupnotify.c	Tue Jun 22 00:34:13 2010
+@@ -266,7 +266,7 @@
+                              g_direct_equal,
+                              (GDestroyNotify)sn_launcher_context_unref);
+ 
+-    setenv("DESKTOP_STARTUP_ID", id, TRUE);
++    g_setenv("DESKTOP_STARTUP_ID", id, TRUE);
+ 
+     g_free(desc);
+ }
+--- ./openbox/actions/execute.c.orig	Fri May 14 15:59:05 2010
++++ ./openbox/actions/execute.c	Tue Jun 22 00:34:37 2010
+@@ -196,7 +196,7 @@
+                 sn_spawn_cancel();
+         }
+         if (o->sn)
+-            unsetenv("DESKTOP_STARTUP_ID");
++            g_unsetenv("DESKTOP_STARTUP_ID");
+ 
+         g_free(program);
+         g_strfreev(argv);

Added: csw/mgar/pkg/openbox/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/openbox/trunk/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/openbox/trunk/pkginfo	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,8 @@
+PKG=CSWopenbox
+NAME=openbox - gtk based window manager
+VERSION=3.4.11.2,REV=2010.06.21
+CATEGORY=application
+VENDOR=http://openbox.org/ packaged for CSW by Philip Brown
+HOTLINE=http://www.opencsw.org/bugtrack/
+EMAIL=phil at opencsw.org
+OPENCSW_REPOSITORY=https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/pkg/openbox/trunk

Added: csw/mgar/pkg/openbox/trunk/prototype
===================================================================
--- csw/mgar/pkg/openbox/trunk/prototype	                        (rev 0)
+++ csw/mgar/pkg/openbox/trunk/prototype	2010-06-21 22:50:31 UTC (rev 10273)
@@ -0,0 +1,148 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/lib 0755 root bin
+f none /opt/csw/lib/libobparser.so.21.0.9 0755 root bin
+f none /opt/csw/lib/libobparser.la 0755 root bin
+s none /opt/csw/lib/libobparser.so=libobparser.so.21.0.9
+f none /opt/csw/lib/libobrender.so.21.0.9 0755 root bin
+s none /opt/csw/lib/libobrender.so=libobrender.so.21.0.9
+s none /opt/csw/lib/libobrender.so.21=libobrender.so.21.0.9
+s none /opt/csw/lib/libobparser.so.21=libobparser.so.21.0.9
+d none /opt/csw/lib/openbox 0755 root bin
+f none /opt/csw/lib/openbox/xdg-autostart 0755 root bin
+f none /opt/csw/lib/libobrender.la 0755 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/obrender-3.0.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/obparser-3.0.pc 0644 root bin
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/themes 0755 root bin
+d none /opt/csw/share/themes/Artwiz-boxed 0755 root bin
+d none /opt/csw/share/themes/Artwiz-boxed/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Artwiz-boxed/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/themes/Onyx 0755 root bin
+d none /opt/csw/share/themes/Onyx/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Onyx/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/themes/Onyx-Citrus 0755 root bin
+d none /opt/csw/share/themes/Onyx-Citrus/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Onyx-Citrus/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/themes/Syscrash 0755 root bin
+d none /opt/csw/share/themes/Syscrash/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Syscrash/openbox-3/max_toggled.xbm 0644 root bin
+f none /opt/csw/share/themes/Syscrash/openbox-3/max_pressed.xbm 0644 root bin
+f none /opt/csw/share/themes/Syscrash/openbox-3/max.xbm 0644 root bin
+f none /opt/csw/share/themes/Syscrash/openbox-3/max_disabled.xbm 0644 root bin
+f none /opt/csw/share/themes/Syscrash/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/themes/Mikachu 0755 root bin
+d none /opt/csw/share/themes/Mikachu/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Mikachu/openbox-3/iconify.xbm 0644 root bin
+f none /opt/csw/share/themes/Mikachu/openbox-3/themerc 0644 root bin
+f none /opt/csw/share/themes/Mikachu/openbox-3/bullet.xbm 0644 root bin
+f none /opt/csw/share/themes/Mikachu/openbox-3/max.xbm 0644 root bin
+f none /opt/csw/share/themes/Mikachu/openbox-3/desk.xbm 0644 root bin
+f none /opt/csw/share/themes/Mikachu/openbox-3/close.xbm 0644 root bin
+d none /opt/csw/share/themes/Orang 0755 root bin
+d none /opt/csw/share/themes/Orang/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Orang/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/themes/Clearlooks 0755 root bin
+d none /opt/csw/share/themes/Clearlooks/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Clearlooks/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/themes/Clearlooks-Olive 0755 root bin
+d none /opt/csw/share/themes/Clearlooks-Olive/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Clearlooks-Olive/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/themes/Natura 0755 root bin
+d none /opt/csw/share/themes/Natura/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/max.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/iconify.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/shade.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/close_hover.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/max_toggled.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/iconify_hover.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/themerc 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/shade_hover.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/close.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/desk_toggled.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/max_hover.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/desk_hover.xbm 0644 root bin
+f none /opt/csw/share/themes/Natura/openbox-3/desk.xbm 0644 root bin
+d none /opt/csw/share/themes/Bear2 0755 root bin
+d none /opt/csw/share/themes/Bear2/openbox-3 0755 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/desk.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/desk_toggled.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/iconify.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/shade_pressed.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/shade.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/max.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/close.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/close_pressed.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/max_pressed.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/max_toggled.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/iconify_pressed.xbm 0644 root bin
+f none /opt/csw/share/themes/Bear2/openbox-3/themerc 0644 root bin
+d none /opt/csw/share/doc 0755 root bin
+d none /opt/csw/share/doc/openbox 0755 root bin
+f none /opt/csw/share/doc/openbox/rc-mouse-focus.xml 0644 root bin
+f none /opt/csw/share/doc/openbox/README 0644 root bin
+f none /opt/csw/share/doc/openbox/COMPLIANCE 0644 root bin
+d none /opt/csw/share/doc/openbox/xbm 0755 root bin
+f none /opt/csw/share/doc/openbox/xbm/close.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/shade_toggled.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/desk.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/bullet.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/max.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/desk_toggled.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/iconify.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/shade.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/xbm/max_toggled.xbm 0644 root bin
+f none /opt/csw/share/doc/openbox/menu.xsd 0644 root bin
+f none /opt/csw/share/doc/openbox/rc.xsd 0644 root bin
+f none /opt/csw/share/doc/openbox/AUTHORS 0644 root bin
+f none /opt/csw/share/doc/openbox/COPYING 0644 root bin
+f none /opt/csw/share/doc/openbox/CHANGELOG 0644 root bin
+d none /opt/csw/share/man 0755 root bin
+d none /opt/csw/share/man/man1 0755 root bin
+f none /opt/csw/share/man/man1/openbox-kde-session.1 0644 root bin
+f none /opt/csw/share/man/man1/openbox-session.1 0644 root bin
+f none /opt/csw/share/man/man1/openbox-gnome-session.1 0644 root bin
+f none /opt/csw/share/man/man1/openbox.1 0644 root bin
+f none /opt/csw/share/man/man1/obxprop.1 0644 root bin
+d none /opt/csw/share/xsessions 0755 root bin
+f none /opt/csw/share/xsessions/openbox.desktop 0644 root bin
+f none /opt/csw/share/xsessions/openbox-kde.desktop 0644 root bin
+f none /opt/csw/share/xsessions/openbox-gnome.desktop 0644 root bin
+d none /opt/csw/share/pixmaps 0755 root bin
+f none /opt/csw/share/pixmaps/openbox.png 0644 root bin
+d none /opt/csw/share/gnome 0755 root bin
+d none /opt/csw/share/gnome/wm-properties 0755 root bin
+f none /opt/csw/share/gnome/wm-properties/openbox.desktop 0644 root bin
+d none /opt/csw/share/applications 0755 root bin
+f none /opt/csw/share/applications/openbox.desktop 0644 root bin
+d none /opt/csw/etc 0755 root bin
+d none /opt/csw/etc/xdg 0755 root bin
+d none /opt/csw/etc/xdg/openbox 0755 root bin
+f none /opt/csw/etc/xdg/openbox/rc.xml 0644 root bin
+f none /opt/csw/etc/xdg/openbox/autostart.sh 0644 root bin
+f none /opt/csw/etc/xdg/openbox/menu.xml 0644 root bin
+d none /opt/csw/bin 0755 root bin
+f none /opt/csw/bin/openbox-kde-session 0755 root bin
+f none /opt/csw/bin/openbox-gnome-session 0755 root bin
+f none /opt/csw/bin/gdm-control 0755 root bin
+f none /opt/csw/bin/gnome-panel-control 0755 root bin
+f none /opt/csw/bin/openbox-session 0755 root bin
+f none /opt/csw/bin/openbox 0755 root bin
+f none /opt/csw/bin/obxprop 0755 root bin
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/openbox 0755 root bin
+d none /opt/csw/include/openbox/3.4.11.2 0755 root bin
+d none /opt/csw/include/openbox/3.4.11.2/openbox 0755 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/render.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/font.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/geom.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/parse.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/version.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/color.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/instance.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/mask.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/image.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/theme.h 0644 root bin
+f none /opt/csw/include/openbox/3.4.11.2/openbox/gradient.h 0644 root bin


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list