[csw-devel] SF.net SVN: gar:[10502] csw/mgar/pkg/xscreensaver/trunk

theferret at users.sourceforge.net theferret at users.sourceforge.net
Mon Jul 12 05:38:59 CEST 2010


Revision: 10502
          http://gar.svn.sourceforge.net/gar/?rev=10502&view=rev
Author:   theferret
Date:     2010-07-12 03:38:58 +0000 (Mon, 12 Jul 2010)

Log Message:
-----------
xscreensaver: updated so it actually works now

Modified Paths:
--------------
    csw/mgar/pkg/xscreensaver/trunk/Makefile

Added Paths:
-----------
    csw/mgar/pkg/xscreensaver/trunk/README.pam
    csw/mgar/pkg/xscreensaver/trunk/copyright
    csw/mgar/pkg/xscreensaver/trunk/depend
    csw/mgar/pkg/xscreensaver/trunk/patchfile.preconf
    csw/mgar/pkg/xscreensaver/trunk/pkginfo
    csw/mgar/pkg/xscreensaver/trunk/prototype

Removed Paths:
-------------
    csw/mgar/pkg/xscreensaver/trunk/checksums
    csw/mgar/pkg/xscreensaver/trunk/files/

Property Changed:
----------------
    csw/mgar/pkg/xscreensaver/trunk/


Property changes on: csw/mgar/pkg/xscreensaver/trunk
___________________________________________________________________
Modified: svn:ignore
   - cookies
download
work


   + cookies
download
work
cswstage
build

Deleted: svn:externals
   - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Modified: csw/mgar/pkg/xscreensaver/trunk/Makefile
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/Makefile	2010-07-12 03:35:38 UTC (rev 10501)
+++ csw/mgar/pkg/xscreensaver/trunk/Makefile	2010-07-12 03:38:58 UTC (rev 10502)
@@ -1,21 +1,169 @@
-GARNAME = xscreensaver
-GARVERSION = 5.10
-CATEGORIES = utils
+# This file is from TEMPLATES/createpkg/Makefile.lib32
+# You MUST build this with gnu make, unfortunately.
+# Mainly just because of the ARCH expansion, but also for "?="
 
-DESCRIPTION = The ultimate screensaver collection
-define BLURB
-  A collection of free screen savers for X11 and MacOS.
-endef
+# Customize your prototype file(s) as needed
 
-MASTER_SITES = http://www.jwz.org/xscreensaver/
-DISTFILES  = $(GARNAME)-$(GARVERSION).tar.gz
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
 
-# We define upstream file regex so we can be notifed of new upstream software release
-UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= xscreensaver-5.11.tar.gz
+EXTRACTPROG ?= /usr/sfw/bin/gtar zfx
 
-PACKAGES = CSWxsave
-CATALOGNAME = xscreensaver
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= http://www.jwz.org/xscreensaver/
 
-CONFIGURE_ARGS = $(DIRPATHS)
+ARCH := $(shell /bin/uname -p)
 
-include gar/category.mk
+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 -xO3
+CXXFLAGS_COMMON ?= -mt -norunpath  -xO3
+CFLAGS_sparc    ?= -xarch=v8
+CFLAGS_i386     ?= -xarch=386
+
+# Keep this arch-neutral if possible. add arch-specific tweaks
+# to arch-specific target
+CONFIGURE=./configure --prefix=/opt/csw --with-pam --with-gl \
+  --with-x-app-defaults=/opt/csw/lib/X11/app-defaults
+
+
+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.
+
+stage-preserved:
+	@if test -f preserve-$(ARCH).tar ; then \
+		echo Copying preserved arch-specific files; \
+		cat preserve-$(ARCH).tar |(cd $(SRCDIR)/cswstage && tar xvf -);\
+	fi
+	@if test -f preserve.tar ; then \
+		echo Copying preserved arch-neutral files; \
+		cat preserve.tar |(cd $(SRCDIR)/cswstage && tar xvf -);\
+	fi
+		
+package:	stage-preserved
+	$(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))" \
+	  CPPFLAGS=-I/opt/csw/include \
+	  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 SHELL=/usr/xpg4/bin/sh install_prefix=`pwd`/cswstage install)
+	(cd $(SRCDIR); cp ../../README.pam cswstage/.)
+	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
+
+# manual targets
+pkgproto:
+	cat $(SRCDIR)/cswstage/prototype | sed 's/root root$$/root bin/' | \
+	  sed "s:/opt/csw/bin/xscreensaver 4755:/opt/csw/bin/xscreensaver 4755:" >prototype

Added: csw/mgar/pkg/xscreensaver/trunk/README.pam
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/README.pam	                        (rev 0)
+++ csw/mgar/pkg/xscreensaver/trunk/README.pam	2010-07-12 03:38:58 UTC (rev 10502)
@@ -0,0 +1,16 @@
+xscreensaver will complain about pam "possibly" not working because
+/etc/pam.conf has not been modified.
+I am leery to modify people's pam.conf files. but if you want to add
+it yourself, it expects the following in there:
+
+        xscreensaver    auth requisite          pam_authtok_get.so.1
+        xscreensaver    auth required           pam_dhkeys.so.1
+        xscreensaver    auth required           pam_unix_auth.so.1
+        xscreensaver    auth required           pam_dial_auth.so.1
+
+For Solaris 10, I believe it should be
+        xscreensaver    auth requisite          pam_authtok_get.so.1
+        xscreensaver    auth required           pam_dhkeys.so.1
+        xscreensaver    auth required           pam_unix_cred.so.1
+        xscreensaver    auth required           pam_unix_auth.so.1
+        xscreensaver    auth required           pam_dial_auth.so.1

Deleted: csw/mgar/pkg/xscreensaver/trunk/checksums
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/checksums	2010-07-12 03:35:38 UTC (rev 10501)
+++ csw/mgar/pkg/xscreensaver/trunk/checksums	2010-07-12 03:38:58 UTC (rev 10502)
@@ -1 +0,0 @@
-0d7205f9da8e3f1b83bcda549d73a7c4  xscreensaver-5.10.tar.gz

Added: csw/mgar/pkg/xscreensaver/trunk/copyright
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/copyright	                        (rev 0)
+++ csw/mgar/pkg/xscreensaver/trunk/copyright	2010-07-12 03:38:58 UTC (rev 10502)
@@ -0,0 +1,12 @@
+
+[Copyright held by assorted authors, but all have given rights to
+ redistribute along the following lines...
+
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation.  No representations are made about the suitability of this
+ * software for any purpose.  It is provided "as is" without express or
+ * implied warranty.
+]

Added: csw/mgar/pkg/xscreensaver/trunk/depend
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/depend	                        (rev 0)
+++ csw/mgar/pkg/xscreensaver/trunk/depend	2010-07-12 03:38:58 UTC (rev 10502)
@@ -0,0 +1,16 @@
+P	CSWfconfig
+P	CSWftype2
+P	CSWggettextrt
+P	CSWglib2
+P	CSWgtk2
+P	CSWjpeg
+P	CSWkrb5lib
+P	CSWlibatk
+P	CSWlibcairo
+P	CSWlibglade2
+P	CSWlibxml2
+P	CSWmesa
+P	CSWpango
+P	CSWxpm
+P	CSWperl
+P	CSWfortune

Added: csw/mgar/pkg/xscreensaver/trunk/patchfile.preconf
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/patchfile.preconf	                        (rev 0)
+++ csw/mgar/pkg/xscreensaver/trunk/patchfile.preconf	2010-07-12 03:38:58 UTC (rev 10502)
@@ -0,0 +1,88 @@
+diff --git hacks/asm6502.c hacks/asm6502.c
+index 90eed8d..5abe243 100644
+--- hacks/asm6502.c
++++ hacks/asm6502.c
+@@ -22,6 +22,8 @@
+ 
+ #define NDEBUG  /* Uncomment when done with debugging */
+ 
++#include "../config.h"
++
+ #include <stdlib.h>
+ #include <stdio.h>
+ /*#include <malloc.h>*/
+@@ -31,7 +33,12 @@
+ #include <assert.h>
+ #include <ctype.h>
+ #include <math.h>
++#ifdef HAVE_STDINT_H
+ #include <stdint.h>
++#endif
++#ifdef HAVE_INTTYPES_H
++#include <inttypes.h>
++#endif
+ #include <unistd.h>
+ 
+ #include "asm6502.h"
+diff --git hacks/fireworkx.c hacks/fireworkx.c
+index e0cfeee..687f7e2 100644
+--- hacks/fireworkx.c
++++ hacks/fireworkx.c
+@@ -28,6 +28,10 @@
+  */
+ 
+ #include <math.h>
++#ifdef __sun
++#define sqrtf(x) __sqrtf(x)
++#endif
++
+ #include "screenhack.h"
+ 
+ #define FWXVERSION "1.6"
+diff --git hacks/m6502.c hacks/m6502.c
+index 705af37..4f943bc 100644
+--- hacks/m6502.c
++++ hacks/m6502.c
+@@ -12,7 +12,14 @@
+  * Created: 07-May-2007 
+  */
+ 
+-#include <stdint.h> 
++#include "../config.h"
++#ifdef HAVE_STDINT_H
++#include <stdint.h>
++#endif
++#ifdef HAVE_INTTYPES_H
++#include <inttypes.h>
++#endif
++
+ #include <string.h>
+ #include "screenhack.h"
+ #include "analogtv.h"
+--- hacks/glx/glcells.c.orig	Fri Jul  9 18:55:25 2010
++++ hacks/glx/glcells.c	Fri Jul  9 18:57:16 2010
+@@ -28,6 +28,9 @@
+ 
+ #include "xlockmore.h"
+ #include <math.h>
++#ifdef __sun
++#define expf(f) __expf(f)
++#endif
+ 
+ /**********************************
+   DEFINES
+diff --git configure configure
+index e1e0f54..8cdefa0 100755
+--- configure
++++ configure
+@@ -17084,6 +17084,10 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ fi
+ rm -rf conftest*
+ 
++echo CSW FORCING have_mesa_gl=no
++have_mesa_gl=no
++ac_cv_have_mesa_gl=no
++
+   CPPFLAGS="$ac_save_CPPFLAGS"
+        fi
+ fi

Added: csw/mgar/pkg/xscreensaver/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/xscreensaver/trunk/pkginfo	2010-07-12 03:38:58 UTC (rev 10502)
@@ -0,0 +1,8 @@
+PKG=CSWxsave
+NAME=xscreensaver - the ultimate screensaver collection
+VERSION=5.11,REV=YYYY.MM.DD
+CATEGORY=application
+VENDOR=http://www.jwz.org/xscreensaver/download.html 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/xscreensaver/trunk

Added: csw/mgar/pkg/xscreensaver/trunk/prototype
===================================================================
--- csw/mgar/pkg/xscreensaver/trunk/prototype	                        (rev 0)
+++ csw/mgar/pkg/xscreensaver/trunk/prototype	2010-07-12 03:38:58 UTC (rev 10502)
@@ -0,0 +1,703 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/libexec 0755 root bin
+d none /opt/csw/libexec/xscreensaver 0755 root bin
+f none /opt/csw/libexec/xscreensaver/bubble3d 0755 root bin
+f none /opt/csw/libexec/xscreensaver/fadeplot 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glslideshow 0755 root bin
+f none /opt/csw/libexec/xscreensaver/attraction 0755 root bin
+f none /opt/csw/libexec/xscreensaver/endgame 0755 root bin
+f none /opt/csw/libexec/xscreensaver/blocktube 0755 root bin
+f none /opt/csw/libexec/xscreensaver/bouncingcow 0755 root bin
+f none /opt/csw/libexec/xscreensaver/fontglide 0755 root bin
+f none /opt/csw/libexec/xscreensaver/superquadrics 0755 root bin
+f none /opt/csw/libexec/xscreensaver/euler2d 0755 root bin
+f none /opt/csw/libexec/xscreensaver/starfish 0755 root bin
+f none /opt/csw/libexec/xscreensaver/flipflop 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glblur 0755 root bin
+f none /opt/csw/libexec/xscreensaver/compass 0755 root bin
+f none /opt/csw/libexec/xscreensaver/pulsar 0755 root bin
+f none /opt/csw/libexec/xscreensaver/abstractile 0755 root bin
+f none /opt/csw/libexec/xscreensaver/apollonian 0755 root bin
+f none /opt/csw/libexec/xscreensaver/anemone 0755 root bin
+f none /opt/csw/libexec/xscreensaver/julia 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glschool 0755 root bin
+f none /opt/csw/libexec/xscreensaver/providence 0755 root bin
+f none /opt/csw/libexec/xscreensaver/celtic 0755 root bin
+f none /opt/csw/libexec/xscreensaver/pacman 0755 root bin
+f none /opt/csw/libexec/xscreensaver/rd-bomb 0755 root bin
+f none /opt/csw/libexec/xscreensaver/fuzzyflakes 0755 root bin
+f none /opt/csw/libexec/xscreensaver/substrate 0755 root bin
+f none /opt/csw/libexec/xscreensaver/drift 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glplanet 0755 root bin
+f none /opt/csw/libexec/xscreensaver/strange 0755 root bin
+f none /opt/csw/libexec/xscreensaver/rubik 0755 root bin
+f none /opt/csw/libexec/xscreensaver/loop 0755 root bin
+f none /opt/csw/libexec/xscreensaver/lcdscrub 0755 root bin
+f none /opt/csw/libexec/xscreensaver/flame 0755 root bin
+f none /opt/csw/libexec/xscreensaver/morph3d 0755 root bin
+f none /opt/csw/libexec/xscreensaver/wormhole 0755 root bin
+f none /opt/csw/libexec/xscreensaver/xspirograph 0755 root bin
+f none /opt/csw/libexec/xscreensaver/rotzoomer 0755 root bin
+f none /opt/csw/libexec/xscreensaver/triangle 0755 root bin
+f none /opt/csw/libexec/xscreensaver/xflame 0755 root bin
+f none /opt/csw/libexec/xscreensaver/xrayswarm 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cynosure 0755 root bin
+f none /opt/csw/libexec/xscreensaver/intermomentary 0755 root bin
+f none /opt/csw/libexec/xscreensaver/queens 0755 root bin
+f none /opt/csw/libexec/xscreensaver/xlyap 0755 root bin
+f none /opt/csw/libexec/xscreensaver/ljlatest 0755 root bin
+f none /opt/csw/libexec/xscreensaver/interference 0755 root bin
+f none /opt/csw/libexec/xscreensaver/jigglypuff 0755 root bin
+f none /opt/csw/libexec/xscreensaver/gltext 0755 root bin
+f none /opt/csw/libexec/xscreensaver/braid 0755 root bin
+f none /opt/csw/libexec/xscreensaver/popsquares 0755 root bin
+f none /opt/csw/libexec/xscreensaver/engine 0755 root bin
+f none /opt/csw/libexec/xscreensaver/surfaces 0755 root bin
+f none /opt/csw/libexec/xscreensaver/sonar 0755 root bin
+f none /opt/csw/libexec/xscreensaver/dangerball 0755 root bin
+f none /opt/csw/libexec/xscreensaver/polyominoes 0755 root bin
+f none /opt/csw/libexec/xscreensaver/atlantis 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glknots 0755 root bin
+f none /opt/csw/libexec/xscreensaver/barcode 0755 root bin
+f none /opt/csw/libexec/xscreensaver/deluxe 0755 root bin
+f none /opt/csw/libexec/xscreensaver/whirlwindwarp 0755 root bin
+f none /opt/csw/libexec/xscreensaver/crystal 0755 root bin
+f none /opt/csw/libexec/xscreensaver/epicycle 0755 root bin
+f none /opt/csw/libexec/xscreensaver/sierpinski3d 0755 root bin
+f none /opt/csw/libexec/xscreensaver/noseguy 0755 root bin
+f none /opt/csw/libexec/xscreensaver/klein 0755 root bin
+f none /opt/csw/libexec/xscreensaver/fliptext 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cube21 0755 root bin
+f none /opt/csw/libexec/xscreensaver/slidescreen 0755 root bin
+f none /opt/csw/libexec/xscreensaver/mountain 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cwaves 0755 root bin
+f none /opt/csw/libexec/xscreensaver/flipscreen3d 0755 root bin
+f none /opt/csw/libexec/xscreensaver/lockward 0755 root bin
+f none /opt/csw/libexec/xscreensaver/gears 0755 root bin
+f none /opt/csw/libexec/xscreensaver/gflux 0755 root bin
+f none /opt/csw/libexec/xscreensaver/menger 0755 root bin
+f none /opt/csw/libexec/xscreensaver/pedal 0755 root bin
+f none /opt/csw/libexec/xscreensaver/blinkbox 0755 root bin
+f none /opt/csw/libexec/xscreensaver/phosphor 0755 root bin
+f none /opt/csw/libexec/xscreensaver/bouboule 0755 root bin
+f none /opt/csw/libexec/xscreensaver/wander 0755 root bin
+f none /opt/csw/libexec/xscreensaver/sproingies 0755 root bin
+f none /opt/csw/libexec/xscreensaver/discrete 0755 root bin
+f none /opt/csw/libexec/xscreensaver/decayscreen 0755 root bin
+f none /opt/csw/libexec/xscreensaver/moebius 0755 root bin
+f none /opt/csw/libexec/xscreensaver/topblock 0755 root bin
+f none /opt/csw/libexec/xscreensaver/pinion 0755 root bin
+f none /opt/csw/libexec/xscreensaver/tangram 0755 root bin
+f none /opt/csw/libexec/xscreensaver/hypnowheel 0755 root bin
+f none /opt/csw/libexec/xscreensaver/distort 0755 root bin
+f none /opt/csw/libexec/xscreensaver/grav 0755 root bin
+f none /opt/csw/libexec/xscreensaver/speedmine 0755 root bin
+f none /opt/csw/libexec/xscreensaver/zoom 0755 root bin
+f none /opt/csw/libexec/xscreensaver/metaballs 0755 root bin
+f none /opt/csw/libexec/xscreensaver/xanalogtv 0755 root bin
+f none /opt/csw/libexec/xscreensaver/boxfit 0755 root bin
+f none /opt/csw/libexec/xscreensaver/kaleidescope 0755 root bin
+f none /opt/csw/libexec/xscreensaver/crackberg 0755 root bin
+f none /opt/csw/libexec/xscreensaver/voronoi 0755 root bin
+f none /opt/csw/libexec/xscreensaver/qix 0755 root bin
+f none /opt/csw/libexec/xscreensaver/piecewise 0755 root bin
+f none /opt/csw/libexec/xscreensaver/moebiusgears 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glhanoi 0755 root bin
+f none /opt/csw/libexec/xscreensaver/swirl 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cubestorm 0755 root bin
+f none /opt/csw/libexec/xscreensaver/halftone 0755 root bin
+f none /opt/csw/libexec/xscreensaver/gleidescope 0755 root bin
+f none /opt/csw/libexec/xscreensaver/spheremonics 0755 root bin
+f none /opt/csw/libexec/xscreensaver/polytopes 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cloudlife 0755 root bin
+f none /opt/csw/libexec/xscreensaver/flow 0755 root bin
+f none /opt/csw/libexec/xscreensaver/timetunnel 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cubicgrid 0755 root bin
+f none /opt/csw/libexec/xscreensaver/boing 0755 root bin
+f none /opt/csw/libexec/xscreensaver/sierpinski 0755 root bin
+f none /opt/csw/libexec/xscreensaver/coral 0755 root bin
+f none /opt/csw/libexec/xscreensaver/twang 0755 root bin
+f none /opt/csw/libexec/xscreensaver/sballs 0755 root bin
+f none /opt/csw/libexec/xscreensaver/bumps 0755 root bin
+f none /opt/csw/libexec/xscreensaver/pyro 0755 root bin
+f none /opt/csw/libexec/xscreensaver/munch 0755 root bin
+f none /opt/csw/libexec/xscreensaver/carousel 0755 root bin
+f none /opt/csw/libexec/xscreensaver/ifs 0755 root bin
+f none /opt/csw/libexec/xscreensaver/moire2 0755 root bin
+f none /opt/csw/libexec/xscreensaver/deco 0755 root bin
+f none /opt/csw/libexec/xscreensaver/petri 0755 root bin
+f none /opt/csw/libexec/xscreensaver/vermiculate 0755 root bin
+f none /opt/csw/libexec/xscreensaver/pipes 0755 root bin
+f none /opt/csw/libexec/xscreensaver/penetrate 0755 root bin
+f none /opt/csw/libexec/xscreensaver/rocks 0755 root bin
+f none /opt/csw/libexec/xscreensaver/starwars 0755 root bin
+f none /opt/csw/libexec/xscreensaver/memscroller 0755 root bin
+f none /opt/csw/libexec/xscreensaver/atunnel 0755 root bin
+f none /opt/csw/libexec/xscreensaver/mirrorblob 0755 root bin
+f none /opt/csw/libexec/xscreensaver/jigsaw 0755 root bin
+f none /opt/csw/libexec/xscreensaver/rubikblocks 0755 root bin
+f none /opt/csw/libexec/xscreensaver/blitspin 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glsnake 0755 root bin
+f none /opt/csw/libexec/xscreensaver/interaggregate 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glcells 0755 root bin
+f none /opt/csw/libexec/xscreensaver/antspotlight 0755 root bin
+f none /opt/csw/libexec/xscreensaver/imsmap 0755 root bin
+f none /opt/csw/libexec/xscreensaver/maze 0755 root bin
+f none /opt/csw/libexec/xscreensaver/flyingtoasters 0755 root bin
+f none /opt/csw/libexec/xscreensaver/ccurve 0755 root bin
+f none /opt/csw/libexec/xscreensaver/vidwhacker 0755 root bin
+f none /opt/csw/libexec/xscreensaver/squiral 0755 root bin
+f none /opt/csw/libexec/xscreensaver/nerverot 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cage 0755 root bin
+f none /opt/csw/libexec/xscreensaver/penrose 0755 root bin
+f none /opt/csw/libexec/xscreensaver/photopile 0755 root bin
+f none /opt/csw/libexec/xscreensaver/moire 0755 root bin
+f none /opt/csw/libexec/xscreensaver/antinspect 0755 root bin
+f none /opt/csw/libexec/xscreensaver/cubenetic 0755 root bin
+f none /opt/csw/libexec/xscreensaver/galaxy 0755 root bin
+f none /opt/csw/libexec/xscreensaver/stairs 0755 root bin
+f none /opt/csw/libexec/xscreensaver/kumppa 0755 root bin
+f none /opt/csw/libexec/xscreensaver/ripples 0755 root bin
+f none /opt/csw/libexec/xscreensaver/hypertorus 0755 root bin
+f none /opt/csw/libexec/xscreensaver/truchet 0755 root bin
+f none /opt/csw/libexec/xscreensaver/lament 0755 root bin
+f none /opt/csw/libexec/xscreensaver/fiberlamp 0755 root bin
+f none /opt/csw/libexec/xscreensaver/bsod 0755 root bin
+f none /opt/csw/libexec/xscreensaver/circuit 0755 root bin
+f none /opt/csw/libexec/xscreensaver/flurry 0755 root bin
+f none /opt/csw/libexec/xscreensaver/xjack 0755 root bin
+f none /opt/csw/libexec/xscreensaver/molecule 0755 root bin
+f none /opt/csw/libexec/xscreensaver/fireworkx 0755 root bin
+f none /opt/csw/libexec/xscreensaver/juggler3d 0755 root bin
+f none /opt/csw/libexec/xscreensaver/webcollage-helper 0755 root bin
+f none /opt/csw/libexec/xscreensaver/rorschach 0755 root bin
+f none /opt/csw/libexec/xscreensaver/boxed 0755 root bin
+f none /opt/csw/libexec/xscreensaver/thornbird 0755 root bin
+f none /opt/csw/libexec/xscreensaver/lavalite 0755 root bin
+f none /opt/csw/libexec/xscreensaver/xmatrix 0755 root bin
+f none /opt/csw/libexec/xscreensaver/halo 0755 root bin
+f none /opt/csw/libexec/xscreensaver/hopalong 0755 root bin
+f none /opt/csw/libexec/xscreensaver/antmaze 0755 root bin
+f none /opt/csw/libexec/xscreensaver/apple2 0755 root bin
+f none /opt/csw/libexec/xscreensaver/blaster 0755 root bin
+f none /opt/csw/libexec/xscreensaver/m6502 0755 root bin
+f none /opt/csw/libexec/xscreensaver/eruption 0755 root bin
+f none /opt/csw/libexec/xscreensaver/polyhedra 0755 root bin
+f none /opt/csw/libexec/xscreensaver/spotlight 0755 root bin
+f none /opt/csw/libexec/xscreensaver/helix 0755 root bin
+f none /opt/csw/libexec/xscreensaver/slip 0755 root bin
+f none /opt/csw/libexec/xscreensaver/shadebobs 0755 root bin
+f none /opt/csw/libexec/xscreensaver/webcollage 0755 root bin
+f none /opt/csw/libexec/xscreensaver/glmatrix 0755 root bin
+f none /opt/csw/libexec/xscreensaver/pong 0755 root bin
+f none /opt/csw/libexec/xscreensaver/skytentacles 0755 root bin
+f none /opt/csw/libexec/xscreensaver/fluidballs 0755 root bin
+f none /opt/csw/libexec/xscreensaver/stonerview 0755 root bin
+f none /opt/csw/libexec/xscreensaver/goop 0755 root bin
+f none /opt/csw/libexec/xscreensaver/demon 0755 root bin
+f none /opt/csw/libexec/xscreensaver/noof 0755 root bin
+f none /opt/csw/libexec/xscreensaver/anemotaxis 0755 root bin
+f none /opt/csw/libexec/xscreensaver/greynetic 0755 root bin
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/applications 0755 root bin
+f none /opt/csw/share/applications/xscreensaver-properties.desktop 0644 root bin
+d none /opt/csw/share/xscreensaver 0755 root bin
+d none /opt/csw/share/xscreensaver/glade 0755 root bin
+f none /opt/csw/share/xscreensaver/glade/screensaver-colorselector.png 0644 root bin
+f none /opt/csw/share/xscreensaver/glade/screensaver-locking.png 0644 root bin
+f none /opt/csw/share/xscreensaver/glade/screensaver-cmndln.png 0644 root bin
+f none /opt/csw/share/xscreensaver/glade/screensaver-power.png 0644 root bin
+f none /opt/csw/share/xscreensaver/glade/screensaver-diagnostic.png 0644 root bin
+f none /opt/csw/share/xscreensaver/glade/screensaver-snap.png 0644 root bin
+f none /opt/csw/share/xscreensaver/glade/xscreensaver-demo.glade2 0644 root bin
+d none /opt/csw/share/xscreensaver/config 0755 root bin
+f none /opt/csw/share/xscreensaver/config/attraction.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/triangle.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/sproingies.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glknots.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/klein.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/apollonian.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/pong.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/skytentacles.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/gltext.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/molecule.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/xjack.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/stonerview.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/maze.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/coral.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/README 0644 root bin
+f none /opt/csw/share/xscreensaver/config/abstractile.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/moebius.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/sonar.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/dangerball.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/drift.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/penetrate.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/boing.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/fireworkx.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/deco.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/surfaces.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/zoom.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/tangram.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/xrayswarm.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cubenetic.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/lockward.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/jigsaw.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/crackberg.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/hypertorus.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/rubikblocks.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/halftone.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/kaleidescope.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glslideshow.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/galaxy.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/pulsar.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/wormhole.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/xspirograph.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glhanoi.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/m6502.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/epicycle.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/engine.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cubicgrid.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/topblock.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/flame.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cloudlife.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/ifs.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/barcode.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/decayscreen.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/hypnowheel.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/squiral.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/gears.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/stairs.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/fontglide.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/fiberlamp.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/bumps.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/moire.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/blaster.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/anemotaxis.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/pedal.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/twang.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/braid.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/mountain.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/atlantis.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/bubble3d.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/rd-bomb.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/bouncingcow.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/distort.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/wander.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/fadeplot.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/noof.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/moebiusgears.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/atunnel.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/pyro.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glmatrix.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glblur.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/antspotlight.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/flow.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/voronoi.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/xmatrix.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/flyingtoasters.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/kumppa.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/munch.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/flipscreen3d.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/starfish.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/pipes.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/substrate.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glsnake.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/discrete.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/julia.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glcells.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/qix.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/slip.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/petri.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/penrose.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cubestorm.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/gflux.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/carousel.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/lcdscrub.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/webcollage.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/eruption.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/fuzzyflakes.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/gleidescope.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/antmaze.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/mirrorblob.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/rorschach.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/sballs.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/truchet.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/ripples.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/lavalite.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/circuit.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/nerverot.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/bsod.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/photopile.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/spheremonics.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/blocktube.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/speedmine.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/celtic.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/interaggregate.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/strange.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/juggler3d.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/blitspin.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/blinkbox.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/boxfit.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/thornbird.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/swirl.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/pinion.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/sierpinski.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/antinspect.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/moire2.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/timetunnel.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/loop.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/superquadrics.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cynosure.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/morph3d.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/polytopes.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/extrusion.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/whirlwindwarp.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/polyominoes.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cwaves.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/demon.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/popsquares.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/xlyap.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/compass.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/queens.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/helix.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/grav.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/hopalong.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/deluxe.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/shadebobs.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/fliptext.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/apple2.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/greynetic.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/bouboule.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/rubik.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/goop.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/phosphor.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/noseguy.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/pacman.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/interference.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/spotlight.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/ccurve.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glplanet.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/rocks.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/lament.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/jigglypuff.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/vidwhacker.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/providence.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/crystal.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/menger.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/piecewise.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/euler2d.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/vermiculate.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/fluidballs.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/slidescreen.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/polyhedra.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/halo.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/anemone.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/flipflop.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/xanalogtv.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cage.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/glschool.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/flurry.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/metaballs.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/rotzoomer.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/starwars.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/cube21.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/imsmap.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/endgame.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/memscroller.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/sierpinski3d.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/xflame.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/boxed.xml 0644 root bin
+f none /opt/csw/share/xscreensaver/config/intermomentary.xml 0644 root bin
+d none /opt/csw/share/man 0755 root bin
+d none /opt/csw/share/man/man6 0755 root bin
+f none /opt/csw/share/man/man6/ljlatest.6 0644 root bin
+f none /opt/csw/share/man/man6/xflame.6 0644 root bin
+f none /opt/csw/share/man/man6/starfish.6 0644 root bin
+f none /opt/csw/share/man/man6/lockward.6 0644 root bin
+f none /opt/csw/share/man/man6/glsnake.6 0644 root bin
+f none /opt/csw/share/man/man6/crystal.6 0644 root bin
+f none /opt/csw/share/man/man6/abstractile.6 0644 root bin
+f none /opt/csw/share/man/man6/shadebobs.6 0644 root bin
+f none /opt/csw/share/man/man6/gflux.6 0644 root bin
+f none /opt/csw/share/man/man6/kumppa.6 0644 root bin
+f none /opt/csw/share/man/man6/grav.6 0644 root bin
+f none /opt/csw/share/man/man6/atlantis.6 0644 root bin
+f none /opt/csw/share/man/man6/galaxy.6 0644 root bin
+f none /opt/csw/share/man/man6/mountain.6 0644 root bin
+f none /opt/csw/share/man/man6/hopalong.6 0644 root bin
+f none /opt/csw/share/man/man6/spotlight.6 0644 root bin
+f none /opt/csw/share/man/man6/stairs.6 0644 root bin
+f none /opt/csw/share/man/man6/gltext.6 0644 root bin
+f none /opt/csw/share/man/man6/xmatrix.6 0644 root bin
+f none /opt/csw/share/man/man6/sballs.6 0644 root bin
+f none /opt/csw/share/man/man6/helix.6 0644 root bin
+f none /opt/csw/share/man/man6/squiral.6 0644 root bin
+f none /opt/csw/share/man/man6/qix.6 0644 root bin
+f none /opt/csw/share/man/man6/superquadrics.6 0644 root bin
+f none /opt/csw/share/man/man6/moire.6 0644 root bin
+f none /opt/csw/share/man/man6/zoom.6 0644 root bin
+f none /opt/csw/share/man/man6/antinspect.6 0644 root bin
+f none /opt/csw/share/man/man6/moebiusgears.6 0644 root bin
+f none /opt/csw/share/man/man6/cynosure.6 0644 root bin
+f none /opt/csw/share/man/man6/wormhole.6 0644 root bin
+f none /opt/csw/share/man/man6/xrayswarm.6 0644 root bin
+f none /opt/csw/share/man/man6/cube21.6 0644 root bin
+f none /opt/csw/share/man/man6/ripples.6 0644 root bin
+f none /opt/csw/share/man/man6/truchet.6 0644 root bin
+f none /opt/csw/share/man/man6/bsod.6 0644 root bin
+f none /opt/csw/share/man/man6/discrete.6 0644 root bin
+f none /opt/csw/share/man/man6/fuzzyflakes.6 0644 root bin
+f none /opt/csw/share/man/man6/euler2d.6 0644 root bin
+f none /opt/csw/share/man/man6/crackberg.6 0644 root bin
+f none /opt/csw/share/man/man6/attraction.6 0644 root bin
+f none /opt/csw/share/man/man6/flipscreen3d.6 0644 root bin
+f none /opt/csw/share/man/man6/rd-bomb.6 0644 root bin
+f none /opt/csw/share/man/man6/dangerball.6 0644 root bin
+f none /opt/csw/share/man/man6/anemotaxis.6 0644 root bin
+f none /opt/csw/share/man/man6/vermiculate.6 0644 root bin
+f none /opt/csw/share/man/man6/gears.6 0644 root bin
+f none /opt/csw/share/man/man6/cwaves.6 0644 root bin
+f none /opt/csw/share/man/man6/gleidescope.6 0644 root bin
+f none /opt/csw/share/man/man6/glschool.6 0644 root bin
+f none /opt/csw/share/man/man6/wander.6 0644 root bin
+f none /opt/csw/share/man/man6/polyhedra.6 0644 root bin
+f none /opt/csw/share/man/man6/sproingies.6 0644 root bin
+f none /opt/csw/share/man/man6/bumps.6 0644 root bin
+f none /opt/csw/share/man/man6/lament.6 0644 root bin
+f none /opt/csw/share/man/man6/menger.6 0644 root bin
+f none /opt/csw/share/man/man6/hypnowheel.6 0644 root bin
+f none /opt/csw/share/man/man6/apollonian.6 0644 root bin
+f none /opt/csw/share/man/man6/strange.6 0644 root bin
+f none /opt/csw/share/man/man6/interference.6 0644 root bin
+f none /opt/csw/share/man/man6/cubenetic.6 0644 root bin
+f none /opt/csw/share/man/man6/jigsaw.6 0644 root bin
+f none /opt/csw/share/man/man6/celtic.6 0644 root bin
+f none /opt/csw/share/man/man6/rubikblocks.6 0644 root bin
+f none /opt/csw/share/man/man6/demon.6 0644 root bin
+f none /opt/csw/share/man/man6/rorschach.6 0644 root bin
+f none /opt/csw/share/man/man6/fluidballs.6 0644 root bin
+f none /opt/csw/share/man/man6/glhanoi.6 0644 root bin
+f none /opt/csw/share/man/man6/moire2.6 0644 root bin
+f none /opt/csw/share/man/man6/flow.6 0644 root bin
+f none /opt/csw/share/man/man6/halftone.6 0644 root bin
+f none /opt/csw/share/man/man6/munch.6 0644 root bin
+f none /opt/csw/share/man/man6/extrusion.6 0644 root bin
+f none /opt/csw/share/man/man6/xlyap.6 0644 root bin
+f none /opt/csw/share/man/man6/cloudlife.6 0644 root bin
+f none /opt/csw/share/man/man6/rotzoomer.6 0644 root bin
+f none /opt/csw/share/man/man6/imsmap.6 0644 root bin
+f none /opt/csw/share/man/man6/queens.6 0644 root bin
+f none /opt/csw/share/man/man6/memscroller.6 0644 root bin
+f none /opt/csw/share/man/man6/intermomentary.6 0644 root bin
+f none /opt/csw/share/man/man6/decayscreen.6 0644 root bin
+f none /opt/csw/share/man/man6/drift.6 0644 root bin
+f none /opt/csw/share/man/man6/voronoi.6 0644 root bin
+f none /opt/csw/share/man/man6/fontglide.6 0644 root bin
+f none /opt/csw/share/man/man6/glmatrix.6 0644 root bin
+f none /opt/csw/share/man/man6/klein.6 0644 root bin
+f none /opt/csw/share/man/man6/bubble3d.6 0644 root bin
+f none /opt/csw/share/man/man6/boxfit.6 0644 root bin
+f none /opt/csw/share/man/man6/xscreensaver-gl-helper.6 0644 root bin
+f none /opt/csw/share/man/man6/blaster.6 0644 root bin
+f none /opt/csw/share/man/man6/nerverot.6 0644 root bin
+f none /opt/csw/share/man/man6/goop.6 0644 root bin
+f none /opt/csw/share/man/man6/noof.6 0644 root bin
+f none /opt/csw/share/man/man6/deluxe.6 0644 root bin
+f none /opt/csw/share/man/man6/spheremonics.6 0644 root bin
+f none /opt/csw/share/man/man6/providence.6 0644 root bin
+f none /opt/csw/share/man/man6/pinion.6 0644 root bin
+f none /opt/csw/share/man/man6/circuit.6 0644 root bin
+f none /opt/csw/share/man/man6/lcdscrub.6 0644 root bin
+f none /opt/csw/share/man/man6/coral.6 0644 root bin
+f none /opt/csw/share/man/man6/compass.6 0644 root bin
+f none /opt/csw/share/man/man6/epicycle.6 0644 root bin
+f none /opt/csw/share/man/man6/ifs.6 0644 root bin
+f none /opt/csw/share/man/man6/xanalogtv.6 0644 root bin
+f none /opt/csw/share/man/man6/flurry.6 0644 root bin
+f none /opt/csw/share/man/man6/penetrate.6 0644 root bin
+f none /opt/csw/share/man/man6/anemone.6 0644 root bin
+f none /opt/csw/share/man/man6/stonerview.6 0644 root bin
+f none /opt/csw/share/man/man6/mirrorblob.6 0644 root bin
+f none /opt/csw/share/man/man6/hypertorus.6 0644 root bin
+f none /opt/csw/share/man/man6/eruption.6 0644 root bin
+f none /opt/csw/share/man/man6/surfaces.6 0644 root bin
+f none /opt/csw/share/man/man6/photopile.6 0644 root bin
+f none /opt/csw/share/man/man6/slip.6 0644 root bin
+f none /opt/csw/share/man/man6/piecewise.6 0644 root bin
+f none /opt/csw/share/man/man6/pulsar.6 0644 root bin
+f none /opt/csw/share/man/man6/starwars.6 0644 root bin
+f none /opt/csw/share/man/man6/fireworkx.6 0644 root bin
+f none /opt/csw/share/man/man6/sierpinski3d.6 0644 root bin
+f none /opt/csw/share/man/man6/rubik.6 0644 root bin
+f none /opt/csw/share/man/man6/morph3d.6 0644 root bin
+f none /opt/csw/share/man/man6/whirlwindwarp.6 0644 root bin
+f none /opt/csw/share/man/man6/julia.6 0644 root bin
+f none /opt/csw/share/man/man6/kaleidescope.6 0644 root bin
+f none /opt/csw/share/man/man6/cage.6 0644 root bin
+f none /opt/csw/share/man/man6/speedmine.6 0644 root bin
+f none /opt/csw/share/man/man6/carousel.6 0644 root bin
+f none /opt/csw/share/man/man6/slidescreen.6 0644 root bin
+f none /opt/csw/share/man/man6/petri.6 0644 root bin
+f none /opt/csw/share/man/man6/atunnel.6 0644 root bin
+f none /opt/csw/share/man/man6/penrose.6 0644 root bin
+f none /opt/csw/share/man/man6/pipes.6 0644 root bin
+f none /opt/csw/share/man/man6/cubicgrid.6 0644 root bin
+f none /opt/csw/share/man/man6/bouncingcow.6 0644 root bin
+f none /opt/csw/share/man/man6/pedal.6 0644 root bin
+f none /opt/csw/share/man/man6/greynetic.6 0644 root bin
+f none /opt/csw/share/man/man6/braid.6 0644 root bin
+f none /opt/csw/share/man/man6/endgame.6 0644 root bin
+f none /opt/csw/share/man/man6/glblur.6 0644 root bin
+f none /opt/csw/share/man/man6/timetunnel.6 0644 root bin
+f none /opt/csw/share/man/man6/tangram.6 0644 root bin
+f none /opt/csw/share/man/man6/fliptext.6 0644 root bin
+f none /opt/csw/share/man/man6/barcode.6 0644 root bin
+f none /opt/csw/share/man/man6/flyingtoasters.6 0644 root bin
+f none /opt/csw/share/man/man6/twang.6 0644 root bin
+f none /opt/csw/share/man/man6/boxed.6 0644 root bin
+f none /opt/csw/share/man/man6/webcollage.6 0644 root bin
+f none /opt/csw/share/man/man6/thornbird.6 0644 root bin
+f none /opt/csw/share/man/man6/polyominoes.6 0644 root bin
+f none /opt/csw/share/man/man6/ccurve.6 0644 root bin
+f none /opt/csw/share/man/man6/metaballs.6 0644 root bin
+f none /opt/csw/share/man/man6/moebius.6 0644 root bin
+f none /opt/csw/share/man/man6/glknots.6 0644 root bin
+f none /opt/csw/share/man/man6/xjack.6 0644 root bin
+f none /opt/csw/share/man/man6/pyro.6 0644 root bin
+f none /opt/csw/share/man/man6/maze.6 0644 root bin
+f none /opt/csw/share/man/man6/deco.6 0644 root bin
+f none /opt/csw/share/man/man6/polytopes.6 0644 root bin
+f none /opt/csw/share/man/man6/skytentacles.6 0644 root bin
+f none /opt/csw/share/man/man6/cubestorm.6 0644 root bin
+f none /opt/csw/share/man/man6/blitspin.6 0644 root bin
+f none /opt/csw/share/man/man6/xspirograph.6 0644 root bin
+f none /opt/csw/share/man/man6/lavalite.6 0644 root bin
+f none /opt/csw/share/man/man6/sonar.6 0644 root bin
+f none /opt/csw/share/man/man6/apple2.6 0644 root bin
+f none /opt/csw/share/man/man6/glplanet.6 0644 root bin
+f none /opt/csw/share/man/man6/bouboule.6 0644 root bin
+f none /opt/csw/share/man/man6/juggler3d.6 0644 root bin
+f none /opt/csw/share/man/man6/halo.6 0644 root bin
+f none /opt/csw/share/man/man6/flipflop.6 0644 root bin
+f none /opt/csw/share/man/man6/distort.6 0644 root bin
+f none /opt/csw/share/man/man6/engine.6 0644 root bin
+f none /opt/csw/share/man/man6/jigglypuff.6 0644 root bin
+f none /opt/csw/share/man/man6/topblock.6 0644 root bin
+f none /opt/csw/share/man/man6/boing.6 0644 root bin
+f none /opt/csw/share/man/man6/noseguy.6 0644 root bin
+f none /opt/csw/share/man/man6/swirl.6 0644 root bin
+f none /opt/csw/share/man/man6/loop.6 0644 root bin
+f none /opt/csw/share/man/man6/sierpinski.6 0644 root bin
+f none /opt/csw/share/man/man6/vidwhacker.6 0644 root bin
+f none /opt/csw/share/man/man6/phosphor.6 0644 root bin
+f none /opt/csw/share/man/man6/pacman.6 0644 root bin
+f none /opt/csw/share/man/man6/rocks.6 0644 root bin
+f none /opt/csw/share/man/man6/blinkbox.6 0644 root bin
+f none /opt/csw/share/man/man6/blocktube.6 0644 root bin
+f none /opt/csw/share/man/man6/fiberlamp.6 0644 root bin
+f none /opt/csw/share/man/man6/interaggregate.6 0644 root bin
+f none /opt/csw/share/man/man6/molecule.6 0644 root bin
+f none /opt/csw/share/man/man6/antmaze.6 0644 root bin
+f none /opt/csw/share/man/man6/substrate.6 0644 root bin
+f none /opt/csw/share/man/man6/flame.6 0644 root bin
+f none /opt/csw/share/man/man6/fadeplot.6 0644 root bin
+f none /opt/csw/share/man/man6/glslideshow.6 0644 root bin
+f none /opt/csw/share/man/man6/triangle.6 0644 root bin
+f none /opt/csw/share/man/man6/antspotlight.6 0644 root bin
+f none /opt/csw/share/man/man6/glcells.6 0644 root bin
+f none /opt/csw/share/man/man6/pong.6 0644 root bin
+d none /opt/csw/share/man/man1 0755 root bin
+f none /opt/csw/share/man/man1/xscreensaver-text.1 0644 root bin
+f none /opt/csw/share/man/man1/xscreensaver-getimage-video.1 0644 root bin
+f none /opt/csw/share/man/man1/xscreensaver.1 0644 root bin
+f none /opt/csw/share/man/man1/xscreensaver-demo.1 0644 root bin
+f none /opt/csw/share/man/man1/xscreensaver-getimage-file.1 0644 root bin
+f none /opt/csw/share/man/man1/xscreensaver-command.1 0644 root bin
+f none /opt/csw/share/man/man1/xscreensaver-getimage.1 0644 root bin
+d none /opt/csw/share/locale 0755 root bin
+d none /opt/csw/share/locale/hu 0755 root bin
+d none /opt/csw/share/locale/hu/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/hu/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/es 0755 root bin
+d none /opt/csw/share/locale/es/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/es/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/wa 0755 root bin
+d none /opt/csw/share/locale/wa/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/wa/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/pl 0755 root bin
+d none /opt/csw/share/locale/pl/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/pl/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/et 0755 root bin
+d none /opt/csw/share/locale/et/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/et/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/pt_BR 0755 root bin
+d none /opt/csw/share/locale/pt_BR/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/nb 0755 root bin
+d none /opt/csw/share/locale/nb/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nb/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/nl 0755 root bin
+d none /opt/csw/share/locale/nl/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nl/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/fr 0755 root bin
+d none /opt/csw/share/locale/fr/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/fr/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/ru 0755 root bin
+d none /opt/csw/share/locale/ru/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ru/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/ko 0755 root bin
+d none /opt/csw/share/locale/ko/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ko/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/pt 0755 root bin
+d none /opt/csw/share/locale/pt/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/pt/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/zh_TW 0755 root bin
+d none /opt/csw/share/locale/zh_TW/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/zh_TW/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/sv 0755 root bin
+d none /opt/csw/share/locale/sv/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sv/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/fi 0755 root bin
+d none /opt/csw/share/locale/fi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/fi/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/zh_CN 0755 root bin
+d none /opt/csw/share/locale/zh_CN/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/zh_CN/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/ja 0755 root bin
+d none /opt/csw/share/locale/ja/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ja/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/de 0755 root bin
+d none /opt/csw/share/locale/de/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/de/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/vi 0755 root bin
+d none /opt/csw/share/locale/vi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/vi/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/da 0755 root bin
+d none /opt/csw/share/locale/da/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/da/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/sk 0755 root bin
+d none /opt/csw/share/locale/sk/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sk/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/it 0755 root bin
+d none /opt/csw/share/locale/it/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/it/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/locale/ca 0755 root bin
+d none /opt/csw/share/locale/ca/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ca/LC_MESSAGES/xscreensaver.mo 0644 root bin
+d none /opt/csw/share/pixmaps 0755 root bin
+f none /opt/csw/share/pixmaps/xscreensaver.xpm 0644 root bin
+d none /opt/csw/bin 0755 root bin
+f none /opt/csw/bin/xscreensaver-getimage-video 0755 root bin
+f none /opt/csw/bin/xscreensaver-gl-helper 0755 root bin
+f none /opt/csw/bin/xscreensaver-getimage 0755 root bin
+f none /opt/csw/bin/xscreensaver-command 0755 root bin
+f none /opt/csw/bin/xscreensaver-getimage-file 0755 root bin
+f none /opt/csw/bin/xscreensaver-text 0755 root bin
+f none /opt/csw/bin/xscreensaver-demo 0755 root bin
+f none /opt/csw/bin/xscreensaver 0755 root bin
+d none /opt/csw/lib 0755 root bin
+d none /opt/csw/lib/X11 0755 root bin
+d none /opt/csw/lib/X11/app-defaults 0755 root bin
+f none /opt/csw/lib/X11/app-defaults/XScreenSaver 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