summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--graphics/cairo/Makefile61
-rw-r--r--graphics/cairo/distinfo3
-rw-r--r--graphics/cairo/files/patch-src_cairo-ft-font.c28
-rw-r--r--graphics/cairo/files/patch-src_cairo-xlib-surface.c11
-rw-r--r--graphics/cairo/pkg-descr13
-rw-r--r--graphics/cairo/pkg-plist66
-rw-r--r--graphics/glitz/Makefile33
-rw-r--r--graphics/glitz/distinfo3
-rw-r--r--graphics/glitz/pkg-descr5
-rw-r--r--graphics/glitz/pkg-plist12
-rw-r--r--x11-themes/gtk-engines2/Makefile34
-rw-r--r--x11-themes/gtk-engines2/distinfo3
-rw-r--r--x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-draw.c20
-rw-r--r--x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-gradient.c31
-rw-r--r--x11-themes/gtk-engines2/pkg-descr3
-rw-r--r--x11-themes/gtk-engines2/pkg-plist121
16 files changed, 447 insertions, 0 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile
new file mode 100644
index 000000000..ab64a8a0f
--- /dev/null
+++ b/graphics/cairo/Makefile
@@ -0,0 +1,61 @@
+# New ports collection makefile for: cairo
+# Date created: 2004-10-06
+# Whom: Michael Johnson <ahze@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports-experimental/graphics/cairo/Makefile,v 1.1 2006/04/26 15:21:28 ahze Exp $
+#
+
+PORTNAME= cairo
+PORTVERSION= 1.1.2
+CATEGORIES= graphics
+MASTER_SITES= http://cairographics.org/snapshots/
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Vector graphics library with cross-device output support
+
+LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
+ png.5:${PORTSDIR}/graphics/png \
+ fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig
+
+CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \
+ --enable-pdf \
+ --enable-ps
+USE_GNOME= gnometarget gnomehack ltverhack
+USE_AUTOTOOLS= libtool:15
+INSTALLS_SHLIB= yes
+
+CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${X11BASE}/include" \
+ LDFLAGS="${PTHREAD_LIBS}"
+
+OPTIONS+= GLITZ "Enable Glitz OpenGL Support" Off
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITH_GLITZ)
+LIB_DEPENDS+= glitz-glx.1:${PORTSDIR}/graphics/glitz
+CONFIGURE_ARGS+= --enable-glitz
+PLIST_SUB+= GLITZ=""
+.else
+CONFIGURE_ARGS+= --disable-glitz
+PLIST_SUB+= GLITZ="@comment "
+.endif
+
+.if defined(WITHOUT_X11)
+CONFIGURE_ARGS+=--disable-xlib
+PLIST_SUB+= X11="@comment "
+.else
+USE_XLIB= yes
+PLIST_SUB+= X11=""
+.endif
+
+post-patch:
+.if ${OSVERSION} < 500000
+ @${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \
+ ${WRKSRC}/src/*.* \
+ ${WRKSRC}/pixman/src/*.*
+.endif
+ @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' \
+ ${WRKSRC}/test/Makefile.in
+
+.include <bsd.port.post.mk>
diff --git a/graphics/cairo/distinfo b/graphics/cairo/distinfo
new file mode 100644
index 000000000..2d0fff4f6
--- /dev/null
+++ b/graphics/cairo/distinfo
@@ -0,0 +1,3 @@
+MD5 (cairo-1.1.2.tar.gz) = fa311ae12985a3ee75565cb002733022
+SHA256 (cairo-1.1.2.tar.gz) = 1c7085ceed8c257e91376591e9d4641e099e6b240c60fe77acb70a309604a75f
+SIZE (cairo-1.1.2.tar.gz) = 1783307
diff --git a/graphics/cairo/files/patch-src_cairo-ft-font.c b/graphics/cairo/files/patch-src_cairo-ft-font.c
new file mode 100644
index 000000000..8cd60665f
--- /dev/null
+++ b/graphics/cairo/files/patch-src_cairo-ft-font.c
@@ -0,0 +1,28 @@
+--- src/cairo-ft-font.c.orig Tue Aug 16 14:46:46 2005
++++ src/cairo-ft-font.c Tue Aug 16 14:46:59 2005
+@@ -44,6 +44,11 @@
+ #include <fontconfig/fontconfig.h>
+ #include <fontconfig/fcfreetype.h>
+
++#include <sys/types.h>
++#include <stdlib.h>
++#include <time.h>
++#include <unistd.h>
++
+ #include <ft2build.h>
+ #include FT_FREETYPE_H
+ #include FT_OUTLINE_H
+@@ -257,7 +262,12 @@ _cairo_ft_unscaled_font_init_key (cairo_
+ key->id = id;
+
+ /* 1607 is just an arbitrary prime. */
+- hash = _cairo_hash_string (filename);
++ if (filename != NULL) {
++ hash = _cairo_hash_string (filename);
++ } else {
++ srandom(time(NULL) * getpid());
++ hash = random();
++ }
+ hash += ((unsigned long) id) * 1607;
+
+ key->base.hash_entry.hash = hash;
diff --git a/graphics/cairo/files/patch-src_cairo-xlib-surface.c b/graphics/cairo/files/patch-src_cairo-xlib-surface.c
new file mode 100644
index 000000000..396ac3e29
--- /dev/null
+++ b/graphics/cairo/files/patch-src_cairo-xlib-surface.c
@@ -0,0 +1,11 @@
+--- src/cairo-xlib-surface.c.orig Mon Oct 3 22:44:43 2005
++++ src/cairo-xlib-surface.c Wed Nov 16 18:59:40 2005
+@@ -1758,7 +1758,7 @@
+
+ surface->buggy_repeat = FALSE;
+ if (strstr (ServerVendor (dpy), "X.Org") != NULL) {
+- if (VendorRelease (dpy) <= 60802000)
++ if (VendorRelease (dpy) < 60900000)
+ surface->buggy_repeat = TRUE;
+ } else if (strstr (ServerVendor (dpy), "XFree86") != NULL) {
+ if (VendorRelease (dpy) <= 40500000)
diff --git a/graphics/cairo/pkg-descr b/graphics/cairo/pkg-descr
new file mode 100644
index 000000000..4fd137a19
--- /dev/null
+++ b/graphics/cairo/pkg-descr
@@ -0,0 +1,13 @@
+Cairo is a vector graphics library with cross-device output
+support. Currently supported output targets include the X Window
+System and in-memory image buffers. PostScript and PDF file output is
+planned. Cairo is designed to produce identical output on all output
+media while taking advantage of display hardware acceleration when
+available (eg. through the X Render Extension).
+
+Cairo provides a stateful user-level API with capabilities similar to
+the PDF 1.4 imaging model. Cairo provides operations including stroking
+and filling Bezier cubic splines, transforming and compositing translucent
+images, and antialiased text rendering.
+
+WWW: http://www.cairographics.org
diff --git a/graphics/cairo/pkg-plist b/graphics/cairo/pkg-plist
new file mode 100644
index 000000000..a59f903ed
--- /dev/null
+++ b/graphics/cairo/pkg-plist
@@ -0,0 +1,66 @@
+include/cairo/cairo-features.h
+include/cairo/cairo-ft.h
+include/cairo/cairo-glitz.h
+include/cairo/cairo-pdf.h
+include/cairo/cairo-ps.h
+include/cairo/cairo-xlib-xrender.h
+include/cairo/cairo-xlib.h
+include/cairo/cairo.h
+lib/libcairo.a
+lib/libcairo.la
+lib/libcairo.so
+lib/libcairo.so.2
+libdata/pkgconfig/cairo.pc
+%%DOCSDIR%%/cairo/Drawing.html
+%%DOCSDIR%%/cairo/Fonts.html
+%%DOCSDIR%%/cairo/Support.html
+%%DOCSDIR%%/cairo/Surfaces.html
+%%DOCSDIR%%/cairo/bindings-errors.html
+%%DOCSDIR%%/cairo/bindings-fonts.html
+%%DOCSDIR%%/cairo/bindings-memory.html
+%%DOCSDIR%%/cairo/bindings-overloading.html
+%%DOCSDIR%%/cairo/bindings-path.html
+%%DOCSDIR%%/cairo/bindings-patterns.html
+%%DOCSDIR%%/cairo/bindings-return-values.html
+%%DOCSDIR%%/cairo/bindings-streams.html
+%%DOCSDIR%%/cairo/bindings-surfaces.html
+%%DOCSDIR%%/cairo/cairo-BeOS-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-Error-handling.html
+%%DOCSDIR%%/cairo/cairo-Font-Options.html
+%%DOCSDIR%%/cairo/cairo-FreeType-Fonts.html
+%%DOCSDIR%%/cairo/cairo-Glitz-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-Image-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-PDF-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-PNG-Support.html
+%%DOCSDIR%%/cairo/cairo-Paths.html
+%%DOCSDIR%%/cairo/cairo-Patterns.html
+%%DOCSDIR%%/cairo/cairo-PostScript-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-SVG-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-Scaled-Fonts.html
+%%DOCSDIR%%/cairo/cairo-Text.html
+%%DOCSDIR%%/cairo/cairo-Transformations.html
+%%DOCSDIR%%/cairo/cairo-Types.html
+%%DOCSDIR%%/cairo/cairo-Version-Information.html
+%%DOCSDIR%%/cairo/cairo-Win32-Fonts.html
+%%DOCSDIR%%/cairo/cairo-Win32-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-XLib-Surfaces.html
+%%DOCSDIR%%/cairo/cairo-cairo-font-face-t.html
+%%DOCSDIR%%/cairo/cairo-cairo-matrix-t.html
+%%DOCSDIR%%/cairo/cairo-cairo-surface-t.html
+%%DOCSDIR%%/cairo/cairo-cairo-t.html
+%%DOCSDIR%%/cairo/cairo.devhelp
+%%DOCSDIR%%/cairo/cairo.devhelp2
+%%DOCSDIR%%/cairo/home.png
+%%DOCSDIR%%/cairo/index.html
+%%DOCSDIR%%/cairo/index.sgml
+%%DOCSDIR%%/cairo/ix01.html
+%%DOCSDIR%%/cairo/language-bindings.html
+%%DOCSDIR%%/cairo/left.png
+%%DOCSDIR%%/cairo/pt01.html
+%%DOCSDIR%%/cairo/pt02.html
+%%DOCSDIR%%/cairo/right.png
+%%DOCSDIR%%/cairo/style.css
+%%DOCSDIR%%/cairo/up.png
+@dirrm %%DOCSDIR%%/cairo
+@dirrm %%DOCSDIR%%
+@dirrm include/cairo
diff --git a/graphics/glitz/Makefile b/graphics/glitz/Makefile
new file mode 100644
index 000000000..f53489f02
--- /dev/null
+++ b/graphics/glitz/Makefile
@@ -0,0 +1,33 @@
+# New ports collection makefile for: glitz
+# Date created: 2004-10-06
+# Whom: Michael Johnson <ahze@ahze.net>
+#
+# $FreeBSD$
+# $MCom: ports-experimental/graphics/glitz/Makefile,v 1.2 2006/02/26 15:44:51 ahze Exp $
+#
+
+PORTNAME= glitz
+PORTVERSION= 0.5.3
+CATEGORIES= graphics
+MASTER_SITES= http://cairographics.org/snapshots/
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= OpenGL image compositing library
+
+USE_GL= yes
+USE_GNOME= pkgconfig gnometarget gnomehack
+GNU_CONFIGURE= yes
+INSTALLS_SHLIB= yes
+
+CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" \
+ LDFLAGS="${PTHREAD_LIBS}"
+
+.include <bsd.port.pre.mk>
+
+post-patch:
+.if ${OSVERSION} < 500000
+ @${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \
+ ${WRKSRC}/src/glitzint.h
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/graphics/glitz/distinfo b/graphics/glitz/distinfo
new file mode 100644
index 000000000..ebcd6abde
--- /dev/null
+++ b/graphics/glitz/distinfo
@@ -0,0 +1,3 @@
+MD5 (glitz-0.5.3.tar.gz) = 9aefc7006ca74114bc012eec8797e5b2
+SHA256 (glitz-0.5.3.tar.gz) = 99546b8c5a3d7d552be24a161de5753b8e8684543da0f86d0ca41aeec54b5d32
+SIZE (glitz-0.5.3.tar.gz) = 457423
diff --git a/graphics/glitz/pkg-descr b/graphics/glitz/pkg-descr
new file mode 100644
index 000000000..d7c1f8266
--- /dev/null
+++ b/graphics/glitz/pkg-descr
@@ -0,0 +1,5 @@
+Glitz is an OpenGL image compositing library. Glitz provides
+Porter/Duff compositing of images and implicit mask generation for
+geometric primitives including trapezoids, triangles, and rectangles.
+
+WWW: http://freedesktop.org/Software/glitz
diff --git a/graphics/glitz/pkg-plist b/graphics/glitz/pkg-plist
new file mode 100644
index 000000000..e87edf032
--- /dev/null
+++ b/graphics/glitz/pkg-plist
@@ -0,0 +1,12 @@
+include/glitz-glx.h
+include/glitz.h
+lib/libglitz-glx.a
+lib/libglitz-glx.la
+lib/libglitz-glx.so
+lib/libglitz-glx.so.1
+lib/libglitz.a
+lib/libglitz.la
+lib/libglitz.so
+lib/libglitz.so.1
+libdata/pkgconfig/glitz-glx.pc
+libdata/pkgconfig/glitz.pc
diff --git a/x11-themes/gtk-engines2/Makefile b/x11-themes/gtk-engines2/Makefile
new file mode 100644
index 000000000..40aa3d212
--- /dev/null
+++ b/x11-themes/gtk-engines2/Makefile
@@ -0,0 +1,34 @@
+# New ports collection makefile for: gtk-engines2
+# Date Created: 21 May 2002
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports-experimental/x11-themes/gtk-engines2/Makefile,v 1.2 2006/02/25 00:44:58 marcus Exp $
+#
+
+PORTNAME= gtk-engines2
+PORTVERSION= 2.7.4
+PORTREVISION= 1
+CATEGORIES= x11-themes
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/2.7
+DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Theme engine for the gtk+-2.0 toolkit
+
+CONFLICTS= gtk-smooth-engine-[0-9]* clearlooks-[0-9]*
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+GNU_CONFIGURE= yes
+USE_GNOME= gnomehack gtk20
+PLIST_SUB= GTK_VERSION="2.4.0"
+
+# Disable the gtk1 theme.
+post-patch:
+ @${REINPLACE_CMD} -e 's|gtk gtk-2.0|gtk-2.0|g' \
+ ${WRKSRC}/themes/Redmond/Makefile.in
+
+.include <bsd.port.mk>
diff --git a/x11-themes/gtk-engines2/distinfo b/x11-themes/gtk-engines2/distinfo
new file mode 100644
index 000000000..c34c45604
--- /dev/null
+++ b/x11-themes/gtk-engines2/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/gtk-engines-2.7.4.tar.bz2) = b0f27c0f6d5f610ca445a3d82d5779da
+SHA256 (gnome2/gtk-engines-2.7.4.tar.bz2) = 0a40b43898a898e60bca29ed023034e362467573de52f5e841079c02528cc76c
+SIZE (gnome2/gtk-engines-2.7.4.tar.bz2) = 464235
diff --git a/x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-draw.c b/x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-draw.c
new file mode 100644
index 000000000..371abad8e
--- /dev/null
+++ b/x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-draw.c
@@ -0,0 +1,20 @@
+--- engines/crux/src/crux-draw.c.orig Wed Aug 24 12:45:47 2005
++++ engines/crux/src/crux-draw.c Wed Aug 24 12:46:08 2005
+@@ -2323,6 +2323,8 @@ draw_extension (GtkStyle *style,
+ GdkRectangle rect;
+
+ eazel_theme_data *theme_data;
++ GtkWidget* parent_widget;
++ gint relative_x;
+
+ g_return_if_fail (style != NULL);
+ g_return_if_fail (window != NULL);
+@@ -2334,8 +2336,6 @@ draw_extension (GtkStyle *style,
+ detail, state_type, shadow_type, x, y, width, height);
+
+ /* Get x relative to parent widget, not window */
+- GtkWidget* parent_widget;
+- gint relative_x;
+ if (widget != NULL)
+ {
+ parent_widget = gtk_widget_get_parent(widget);
diff --git a/x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-gradient.c b/x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-gradient.c
new file mode 100644
index 000000000..ec5a85340
--- /dev/null
+++ b/x11-themes/gtk-engines2/files/patch-engines_crux_src_crux-gradient.c
@@ -0,0 +1,31 @@
+--- engines/crux/src/crux-gradient.c.orig Thu Oct 16 20:57:05 2003
++++ engines/crux/src/crux-gradient.c Thu Oct 16 21:01:18 2003
+@@ -207,7 +207,7 @@
+ const eazel_engine_gradient *gradient)
+ {
+ int rgb_size = clip_rect->height;
+- guchar *rgb = alloca (rgb_size * 3), *ptr;
++ guchar *rgb = g_malloc (rgb_size * 3), *ptr;
+
+ eazel_engine_fill_gradient_rgb_buffer (gradient, full_rect->height, rgb,
+ clip_rect->y - full_rect->y,
+@@ -239,7 +239,7 @@
+ }
+ else
+ {
+- guchar *xrgb = alloca (clip_rect->width * clip_rect->height * 3);
++ guchar *xrgb = g_malloc (clip_rect->width * clip_rect->height * 3);
+ int x, y;
+ guchar *ptr_in = rgb, *ptr_out = xrgb;
+ for (y = 0; y < clip_rect->height; y++)
+@@ -257,7 +257,10 @@
+ gdk_draw_rgb_image (drawable, gc, clip_rect->x, clip_rect->y,
+ clip_rect->width, clip_rect->height,
+ dither_mode, xrgb, clip_rect->width * 3);
++ g_free (xrgb);
+ }
++
++ g_free (rgb);
+ }
+
+ static void
diff --git a/x11-themes/gtk-engines2/pkg-descr b/x11-themes/gtk-engines2/pkg-descr
new file mode 100644
index 000000000..e787f789b
--- /dev/null
+++ b/x11-themes/gtk-engines2/pkg-descr
@@ -0,0 +1,3 @@
+Theme engine for the gtk+-2.0 toolkit.
+
+WWW: http://www.gtk.org/
diff --git a/x11-themes/gtk-engines2/pkg-plist b/x11-themes/gtk-engines2/pkg-plist
new file mode 100644
index 000000000..e474e545f
--- /dev/null
+++ b/x11-themes/gtk-engines2/pkg-plist
@@ -0,0 +1,121 @@
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libclearlooks.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libclearlooks.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libcrux-engine.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libcrux-engine.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libhcengine.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libhcengine.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libindustrial.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libindustrial.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/liblighthouseblue.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/liblighthouseblue.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libmetal.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libmetal.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libmist.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libmist.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libredmond95.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libredmond95.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libsmooth.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libsmooth.so
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libthinice.la
+lib/gtk-2.0/%%GTK_VERSION%%/engines/libthinice.so
+libdata/pkgconfig/gtk-engines-2.pc
+share/themes/Clearlooks/gtk-2.0/gtkrc
+share/themes/Crux/gtk-2.0/gtkrc
+share/themes/Crux/pixmaps/arrow_down-spinner.png
+share/themes/Crux/pixmaps/arrow_down.png
+share/themes/Crux/pixmaps/arrow_left.png
+share/themes/Crux/pixmaps/arrow_right.png
+share/themes/Crux/pixmaps/arrow_up-spinner.png
+share/themes/Crux/pixmaps/arrow_up.png
+share/themes/Crux/pixmaps/check-active-default-focus.png
+share/themes/Crux/pixmaps/check-active-default.png
+share/themes/Crux/pixmaps/check-active-hilight-focus.png
+share/themes/Crux/pixmaps/check-active-hilight.png
+share/themes/Crux/pixmaps/check-active-insensitive.png
+share/themes/Crux/pixmaps/check-active-pressed-focus.png
+share/themes/Crux/pixmaps/check-active-pressed.png
+share/themes/Crux/pixmaps/check-default-focus.png
+share/themes/Crux/pixmaps/check-default.png
+share/themes/Crux/pixmaps/check-hilight-focus.png
+share/themes/Crux/pixmaps/check-hilight.png
+share/themes/Crux/pixmaps/check-insensitive.png
+share/themes/Crux/pixmaps/check-pressed-focus.png
+share/themes/Crux/pixmaps/check-pressed.png
+share/themes/Crux/pixmaps/progressbar-left.png
+share/themes/Crux/pixmaps/progressbar-right.png
+share/themes/Crux/pixmaps/progressbar.png
+share/themes/Crux/pixmaps/progressbar_trough.png
+share/themes/Crux/pixmaps/radio-active-default-focus.png
+share/themes/Crux/pixmaps/radio-active-default.png
+share/themes/Crux/pixmaps/radio-active-hilight-focus.png
+share/themes/Crux/pixmaps/radio-active-hilight.png
+share/themes/Crux/pixmaps/radio-active-insensitive.png
+share/themes/Crux/pixmaps/radio-active-pressed-focus.png
+share/themes/Crux/pixmaps/radio-active-pressed.png
+share/themes/Crux/pixmaps/radio-default-focus.png
+share/themes/Crux/pixmaps/radio-default.png
+share/themes/Crux/pixmaps/radio-hilight-focus.png
+share/themes/Crux/pixmaps/radio-hilight.png
+share/themes/Crux/pixmaps/radio-insensitive.png
+share/themes/Crux/pixmaps/radio-pressed-focus.png
+share/themes/Crux/pixmaps/radio-pressed.png
+share/themes/Crux/pixmaps/scroller-arrow-down-hilight.png
+share/themes/Crux/pixmaps/scroller-arrow-down-pressed.png
+share/themes/Crux/pixmaps/scroller-arrow-down.png
+share/themes/Crux/pixmaps/scroller-arrow-left-hilight.png
+share/themes/Crux/pixmaps/scroller-arrow-left-pressed.png
+share/themes/Crux/pixmaps/scroller-arrow-left.png
+share/themes/Crux/pixmaps/scroller-arrow-right-hilight.png
+share/themes/Crux/pixmaps/scroller-arrow-right-pressed.png
+share/themes/Crux/pixmaps/scroller-arrow-right.png
+share/themes/Crux/pixmaps/scroller-arrow-up-hilight.png
+share/themes/Crux/pixmaps/scroller-arrow-up-pressed.png
+share/themes/Crux/pixmaps/scroller-arrow-up.png
+share/themes/Crux/pixmaps/scroller-h-hilight.png
+share/themes/Crux/pixmaps/scroller-h-thumb-hilight.png
+share/themes/Crux/pixmaps/scroller-h-thumb.png
+share/themes/Crux/pixmaps/scroller-h-trough.png
+share/themes/Crux/pixmaps/scroller-h.png
+share/themes/Crux/pixmaps/scroller-v-hilight.png
+share/themes/Crux/pixmaps/scroller-v-thumb-hilight.png
+share/themes/Crux/pixmaps/scroller-v-thumb.png
+share/themes/Crux/pixmaps/scroller-v-trough.png
+share/themes/Crux/pixmaps/scroller-v.png
+share/themes/Crux/pixmaps/slider_h_thumb.png
+share/themes/Crux/pixmaps/slider_h_trough.png
+share/themes/Crux/pixmaps/slider_h_trough_focus.png
+share/themes/Crux/pixmaps/slider_v_thumb.png
+share/themes/Crux/pixmaps/slider_v_trough.png
+share/themes/Crux/pixmaps/slider_v_trough_focus.png
+share/themes/Crux/pixmaps/tab_left-unsel.png
+share/themes/Crux/pixmaps/tab_left.png
+share/themes/Crux/pixmaps/tab_right.png
+share/themes/Crux/pixmaps/tab_sel-bottom.png
+share/themes/Crux/pixmaps/tab_sel.png
+share/themes/Crux/pixmaps/tab_usel-bottom-left.png
+share/themes/Crux/pixmaps/tab_usel-bottom.png
+share/themes/Crux/pixmaps/tab_usel-left.png
+share/themes/Crux/pixmaps/tab_usel.png
+share/themes/Industrial/gtk-2.0/gtkrc
+share/themes/LighthouseBlue/gtk-2.0/gtkrc
+share/themes/Metal/gtk-2.0/gtkrc
+share/themes/Mist/gtk-2.0/gtkrc
+share/themes/Redmond/gtk-2.0/gtkrc
+share/themes/ThinIce/gtk-2.0/gtkrc
+@dirrm share/themes/ThinIce/gtk-2.0
+@dirrm share/themes/Redmond/gtk-2.0
+@dirrm share/themes/Mist/gtk-2.0
+@dirrm share/themes/Metal/gtk-2.0
+@dirrm share/themes/LighthouseBlue/gtk-2.0
+@dirrm share/themes/Industrial/gtk-2.0
+@dirrm share/themes/Crux/pixmaps
+@dirrm share/themes/Crux/gtk-2.0
+@dirrm share/themes/Clearlooks/gtk-2.0
+@unexec /bin/rmdir %D/share/themes/ThinIce 2>/dev/null || true
+@unexec /bin/rmdir %D/share/themes/Redmond 2>/dev/null || true
+@unexec /bin/rmdir %D/share/themes/Mist 2>/dev/null || true
+@unexec /bin/rmdir %D/share/themes/Metal 2>/dev/null || /usr/bin/true
+@unexec /bin/rmdir %D/share/themes/LighthouseBlue 2>/dev/null || true
+@unexec /bin/rmdir %D/share/themes/Industrial 2>/dev/null || true
+@unexec /bin/rmdir %D/share/themes/Crux 2>/dev/null || true
+@unexec /bin/rmdir %D/share/themes/Clearlooks 2>/dev/null || true