summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfredjo <frederic.joly@9online.fr>2009-11-04 10:18:47 +0100
committerfredjo <frederic.joly@9online.fr>2009-11-04 10:18:47 +0100
commit2c5db3a15d942a3a9aa5fc0968b6874c107560fb (patch)
tree03c247bd702904d75f42c5cc540a95afdd9034c2
parent13ca6387493b32643437565af9b43e0a31a706b5 (diff)
downloadnutyx-extra-2c5db3a15d942a3a9aa5fc0968b6874c107560fb.tar.gz
nutyx-extra-2c5db3a15d942a3a9aa5fc0968b6874c107560fb.tar.bz2
nutyx-extra-2c5db3a15d942a3a9aa5fc0968b6874c107560fb.tar.xz
nutyx-extra-2c5db3a15d942a3a9aa5fc0968b6874c107560fb.zip
Ajout du paquet gnome-mount#0.8
-rwxr-xr-xfredjo-gnome-2.28-test/gnome-mount/.footprint27
-rwxr-xr-xfredjo-gnome-2.28-test/gnome-mount/.md5sum1
-rwxr-xr-xfredjo-gnome-2.28-test/gnome-mount/Pkgfile19
-rwxr-xr-xfredjo-gnome-2.28-test/gnome-mount/post-install20
4 files changed, 67 insertions, 0 deletions
diff --git a/fredjo-gnome-2.28-test/gnome-mount/.footprint b/fredjo-gnome-2.28-test/gnome-mount/.footprint
new file mode 100755
index 000000000..20d164a1b
--- /dev/null
+++ b/fredjo-gnome-2.28-test/gnome-mount/.footprint
@@ -0,0 +1,27 @@
+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/gnome-mount.schemas
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+lrwxrwxrwx root/root usr/bin/gnome-eject -> /usr/bin/gnome-mount
+-rwxr-xr-x root/root usr/bin/gnome-mount
+lrwxrwxrwx root/root usr/bin/gnome-umount -> /usr/bin/gnome-mount
+drwxr-xr-x root/root usr/lib/
+drwxr-xr-x root/root usr/lib/nautilus/
+drwxr-xr-x root/root usr/lib/nautilus/extensions-2.0/
+-rw-r--r-- root/root usr/lib/nautilus/extensions-2.0/libgnome-mount.a
+-rwxr-xr-x root/root usr/lib/nautilus/extensions-2.0/libgnome-mount.la
+-rwxr-xr-x root/root usr/lib/nautilus/extensions-2.0/libgnome-mount.so
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/gnome-mount.pc
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/gnome-mount.1.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/gnome-mount/
+-rw-r--r-- root/root usr/share/gnome-mount/gnome-mount-properties.glade
+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/gnome-mount.mo
diff --git a/fredjo-gnome-2.28-test/gnome-mount/.md5sum b/fredjo-gnome-2.28-test/gnome-mount/.md5sum
new file mode 100755
index 000000000..56af54b7e
--- /dev/null
+++ b/fredjo-gnome-2.28-test/gnome-mount/.md5sum
@@ -0,0 +1 @@
+562ec9d0196e5e000bdd249a04a3aa6a gnome-mount-0.8.tar.gz
diff --git a/fredjo-gnome-2.28-test/gnome-mount/Pkgfile b/fredjo-gnome-2.28-test/gnome-mount/Pkgfile
new file mode 100755
index 000000000..718f47772
--- /dev/null
+++ b/fredjo-gnome-2.28-test/gnome-mount/Pkgfile
@@ -0,0 +1,19 @@
+# Description: Programs for mounting/unmounting/ejecting storage devices
+# Maintainer: Matt Housh, jaeger at morpheus dot net
+# Depends on: hal, libgnomeui, nautilus
+# Group: gnome
+
+name=gnome-mount
+version=0.8
+release=1
+source=(http://hal.freedesktop.org/releases/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/man \
+ --disable-schemas-install
+ make
+ make DESTDIR=$PKG install
+}
diff --git a/fredjo-gnome-2.28-test/gnome-mount/post-install b/fredjo-gnome-2.28-test/gnome-mount/post-install
new file mode 100755
index 000000000..af46db1c3
--- /dev/null
+++ b/fredjo-gnome-2.28-test/gnome-mount/post-install
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+port=gnome-mount
+
+# 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
+
+# End of file