diff options
Diffstat (limited to 'gnome')
-rw-r--r-- | gnome/evolution-data-server/Pkgfile | 2 | ||||
-rwxr-xr-x | gnome/gnome-compiz/.footprint | 22 | ||||
-rwxr-xr-x | gnome/gnome-compiz/.md5sum | 1 | ||||
-rwxr-xr-x | gnome/gnome-compiz/Pkgfile | 26 |
4 files changed, 50 insertions, 1 deletions
diff --git a/gnome/evolution-data-server/Pkgfile b/gnome/evolution-data-server/Pkgfile index f2bae80c1..c48e62c00 100644 --- a/gnome/evolution-data-server/Pkgfile +++ b/gnome/evolution-data-server/Pkgfile @@ -1,7 +1,7 @@ # Description: Evolution's Backend Server # Maintainer: NuTyX core team # Packager: thierryn1 at hispeed dot ch -# Depends on: gtk-doc, libgnomeui, libsoup, nss, libical, libgweather +# Depends on: gtk-doc, libgnomeui, libsoup, nss, libical, libgweather, popt, bison name=evolution-data-server version=2.28.2 diff --git a/gnome/gnome-compiz/.footprint b/gnome/gnome-compiz/.footprint new file mode 100755 index 000000000..a842647ef --- /dev/null +++ b/gnome/gnome-compiz/.footprint @@ -0,0 +1,22 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/gconf/ +drwxr-xr-x root/root etc/gconf/schemas/ +-rw-r--r-- root/root etc/gconf/schemas/gwd.schemas +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gtk-window-decorator +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/window-manager-settings/ +-rw-r--r-- root/root usr/lib/window-manager-settings/libcompiz.a +-rwxr-xr-x root/root usr/lib/window-manager-settings/libcompiz.la +-rwxr-xr-x root/root usr/lib/window-manager-settings/libcompiz.so +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/compiz.desktop +drwxr-xr-x root/root usr/share/gnome-control-center/ +drwxr-xr-x root/root usr/share/gnome-control-center/keybindings/ +-rw-r--r-- root/root usr/share/gnome-control-center/keybindings/50-compiz-desktop-key.xml +-rw-r--r-- root/root usr/share/gnome-control-center/keybindings/50-compiz-key.xml +drwxr-xr-x root/root usr/share/gnome/ +drwxr-xr-x root/root usr/share/gnome/wm-properties/ +-rw-r--r-- root/root usr/share/gnome/wm-properties/compiz-wm.desktop diff --git a/gnome/gnome-compiz/.md5sum b/gnome/gnome-compiz/.md5sum new file mode 100755 index 000000000..458944099 --- /dev/null +++ b/gnome/gnome-compiz/.md5sum @@ -0,0 +1 @@ +a4abe23a3f58b79a6706401aae426845 compiz-0.8.4.tar.gz diff --git a/gnome/gnome-compiz/Pkgfile b/gnome/gnome-compiz/Pkgfile new file mode 100755 index 000000000..c79188fa8 --- /dev/null +++ b/gnome/gnome-compiz/Pkgfile @@ -0,0 +1,26 @@ +# Description: Effets 3d pour le bureau +# URL: compiz.org +# Maintainer: NuTyX core team +# Packager: tux03 at tuxfamily dot org +# Depends on: compiz, gnome-control-center, libwnck +name=gnome-compiz +version=0.8.4 +release=1 +group= +source=(http://releases.compiz-fusion.org/0.8.4/compiz-0.8.4.tar.gz) +build() { +cd compiz-$version + ./configure --prefix=/usr \ + --enable-gnome --enable-gtk --disable-kde4 \ + --enable-metacity --enable-gconf \ + --with-gconf-schema-file-dir=/etc/gconf/schemas \ + --disable-dbus --disable-annotate + make -j3 + pushd gtk + make DESTDIR=$PKG install + mkdir -p $PKG/etc/gconf/schemas + install -m644 window-decorator/gwd.schemas \ + $PKG/etc/gconf/schemas/gwd.schemas + popd +} + |