summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extra/freeglut/.footprint17
-rw-r--r--extra/freeglut/.md5sum2
-rwxr-xr-xextra/freeglut/Pkgfile21
-rw-r--r--extra/freeglut/glut-cursor-inherit.patch23
-rw-r--r--extra/imagemagick/.footprint1
-rw-r--r--extra/imagemagick/.md5sum2
-rwxr-xr-xextra/imagemagick/Pkgfile6
-rw-r--r--kde/gtk-kde4/.footprint273
-rw-r--r--kde/gtk-kde4/.md5sum2
-rwxr-xr-xkde/gtk-kde4/Pkgfile18
-rw-r--r--kde/gtk-kde4/fix-permission.patch20
11 files changed, 381 insertions, 4 deletions
diff --git a/extra/freeglut/.footprint b/extra/freeglut/.footprint
new file mode 100644
index 000000000..229cd6876
--- /dev/null
+++ b/extra/freeglut/.footprint
@@ -0,0 +1,17 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/GL/
+-rw-r--r-- root/root usr/include/GL/freeglut.h
+-rw-r--r-- root/root usr/include/GL/freeglut_ext.h
+-rw-r--r-- root/root usr/include/GL/freeglut_std.h
+-rw-r--r-- root/root usr/include/GL/glut.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libglut.a
+-rwxr-xr-x root/root usr/lib/libglut.la
+lrwxrwxrwx root/root usr/lib/libglut.so -> libglut.so.3.8.0
+lrwxrwxrwx root/root usr/lib/libglut.so.3 -> libglut.so.3.8.0
+-rwxr-xr-x root/root usr/lib/libglut.so.3.8.0
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/licenses/
+drwxr-xr-x root/root usr/share/licenses/freeglut/
+-rw-r--r-- root/root usr/share/licenses/freeglut/COPYING
diff --git a/extra/freeglut/.md5sum b/extra/freeglut/.md5sum
new file mode 100644
index 000000000..ee112ddf5
--- /dev/null
+++ b/extra/freeglut/.md5sum
@@ -0,0 +1,2 @@
+6d16873bd876fbf4980a927cfbc496a1 freeglut-2.4.0.tar.gz
+d6ba7e22ebb0fd7904b8e18c97475ba6 glut-cursor-inherit.patch
diff --git a/extra/freeglut/Pkgfile b/extra/freeglut/Pkgfile
new file mode 100755
index 000000000..233dc54e7
--- /dev/null
+++ b/extra/freeglut/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Fournit des fonctionalités a de petit programmes en OpenGL
+# URL: http://freeglut.sourceforge.net/
+# Maintainer: NuTyX packager team
+# Packager: lesibel at free dot fr
+# Depends on: ibxxf86vm, mesa
+
+name=freeglut
+version=2.4.0
+release=1
+source=(http://downloads.sourceforge.net/freeglut//$name-$version.tar.gz \
+ glut-cursor-inherit.patch)
+build() {
+ cd $name-$version
+ patch -Np1 -i ../glut-cursor-inherit.patch
+ sed -i 's/-Werror//' configure
+ ./configure --prefix=/usr
+ make all
+ make DESTDIR=$PKG install
+ install -m755 -d $PKG/usr/share/licenses/$name
+ install -m644 COPYING $PKG/usr/share/licenses/$name/
+}
diff --git a/extra/freeglut/glut-cursor-inherit.patch b/extra/freeglut/glut-cursor-inherit.patch
new file mode 100644
index 000000000..b56a37cb8
--- /dev/null
+++ b/extra/freeglut/glut-cursor-inherit.patch
@@ -0,0 +1,23 @@
+--- freeglut-2.4.0.orig/src/freeglut_cursor.c
++++ freeglut-2.4.0/src/freeglut_cursor.c
+@@ -130,7 +130,9 @@
+ XCreateFontCursor( fgDisplay.Display, entry->cursorShape );
+ }
+ cursor = entry->cachedCursor;
+- } else {
++ if (cursor == None)
++ fgError( "Failed to create cursor" );
++ } else {
+ switch( cursorIDToUse )
+ {
+ case GLUT_CURSOR_NONE:
+@@ -147,9 +149,6 @@
+ }
+ }
+
+- if ( ( cursorIDToUse != GLUT_CURSOR_NONE ) && ( cursor == None ) ) {
+- fgError( "Failed to create cursor" );
+- }
+ XDefineCursor( fgDisplay.Display,
+ window->Window.Handle, cursor );
+ }
diff --git a/extra/imagemagick/.footprint b/extra/imagemagick/.footprint
index f5b0291f0..54a63f7b0 100644
--- a/extra/imagemagick/.footprint
+++ b/extra/imagemagick/.footprint
@@ -87,6 +87,7 @@ drwxr-xr-x root/root usr/include/ImageMagick/magick/
-rw-r--r-- root/root usr/include/ImageMagick/magick/module.h
-rw-r--r-- root/root usr/include/ImageMagick/magick/monitor.h
-rw-r--r-- root/root usr/include/ImageMagick/magick/montage.h
+-rw-r--r-- root/root usr/include/ImageMagick/magick/morphology.h
-rw-r--r-- root/root usr/include/ImageMagick/magick/option.h
-rw-r--r-- root/root usr/include/ImageMagick/magick/paint.h
-rw-r--r-- root/root usr/include/ImageMagick/magick/pixel.h
diff --git a/extra/imagemagick/.md5sum b/extra/imagemagick/.md5sum
index 0688fe98b..43cf27f63 100644
--- a/extra/imagemagick/.md5sum
+++ b/extra/imagemagick/.md5sum
@@ -1 +1 @@
-8f4c1ea8b5616a9e6196153a67fcde7d ImageMagick-6.5.7-8.tar.bz2
+5f2d4d0eacbeea48af5c4cfb37c4afe2 ImageMagick-6.5.7-10.tar.bz2
diff --git a/extra/imagemagick/Pkgfile b/extra/imagemagick/Pkgfile
index c262f920f..b92c747f9 100755
--- a/extra/imagemagick/Pkgfile
+++ b/extra/imagemagick/Pkgfile
@@ -1,13 +1,13 @@
# Description: Manipulateur d'image en ligne de commande
# Maintainer: NuTyX core team
-# Packager: fred.galusik at gmail dot com
+# Packager: lesibel at free dot fr
# URL: http://www.imagemagick.org/
# Depends on: freetype, ghostscript, lcms, libgsf, giflib, libxml2, openexr
name=imagemagick
-version=6.5.7.8
+version=6.5.7.10
release=1
-_version=6.5.7-8
+_version=6.5.7-10
source=(ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-${_version}.tar.bz2)
build () {
diff --git a/kde/gtk-kde4/.footprint b/kde/gtk-kde4/.footprint
new file mode 100644
index 000000000..b53f92b1c
--- /dev/null
+++ b/kde/gtk-kde4/.footprint
@@ -0,0 +1,273 @@
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/xdg/
+drwxr-xr-x root/root etc/xdg/autostart/
+-rwxr-xr-x root/root etc/xdg/autostart/gtk-kde4.desktop
+drwxr-xr-x root/root opt/
+drwxr-xr-x root/root opt/kde/
+drwxr-xr-x root/root opt/kde/bin/
+-rwxr-xr-x root/root opt/kde/bin/gtk-kde4
+drwxr-xr-x root/root opt/kde/lib/
+drwxr-xr-x root/root opt/kde/lib/kde4/
+-rw-r--r-- root/root opt/kde/lib/kde4/kcm_gk4.so
+drwxr-xr-x root/root opt/kde/share/
+drwxr-xr-x root/root opt/kde/share/icons/
+-rw-r--r-- root/root opt/kde/share/icons/gk4icon.png
+drwxr-xr-x root/root opt/kde/share/kde4/
+drwxr-xr-x root/root opt/kde/share/kde4/services/
+-rw-r--r-- root/root opt/kde/share/kde4/services/kcm_gk4.desktop
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/icons/
+drwxr-xr-x root/root usr/share/icons/gk4ico/
+drwxr-xr-x root/root usr/share/icons/gk4ico/16x16/
+drwxr-xr-x root/root usr/share/icons/gk4ico/16x16/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/16x16/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/16x16/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/16x16/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/16x16/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/22x22/
+drwxr-xr-x root/root usr/share/icons/gk4ico/22x22/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/22x22/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/22x22/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/22x22/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/22x22/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/32x32/
+drwxr-xr-x root/root usr/share/icons/gk4ico/32x32/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/32x32/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/32x32/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/32x32/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/32x32/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/48x48/
+drwxr-xr-x root/root usr/share/icons/gk4ico/48x48/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/48x48/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/48x48/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/48x48/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/48x48/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/64x64/
+drwxr-xr-x root/root usr/share/icons/gk4ico/64x64/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/64x64/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/64x64/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/64x64/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/64x64/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/16x16/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/16x16/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/16x16/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/16x16/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/16x16/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/16x16/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/22x22/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/22x22/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/22x22/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/22x22/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/22x22/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/22x22/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/32x32/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/32x32/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/32x32/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/32x32/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/32x32/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/32x32/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/48x48/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/48x48/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/48x48/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/48x48/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/48x48/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/48x48/status/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/64x64/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/64x64/actions/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/64x64/devices/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/64x64/mimetypes/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/64x64/places/
+drwxr-xr-x root/root usr/share/icons/gk4ico/def/64x64/status/
+-rw-r--r-- root/root usr/share/icons/gk4ico/index.theme
+drwxr-xr-x root/root usr/share/themes/
+drwxr-xr-x root/root usr/share/themes/qt4/
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Arrows/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-down-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-down.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-left-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-left.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-right-norm.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-right-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-right.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Arrows/arrow-up.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Buttons/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Buttons/button-default.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Buttons/button-insensitive.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Buttons/button-normal.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Buttons/button-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Buttons/button-pressed.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/check1.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/check2.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/check3.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/check4.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/check5.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/check6.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/checklight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/highlight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/option1.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/option2.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/option3.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/option4.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/option5.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Check-Radio/option6.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Combo/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-active.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-arrow-insens.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-arrow-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-arrow.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-inactive.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-insensitive.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-normal.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Combo/combo-prelight.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Frame-Gap/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Frame-Gap/frame-gap-end.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Frame-Gap/frame-gap-start.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Frame-Gap/frame1.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Frame-Gap/frame2.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Handles/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Handles/handle-h.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Handles/handle-v.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Handles/resize_grip.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Lines/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Lines/line-h.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Lines/line-v.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/ListHeaders/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/ListHeaders/list_header-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/ListHeaders/list_header-pressed.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/ListHeaders/list_header.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/menu-arrow-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/menu-arrow.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/menu-separator.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/menu.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/menubar-item.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/menubar.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Menu-Menubar/menuitem.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Others/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Others/focus.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Others/null.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Others/ruler.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Others/ruler_.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Panel/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Panel/panel-bg.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Panel/panel-bg2.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Panel/panelbutton1.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Panel/panelbutton2.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Panel/panelbutton3.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/ProgressBar/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/ProgressBar/progressbar-horiz.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/ProgressBar/progressbar-vert.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/ProgressBar/trough-progressbar-horiz.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/ProgressBar/trough-progressbar-vert.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Range/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Range/null.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Range/slider-horiz-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Range/slider-horiz.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Range/slider-vert-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Range/slider-vert.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Range/trough-horizontal.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Range/trough-vertical.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/scroll-thumb-horiz.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/scroll-thumb-vert.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/scroll.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/slider-horiz-insens.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/slider-horiz-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/slider-horiz.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/slider-vert-insens.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/slider-vert-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/slider-vert.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-down-insens.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-down-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-down.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-left-insens.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-left-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-left.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-right-insens.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-right-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-right.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-up-insens.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-up-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/stepper-up.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Scrollbars/trough-scrollbar-vert.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Shadows/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/entry-shadow-in.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/entry-shadow-in_.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-etched-out.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-in.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-in_ALT.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-none.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-none1.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-out (Kopie).png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-out.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/shadow-out_ALT.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/text-entry.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/text.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Shadows/window-bg.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Spin/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Spin/spin-down-disable.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Spin/spin-down-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Spin/spin-down.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Spin/spin-up-disable.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Spin/spin-up-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Spin/spin-up.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Spin/spin.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Tabs/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/notebook_bottom_flat.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/notebook_left_flat.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/notebook_right_flat.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/notebook_top_flat.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-bottom-active.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-bottom.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-left-active.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-left.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-right-active.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-right.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-top-active.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Tabs/tab-top.png
+drwxr-xr-x root/root usr/share/themes/qt4/gtk-2.0/Toolbar/
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/bg.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/toolbar.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/toolbarbg.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/toolbutton-default.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/toolbutton-normal.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/toolbutton-prelight.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/toolbutton-pressed.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/Toolbar/toolbutton-toggled.png
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/gtkrc
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/gtkrc~
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/panel.rc
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/scrollbar.rc
+-rw-r--r-- root/root usr/share/themes/qt4/gtk-2.0/scrollbar.rc~
+-rw-r--r-- root/root usr/share/themes/qt4/index.theme
+drwxr-xr-x root/root usr/share/themes/qt4/metacity-1/
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/bottom.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/bottom_left.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/bottom_right.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-close-focused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-close-pressed.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-close-unfocused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-maximize-focused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-maximize-pressed.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-maximize-unfocused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-menu-focused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-menu-normal.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-menu-pressed.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-menu-unfocused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-minimize-focused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-minimize-pressed.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/button-minimize-unfocused.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/left.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/metacity-theme-1.xml
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/right.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/top.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/top_left.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/top_right.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/un_top.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/un_top_left.png
+-rw-r--r-- root/root usr/share/themes/qt4/metacity-1/un_top_right.png
diff --git a/kde/gtk-kde4/.md5sum b/kde/gtk-kde4/.md5sum
new file mode 100644
index 000000000..8feb0c5ef
--- /dev/null
+++ b/kde/gtk-kde4/.md5sum
@@ -0,0 +1,2 @@
+5ab407a9f3f856af3575954c42262e31 74689-gtk-kde4(src)0.9.3.tar.gz
+1e5e0f2b057e9288a88834442ea56e5a fix-permission.patch
diff --git a/kde/gtk-kde4/Pkgfile b/kde/gtk-kde4/Pkgfile
new file mode 100755
index 000000000..1d243d3f9
--- /dev/null
+++ b/kde/gtk-kde4/Pkgfile
@@ -0,0 +1,18 @@
+# Description: Permet changement apparence des applis gkt sous kda4
+# URL: http://kde-look.org/content/show.php?content=74689
+# Maintainer: NuTyX packager team
+# Packager: lesibel at free dot fr
+# Depends on: kdebase-workspace, gtk-engines
+
+name=gtk-kde4
+version=0.9.3
+release=1
+source=(http://kde-apps.org/CONTENT/content-files/74689-$name\(src\)$version.tar.gz \
+ fix-permission.patch )
+build() {
+ cd $name
+ patch -p1 -i ../fix-permission.patch
+ cmake -DCMAKE_INSTALL_PREFIX=/usr
+ make
+ make DESTDIR=$PKG install
+}
diff --git a/kde/gtk-kde4/fix-permission.patch b/kde/gtk-kde4/fix-permission.patch
new file mode 100644
index 000000000..25204e45f
--- /dev/null
+++ b/kde/gtk-kde4/fix-permission.patch
@@ -0,0 +1,20 @@
+--- gtk-kde4/CMakeLists.txt~ 2009-11-21 05:49:31.009714048 +0100
++++ gtk-kde4/CMakeLists.txt 2009-11-21 05:50:23.879702352 +0100
+@@ -23,14 +23,7 @@
+
+ ADD_SUBDIRECTORY(daemon)
+
+-INSTALL(FILES daemon/gtk-kde4 DESTINATION ${KDE4_BIN_INSTALL_DIR} PERMISSIONS WORLD_EXECUTE)
+-INSTALL(FILES .gtkrc-2.0-kde4 DESTINATION $ENV{HOME} PERMISSIONS WORLD_READ)
+-
+-string(LENGTH conf len)
+-IF (NOT len)
+- INSTALL(FILES daemon/gtk-kde4.desktop DESTINATION $ENV{XDG_CONFIG_DIRS}/autostart PERMISSIONS WORLD_EXECUTE)
+-ELSE()
+- INSTALL(FILES daemon/gtk-kde4.desktop DESTINATION /etc/xdg/autostart PERMISSIONS WORLD_EXECUTE WORLD_READ)
+-ENDIF()
++INSTALL(PROGRAMS daemon/gtk-kde4 DESTINATION ${KDE4_BIN_INSTALL_DIR})
++INSTALL(PROGRAMS daemon/gtk-kde4.desktop DESTINATION /etc/xdg/autostart)
+
+ INSTALL(SCRIPT CMakeSymlink)
+\ No newline at end of file