summaryrefslogtreecommitdiffstats
path: root/gnome/vino
diff options
context:
space:
mode:
authorfredjo <frederic.joly@9online.fr>2009-11-06 13:06:16 +0100
committerfredjo <frederic.joly@9online.fr>2009-11-06 13:06:16 +0100
commitcb3067c4e32e30a0223c890fc78bdcd7fd1ff7e9 (patch)
tree14a50fc3d561b0fd45fad9bb7b9910335f020905 /gnome/vino
parentfe248496d84337430557149021c0c3634eed26ec (diff)
downloadnutyx-pakxe-cb3067c4e32e30a0223c890fc78bdcd7fd1ff7e9.tar.gz
nutyx-pakxe-cb3067c4e32e30a0223c890fc78bdcd7fd1ff7e9.tar.bz2
nutyx-pakxe-cb3067c4e32e30a0223c890fc78bdcd7fd1ff7e9.tar.xz
nutyx-pakxe-cb3067c4e32e30a0223c890fc78bdcd7fd1ff7e9.zip
Ajout de vino#2.26.2-1
Diffstat (limited to 'gnome/vino')
-rw-r--r--gnome/vino/.footprint25
-rw-r--r--gnome/vino/.md5sum1
-rw-r--r--gnome/vino/Pkgfile19
-rwxr-xr-xgnome/vino/post-install23
4 files changed, 68 insertions, 0 deletions
diff --git a/gnome/vino/.footprint b/gnome/vino/.footprint
new file mode 100644
index 000000000..4b36ec7da
--- /dev/null
+++ b/gnome/vino/.footprint
@@ -0,0 +1,25 @@
+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/vino-server.schemas
+drwxr-xr-x root/root etc/xdg/
+drwxr-xr-x root/root etc/xdg/autostart/
+-rw-r--r-- root/root etc/xdg/autostart/vino-server.desktop
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/vino-passwd
+-rwxr-xr-x root/root usr/bin/vino-preferences
+drwxr-xr-x root/root usr/lib/
+drwxr-xr-x root/root usr/lib/vino/
+-rwxr-xr-x root/root usr/lib/vino/vino-server
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/applications/
+-rw-r--r-- root/root usr/share/applications/vino-preferences.desktop
+drwxr-xr-x root/root usr/share/locale/
+drwxr-xr-x root/root usr/share/locale/fr/
+drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
+-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/vino.mo
+drwxr-xr-x root/root usr/share/vino/
+-rw-r--r-- root/root usr/share/vino/vino-preferences.glade
+-rw-r--r-- root/root usr/share/vino/vino-prompt.glade
+-rw-r--r-- root/root usr/share/vino/webservices
diff --git a/gnome/vino/.md5sum b/gnome/vino/.md5sum
new file mode 100644
index 000000000..e44dc3dd4
--- /dev/null
+++ b/gnome/vino/.md5sum
@@ -0,0 +1 @@
+580a8f79130273f03cb57c32bba59120 vino-2.26.2.tar.bz2
diff --git a/gnome/vino/Pkgfile b/gnome/vino/Pkgfile
new file mode 100644
index 000000000..b18880a9a
--- /dev/null
+++ b/gnome/vino/Pkgfile
@@ -0,0 +1,19 @@
+# Description: GNOME VNC Server
+# Maintainer: Matt Housh, jaeger at morpheus dot net
+# Depends on: libgnomeui, gconf
+# Group: gnome/desktop
+
+name=vino
+version=2.26.2
+release=1
+gnomever=2.26.3
+source=(http://download.gnome.org/desktop/${gnomever%.*}/$gnomever/sources/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=$GNOME_PREFIX \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/$name
+ make
+ make DESTDIR=$PKG install
+}
diff --git a/gnome/vino/post-install b/gnome/vino/post-install
new file mode 100755
index 000000000..0d04f6132
--- /dev/null
+++ b/gnome/vino/post-install
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+port=vino
+
+# gconf schemas
+SCHEMAS="`pkginfo -l $port | grep etc/gconf/schemas/.*\.schemas$`"
+
+for SCHEMA in $SCHEMAS
+do
+ export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
+ gconftool-2 --makefile-install-rule /$SCHEMA > /dev/null
+done
+
+# reload gconf caches
+if [ ! -z "`pidof gconfd-2`" ]
+then
+ killall -HUP gconfd-2 > /dev/null
+fi
+
+# desktop database
+update-desktop-database > /dev/null
+
+# End of file