summaryrefslogtreecommitdiffstats
path: root/gnome
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2009-11-25 21:30:26 +0100
committertnut <thierryn1 at hispeed dot ch>2009-11-25 21:30:26 +0100
commitb3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06 (patch)
treece36235dc25ffc03237ba6e5069bd7e985e86291 /gnome
parentfb986399e699fa060604548672e62e6271df7749 (diff)
downloadnutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.tar.gz
nutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.tar.bz2
nutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.tar.xz
nutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.zip
Ajout de evolution-webcal#2.28.0-1
Diffstat (limited to 'gnome')
-rw-r--r--gnome/evolution-webcal/.footprint12
-rw-r--r--gnome/evolution-webcal/.md5sum1
-rwxr-xr-xgnome/evolution-webcal/Pkgfile19
-rwxr-xr-xgnome/evolution-webcal/post-install20
4 files changed, 52 insertions, 0 deletions
diff --git a/gnome/evolution-webcal/.footprint b/gnome/evolution-webcal/.footprint
new file mode 100644
index 000000000..cacc9db85
--- /dev/null
+++ b/gnome/evolution-webcal/.footprint
@@ -0,0 +1,12 @@
+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/evolution-webcal.schemas
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/lib/
+-rwxr-xr-x root/root usr/lib/evolution-webcal
+drwxr-xr-x root/root usr/share/
+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/evolution-webcal.mo
diff --git a/gnome/evolution-webcal/.md5sum b/gnome/evolution-webcal/.md5sum
new file mode 100644
index 000000000..5e08c2f07
--- /dev/null
+++ b/gnome/evolution-webcal/.md5sum
@@ -0,0 +1 @@
+7b506d06c56b579977d4ebc56463ff23 evolution-webcal-2.28.0.tar.bz2
diff --git a/gnome/evolution-webcal/Pkgfile b/gnome/evolution-webcal/Pkgfile
new file mode 100755
index 000000000..b0b2c02c2
--- /dev/null
+++ b/gnome/evolution-webcal/Pkgfile
@@ -0,0 +1,19 @@
+# Description: Plugin pour la messagerie electronique de gnome evolution
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: gtk-doc, gtkhtml, gnome-doc-utils, evolution
+
+name=evolution-webcal
+version=2.28.0
+release=1
+source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
+build() {
+ cd $name-$version
+ ./configure --prefix=$GNOME_PREFIX \
+ --sysconfdir=/etc \
+ --libexecdir=$GNOME_PREFIX/lib
+
+ make
+ make DESTDIR=$PKG install
+
+}
diff --git a/gnome/evolution-webcal/post-install b/gnome/evolution-webcal/post-install
new file mode 100755
index 000000000..c35ba0844
--- /dev/null
+++ b/gnome/evolution-webcal/post-install
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+port=evolution-webcal
+
+# 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