[arch-commits] Commit in libfm/repos (10 files)

2016-02-19 Thread Balló György
Date: Saturday, February 20, 2016 @ 03:23:07
  Author: bgyorgy
Revision: 162617

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  libfm/repos/community-testing-i686/
  libfm/repos/community-testing-i686/PKGBUILD
(from rev 162616, libfm/trunk/PKGBUILD)
  libfm/repos/community-testing-i686/git-fixes.patch
(from rev 162616, libfm/trunk/git-fixes.patch)
  libfm/repos/community-testing-i686/libfm-gtk.install
(from rev 162616, libfm/trunk/libfm-gtk.install)
  libfm/repos/community-testing-i686/libfm.install
(from rev 162616, libfm/trunk/libfm.install)
  libfm/repos/community-testing-x86_64/
  libfm/repos/community-testing-x86_64/PKGBUILD
(from rev 162616, libfm/trunk/PKGBUILD)
  libfm/repos/community-testing-x86_64/git-fixes.patch
(from rev 162616, libfm/trunk/git-fixes.patch)
  libfm/repos/community-testing-x86_64/libfm-gtk.install
(from rev 162616, libfm/trunk/libfm-gtk.install)
  libfm/repos/community-testing-x86_64/libfm.install
(from rev 162616, libfm/trunk/libfm.install)

+
 community-testing-i686/PKGBUILD|  138 +
 community-testing-i686/git-fixes.patch | 1990 +++
 community-testing-i686/libfm-gtk.install   |   11 
 community-testing-i686/libfm.install   |   11 
 community-testing-x86_64/PKGBUILD  |  138 +
 community-testing-x86_64/git-fixes.patch   | 1990 +++
 community-testing-x86_64/libfm-gtk.install |   11 
 community-testing-x86_64/libfm.install |   11 
 8 files changed, 4300 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 162616:162617 to see the changes.


[arch-commits] Commit in libfm/repos (10 files)

2014-10-14 Thread Evangelos Foutras
Date: Tuesday, October 14, 2014 @ 22:28:02
  Author: foutrelis
Revision: 120673

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libfm/repos/community-i686/PKGBUILD
(from rev 120672, libfm/trunk/PKGBUILD)
  libfm/repos/community-i686/libfm.install
(from rev 120672, libfm/trunk/libfm.install)
  libfm/repos/community-x86_64/PKGBUILD
(from rev 120672, libfm/trunk/PKGBUILD)
  libfm/repos/community-x86_64/libfm.install
(from rev 120672, libfm/trunk/libfm.install)
Deleted:
  
libfm/repos/community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
  libfm/repos/community-i686/PKGBUILD
  libfm/repos/community-i686/libfm.install
  
libfm/repos/community-x86_64/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
  libfm/repos/community-x86_64/PKGBUILD
  libfm/repos/community-x86_64/libfm.install

+
 /PKGBUILD  
|  130 ++
 /libfm.install 
|   28 ++
 community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch   
|   39 ---
 community-i686/PKGBUILD
|   73 -
 community-i686/libfm.install   
|   14 -
 community-x86_64/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch 
|   39 ---
 community-x86_64/PKGBUILD  
|   73 -
 community-x86_64/libfm.install 
|   14 -
 8 files changed, 158 insertions(+), 252 deletions(-)

Deleted: 
community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
===
--- 
community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
2014-10-14 20:27:42 UTC (rev 120672)
+++ 
community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
2014-10-14 20:28:02 UTC (rev 120673)
@@ -1,39 +0,0 @@
-From 1a3f8dd076b119c685614ffe68a9cb732e2eeaee Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras evange...@foutrelis.com
-Date: Mon, 6 Oct 2014 16:41:09 +0300
-Subject: [PATCH] Fix default app detection in App chooser combo box
-
-Beginning with glib = 2.41, g_app_info_get_all_for_type() no longer
-puts the default application in front of the list.
-
-So now we have to use g_app_info_get_default_for_type().

- src/gtk/fm-app-chooser-combo-box.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/src/gtk/fm-app-chooser-combo-box.c 
b/src/gtk/fm-app-chooser-combo-box.c
-index a9d544e..f8c5cb9 100644
 a/src/gtk/fm-app-chooser-combo-box.c
-+++ b/src/gtk/fm-app-chooser-combo-box.c
-@@ -179,8 +179,7 @@ void fm_app_chooser_combo_box_setup(GtkComboBox* combo, 
FmMimeType* mime_type, G
- {
- data-mime_type = fm_mime_type_ref(mime_type);
- apps = 
g_app_info_get_all_for_type(fm_mime_type_get_type(data-mime_type));
--if(apps)
--sel = G_APP_INFO(apps-data); /* default app is the first one in 
the list. */
-+sel =  
g_app_info_get_default_for_type(fm_mime_type_get_type(data-mime_type), FALSE);
- }
- 
- for(l = apps; l; l = l-next)
-@@ -205,6 +204,8 @@ void fm_app_chooser_combo_box_setup(GtkComboBox* combo, 
FmMimeType* mime_type, G
- g_list_foreach(apps, (GFunc)g_object_unref, NULL);
- g_list_free(apps);
- }
-+if(sel)
-+g_object_unref(sel);
- }
- 
- gtk_list_store_append(store, it); /* separator */
--- 
-2.1.2
-

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-14 20:27:42 UTC (rev 120672)
+++ community-i686/PKGBUILD 2014-10-14 20:28:02 UTC (rev 120673)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Unknown47 unknown...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgbase=libfm
-pkgname=(libfm libfm-extra)
-pkgver=1.2.2.1
-pkgrel=3
-pkgdesc='Library for file management'
-url='http://pcmanfm.sourceforge.net/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'menu-cache' 'desktop-file-utils' 'libexif' 'dbus-glib')
-makedepends=('udisks' 'intltool' 'gtk-doc')
-replaces=('lxshortcut')
-provides=('lxshortcut')
-conflicts=('lxshortcut')
-source=(http://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz
-0001-Fix-default-app-detection-in-App-chooser-combo-box.patch)
-md5sums=('f898c480b142b56471377ef3a2810f2d'
- '10ece6d3a98f1244a82929b7c7ceba2a')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  patch -Np1 -i 
../0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
-}
-
-build() {

[arch-commits] Commit in libfm/repos (10 files)

2014-10-06 Thread Evangelos Foutras
Date: Monday, October 6, 2014 @ 16:55:18
  Author: foutrelis
Revision: 120279

archrelease: copy trunk to community-i686, community-x86_64

Added:
  
libfm/repos/community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
(from rev 120278, 
libfm/trunk/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch)
  libfm/repos/community-i686/PKGBUILD
(from rev 120278, libfm/trunk/PKGBUILD)
  libfm/repos/community-i686/libfm.install
(from rev 120278, libfm/trunk/libfm.install)
  
libfm/repos/community-x86_64/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
(from rev 120278, 
libfm/trunk/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch)
  libfm/repos/community-x86_64/PKGBUILD
(from rev 120278, libfm/trunk/PKGBUILD)
  libfm/repos/community-x86_64/libfm.install
(from rev 120278, libfm/trunk/libfm.install)
Deleted:
  libfm/repos/community-i686/PKGBUILD
  libfm/repos/community-i686/libfm.install
  libfm/repos/community-x86_64/PKGBUILD
  libfm/repos/community-x86_64/libfm.install

+
 /PKGBUILD  
|   96 ++
 /libfm.install 
|   28 ++
 community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch   
|   39 
 community-i686/PKGBUILD
|   39 
 community-i686/libfm.install   
|   14 -
 community-x86_64/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch 
|   39 
 community-x86_64/PKGBUILD  
|   39 
 community-x86_64/libfm.install 
|   14 -
 8 files changed, 202 insertions(+), 106 deletions(-)

Copied: 
libfm/repos/community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
 (from rev 120278, 
libfm/trunk/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch)
===
--- 
community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
(rev 0)
+++ 
community-i686/0001-Fix-default-app-detection-in-App-chooser-combo-box.patch
2014-10-06 14:55:18 UTC (rev 120279)
@@ -0,0 +1,39 @@
+From 1a3f8dd076b119c685614ffe68a9cb732e2eeaee Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras evange...@foutrelis.com
+Date: Mon, 6 Oct 2014 16:41:09 +0300
+Subject: [PATCH] Fix default app detection in App chooser combo box
+
+Beginning with glib = 2.41, g_app_info_get_all_for_type() no longer
+puts the default application in front of the list.
+
+So now we have to use g_app_info_get_default_for_type().
+---
+ src/gtk/fm-app-chooser-combo-box.c | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/src/gtk/fm-app-chooser-combo-box.c 
b/src/gtk/fm-app-chooser-combo-box.c
+index a9d544e..f8c5cb9 100644
+--- a/src/gtk/fm-app-chooser-combo-box.c
 b/src/gtk/fm-app-chooser-combo-box.c
+@@ -179,8 +179,7 @@ void fm_app_chooser_combo_box_setup(GtkComboBox* combo, 
FmMimeType* mime_type, G
+ {
+ data-mime_type = fm_mime_type_ref(mime_type);
+ apps = 
g_app_info_get_all_for_type(fm_mime_type_get_type(data-mime_type));
+-if(apps)
+-sel = G_APP_INFO(apps-data); /* default app is the first one in 
the list. */
++sel =  
g_app_info_get_default_for_type(fm_mime_type_get_type(data-mime_type), FALSE);
+ }
+ 
+ for(l = apps; l; l = l-next)
+@@ -205,6 +204,8 @@ void fm_app_chooser_combo_box_setup(GtkComboBox* combo, 
FmMimeType* mime_type, G
+ g_list_foreach(apps, (GFunc)g_object_unref, NULL);
+ g_list_free(apps);
+ }
++if(sel)
++g_object_unref(sel);
+ }
+ 
+ gtk_list_store_append(store, it); /* separator */
+-- 
+2.1.2
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-06 14:54:56 UTC (rev 120278)
+++ community-i686/PKGBUILD 2014-10-06 14:55:18 UTC (rev 120279)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Unknown47 unknown...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=libfm
-pkgver=1.2.2.1
-pkgrel=1
-pkgdesc='Library for file management'
-url='http://pcmanfm.sourceforge.net/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'menu-cache' 'desktop-file-utils' 'libexif' 'dbus-glib')
-makedepends=('udisks' 'intltool' 'gtk-doc')
-replaces=('lxshortcut')
-provides=('lxshortcut')
-conflicts=('lxshortcut')
-install=libfm.install
-source=(http://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz)

[arch-commits] Commit in libfm/repos (10 files)

2014-07-08 Thread Bartłomiej Piotrowski
Date: Tuesday, July 8, 2014 @ 20:30:32
  Author: bpiotrowski
Revision: 115330

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libfm/repos/community-i686/PKGBUILD
(from rev 115329, libfm/trunk/PKGBUILD)
  libfm/repos/community-i686/libfm.install
(from rev 115329, libfm/trunk/libfm.install)
  libfm/repos/community-x86_64/PKGBUILD
(from rev 115329, libfm/trunk/PKGBUILD)
  libfm/repos/community-x86_64/libfm.install
(from rev 115329, libfm/trunk/libfm.install)
Deleted:
  libfm/repos/community-i686/PKGBUILD
  libfm/repos/community-i686/hide-lxshortcut.patch
  libfm/repos/community-i686/libfm.install
  libfm/repos/community-x86_64/PKGBUILD
  libfm/repos/community-x86_64/hide-lxshortcut.patch
  libfm/repos/community-x86_64/libfm.install

+
 /PKGBUILD  |   78 +++
 /libfm.install |   28 +++
 community-i686/PKGBUILD|   48 ---
 community-i686/hide-lxshortcut.patch   |   22 
 community-i686/libfm.install   |   14 -
 community-x86_64/PKGBUILD  |   48 ---
 community-x86_64/hide-lxshortcut.patch |   22 
 community-x86_64/libfm.install |   14 -
 8 files changed, 106 insertions(+), 168 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-08 18:30:23 UTC (rev 115329)
+++ community-i686/PKGBUILD 2014-07-08 18:30:32 UTC (rev 115330)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Unknown47 unknown...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=libfm
-pkgver=1.2.0
-pkgrel=6
-pkgdesc='Library for file management'
-url='http://pcmanfm.sourceforge.net/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'menu-cache' 'desktop-file-utils' 'libexif' 'dbus-glib')
-makedepends=('udisks' 'intltool' 'gtk-doc')
-replaces=('lxshortcut')
-provides=('lxshortcut')
-conflicts=('lxshortcut')
-install=libfm.install
-source=(http://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz
-hide-lxshortcut.patch)
-md5sums=('07d1361bc008db46b0fd4c775f5696de'
- '49f7f47a3c59c83d1e7a7691eb1cccfe')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Hide desktop entry of lxshortcut
-  patch -p1 -i ../hide-lxshortcut.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---enable-udisks \
---with-gnu-ld
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # Temporary fix to FS#32361
-  rm -rf $pkgdir/usr/include/libfm
-  mv $pkgdir/usr/include/libfm-1.0/ $pkgdir/usr/include/libfm
-}

Copied: libfm/repos/community-i686/PKGBUILD (from rev 115329, 
libfm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-08 18:30:32 UTC (rev 115330)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Unknown47 unknown...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=libfm
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='Library for file management'
+url='http://pcmanfm.sourceforge.net/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk2' 'menu-cache' 'desktop-file-utils' 'libexif' 'dbus-glib')
+makedepends=('udisks' 'intltool' 'gtk-doc')
+replaces=('lxshortcut')
+provides=('lxshortcut')
+conflicts=('lxshortcut')
+install=libfm.install
+source=(http://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz)
+md5sums=('9b4790594c2c80f440ce3238c5774d23')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-udisks \
+--with-gnu-ld
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # Temporary fix to FS#32361
+  rm -rf $pkgdir/usr/include/libfm
+  mv $pkgdir/usr/include/libfm-1.0/ $pkgdir/usr/include/libfm
+}

Deleted: community-i686/hide-lxshortcut.patch
===
--- community-i686/hide-lxshortcut.patch2014-07-08 18:30:23 UTC (rev 
115329)
+++ community-i686/hide-lxshortcut.patch2014-07-08 18:30:32 UTC (rev 
115330)
@@ -1,22 +0,0 @@
-From 4d2b79048573dd2fa1dee853230ccc45b1d9c8df Mon Sep 17 00:00:00 2001
-From: Andriy Grytsenko and...@rep.kiev.ua
-Date: Tue, 25 Feb 2014 15:24:59 +0200
-Subject: [PATCH] [LP#1284401]The lxshortcut should not be present in the
- menus.
-

- data/lxshortcut.desktop.in |1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/data/lxshortcut.desktop.in b/data/lxshortcut.desktop.in
-index 8ef7bca..f60a63e 100644
 

[arch-commits] Commit in libfm/repos (10 files)

2014-05-12 Thread Balló György
Date: Monday, May 12, 2014 @ 21:22:48
  Author: bgyorgy
Revision: 111064

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libfm/repos/community-i686/PKGBUILD
(from rev 111063, libfm/trunk/PKGBUILD)
  libfm/repos/community-i686/hide-lxshortcut.patch
(from rev 111063, libfm/trunk/hide-lxshortcut.patch)
  libfm/repos/community-i686/libfm.install
(from rev 111063, libfm/trunk/libfm.install)
  libfm/repos/community-x86_64/PKGBUILD
(from rev 111063, libfm/trunk/PKGBUILD)
  libfm/repos/community-x86_64/hide-lxshortcut.patch
(from rev 111063, libfm/trunk/hide-lxshortcut.patch)
  libfm/repos/community-x86_64/libfm.install
(from rev 111063, libfm/trunk/libfm.install)
Deleted:
  libfm/repos/community-i686/PKGBUILD
  libfm/repos/community-i686/libfm.install
  libfm/repos/community-x86_64/PKGBUILD
  libfm/repos/community-x86_64/libfm.install

+
 /PKGBUILD  |   96 +++
 /libfm.install |   28 +
 community-i686/PKGBUILD|   40 
 community-i686/hide-lxshortcut.patch   |   22 +++
 community-i686/libfm.install   |   15 
 community-x86_64/PKGBUILD  |   40 
 community-x86_64/hide-lxshortcut.patch |   22 +++
 community-x86_64/libfm.install |   15 
 8 files changed, 168 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-12 19:22:39 UTC (rev 111063)
+++ community-i686/PKGBUILD 2014-05-12 19:22:48 UTC (rev 111064)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Unknown47 unknown...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=libfm
-pkgver=1.2.0
-pkgrel=3
-pkgdesc='Library for file management'
-url='http://pcmanfm.sourceforge.net/'
-arch=('i686' 'x86_64')
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'menu-cache' 'udisks' 'desktop-file-utils' 'libexif')
-makedepends=('intltool' 'gtk-doc')
-replaces=('lxshortcut')
-provides=('lxshortcut')
-conflicts=('lxshortcut')
-install=libfm.install
-source=(http://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz)
-md5sums=('07d1361bc008db46b0fd4c775f5696de')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---enable-udisks \
---with-gnu-ld
-  make LDFLAGS+=' -lgobject-2.0 -lglib-2.0'
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # Temporary fix to FS#32361
-  rm -rf $pkgdir/usr/include/libfm
-  mv $pkgdir/usr/include/libfm-1.0/ $pkgdir/usr/include/libfm
-}

Copied: libfm/repos/community-i686/PKGBUILD (from rev 111063, 
libfm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-12 19:22:48 UTC (rev 111064)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Unknown47 unknown...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=libfm
+pkgver=1.2.0
+pkgrel=4
+pkgdesc='Library for file management'
+url='http://pcmanfm.sourceforge.net/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk2' 'menu-cache' 'desktop-file-utils' 'libexif' 'dbus-glib')
+makedepends=('udisks' 'intltool' 'gtk-doc')
+replaces=('lxshortcut')
+provides=('lxshortcut')
+conflicts=('lxshortcut')
+install=libfm.install
+source=(http://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz
+hide-lxshortcut.patch)
+md5sums=('07d1361bc008db46b0fd4c775f5696de'
+ '88d447f4d425f6ae110a0495a5c8dae9')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Hide desktop entry of lxshortcut
+  patch -Np1 -i ../hide-lxshortcut.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-udisks \
+--with-gnu-ld
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # Temporary fix to FS#32361
+  rm -rf $pkgdir/usr/include/libfm
+  mv $pkgdir/usr/include/libfm-1.0/ $pkgdir/usr/include/libfm
+}

Copied: libfm/repos/community-i686/hide-lxshortcut.patch (from rev 111063, 
libfm/trunk/hide-lxshortcut.patch)
===
--- community-i686/hide-lxshortcut.patch(rev 0)
+++ community-i686/hide-lxshortcut.patch2014-05-12 19:22:48 UTC (rev 
111064)
@@ -0,0 +1,22 @@
+From 4d2b79048573dd2fa1dee853230ccc45b1d9c8df Mon Sep 17 00:00:00 2001
+From: Andriy Grytsenko and...@rep.kiev.ua
+Date: Tue, 25 Feb 2014 15:24:59 +0200
+Subject: [PATCH] [LP#1284401]The lxshortcut should not be present in the
+