diff options
author | piernov <piernov@piernov.org> | 2011-08-17 00:46:40 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2011-08-17 00:46:40 +0200 |
commit | 8464150cfe762521b13a16400a4562050daad8c8 (patch) | |
tree | a8f6bedf852a36d52c57a2564175de09ba16e88d | |
parent | 3f6385f6d178d645ed26b0131e757e9623e66a42 (diff) | |
download | gnome3-8464150cfe762521b13a16400a4562050daad8c8.tar.gz gnome3-8464150cfe762521b13a16400a4562050daad8c8.tar.bz2 gnome3-8464150cfe762521b13a16400a4562050daad8c8.tar.xz gnome3-8464150cfe762521b13a16400a4562050daad8c8.zip |
gnome-contacts 0.1.2-1 ajout port
-rw-r--r-- | gnome-contacts/.footprint.i686 | 9 | ||||
-rw-r--r-- | gnome-contacts/.footprint.x86_64 | 9 | ||||
-rw-r--r-- | gnome-contacts/.md5sum.i686 | 1 | ||||
-rw-r--r-- | gnome-contacts/.md5sum.x86_64 | 1 | ||||
-rw-r--r-- | gnome-contacts/Pkgfile | 19 | ||||
-rwxr-xr-x | gnome-contacts/post-install | 22 |
6 files changed, 61 insertions, 0 deletions
diff --git a/gnome-contacts/.footprint.i686 b/gnome-contacts/.footprint.i686 new file mode 100644 index 0000000..f5f9cc4 --- /dev/null +++ b/gnome-contacts/.footprint.i686 @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gnome-contacts +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/gnome-contacts.desktop +drwxr-xr-x root/root usr/share/gnome-contacts/ +-rw-r--r-- root/root usr/share/gnome-contacts/gnome-contacts.css +drwxr-xr-x root/root usr/share/locale/ diff --git a/gnome-contacts/.footprint.x86_64 b/gnome-contacts/.footprint.x86_64 new file mode 100644 index 0000000..f5f9cc4 --- /dev/null +++ b/gnome-contacts/.footprint.x86_64 @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gnome-contacts +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/gnome-contacts.desktop +drwxr-xr-x root/root usr/share/gnome-contacts/ +-rw-r--r-- root/root usr/share/gnome-contacts/gnome-contacts.css +drwxr-xr-x root/root usr/share/locale/ diff --git a/gnome-contacts/.md5sum.i686 b/gnome-contacts/.md5sum.i686 new file mode 100644 index 0000000..33b1710 --- /dev/null +++ b/gnome-contacts/.md5sum.i686 @@ -0,0 +1 @@ +0c44633a0801022050e057e08ceb4980 gnome-contacts-0.1.2.tar.xz diff --git a/gnome-contacts/.md5sum.x86_64 b/gnome-contacts/.md5sum.x86_64 new file mode 100644 index 0000000..33b1710 --- /dev/null +++ b/gnome-contacts/.md5sum.x86_64 @@ -0,0 +1 @@ +0c44633a0801022050e057e08ceb4980 gnome-contacts-0.1.2.tar.xz diff --git a/gnome-contacts/Pkgfile b/gnome-contacts/Pkgfile new file mode 100644 index 0000000..ff4adaf --- /dev/null +++ b/gnome-contacts/Pkgfile @@ -0,0 +1,19 @@ +# Description: +# URL: https://live.gnome.org/Design/Apps/Contacts +# Maintainer: NuTyX GNOME team +# Packager: piernov <piernov@piernov.org> +# Depends on: folks, libnotify,telepathy-mission-control +# Run on: folks,libnotify,telepathy-mission-control + +name=gnome-contacts +version=0.1.2 +release=1 +source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz) + +build() { + cd $name-$version + PYTHON=python2 ./configure --prefix=/usr \ + --sysconfdir=/etc + make + make DESTDIR=$PKG install +} diff --git a/gnome-contacts/post-install b/gnome-contacts/post-install new file mode 100755 index 0000000..1c584fa --- /dev/null +++ b/gnome-contacts/post-install @@ -0,0 +1,22 @@ +#!/bin/sh + +port=gnome-applets + +# gconf schemas +/usr/sbin/gconfpkg --install $port + +# scrolls +SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`" + +for SCROLL in $SCROLLS +do + /usr/bin/scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null +done + +# desktop database +update-desktop-database > /dev/null + +# icon cache +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor + +# End of file |