diff options
author | root <root@rshg054.dnsready.net> | 2011-08-26 23:14:46 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-08-26 23:14:46 +0000 |
commit | d7d02f7c02a5c761e8a64df49598ae976640e450 (patch) | |
tree | f41444c598b244dfd14037b50bdccf3f9cf5d50e /extra/thunar | |
parent | 9621cbabd4788b98dfdee59d784c4b4b58384c6b (diff) |
Fri Aug 26 23:14:45 UTC 2011
Diffstat (limited to 'extra/thunar')
-rw-r--r-- | extra/thunar/PKGBUILD | 15 | ||||
-rw-r--r-- | extra/thunar/fix-samba.patch | 14 |
2 files changed, 22 insertions, 7 deletions
diff --git a/extra/thunar/PKGBUILD b/extra/thunar/PKGBUILD index 9c252849e..5217ae570 100644 --- a/extra/thunar/PKGBUILD +++ b/extra/thunar/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 135871 2011-08-19 21:48:29Z eric $ +# $Id: PKGBUILD 136236 2011-08-25 06:48:07Z tpowa $ # Maintainer: andyrtr <andyrtr funnychar archlinux.org> # Contributor: Andrew Simmons <andrew.simmons@gmail.com> pkgname=thunar pkgver=1.2.2 -pkgrel=2 +pkgrel=3 pkgdesc="modern file manager for Xfce" arch=('i686' 'x86_64') license=('GPL2' 'LGPL2.1') @@ -24,11 +24,13 @@ install=${pkgname}.install backup=('etc/polkit-1/localauthority/50-local.d/org.freedesktop.udisks.pkla') source=(http://archive.xfce.org/src/xfce/${pkgname}/1.2/Thunar-${pkgver}.tar.bz2 org.freedesktop.udisks.pkla - fix-gvfs.patch) + fix-gvfs.patch + fix-samba.patch) build() { cd ${srcdir}/Thunar-${pkgver} patch -Np1 -i ../fix-gvfs.patch + patch -Np1 -i ../fix-samba.patch ./configure --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib \ @@ -57,9 +59,8 @@ package() { install -dm755 ${pkgdir}/etc/polkit-1/localauthority/50-local.d install -m644 ${srcdir}/org.freedesktop.udisks.pkla ${pkgdir}/etc/polkit-1/localauthority/50-local.d/ } + md5sums=('a86df0212db71e61f459bda6bc7b7fb6' 'a7ddb5eec02d9a8e91a2997862e73cd8' - '376c81af1ce5cf8b872d62a878163091') -md5sums=('a86df0212db71e61f459bda6bc7b7fb6' - 'a7ddb5eec02d9a8e91a2997862e73cd8' - '167c79462cddc5aaa1fcdc814041350b') + '167c79462cddc5aaa1fcdc814041350b' + 'c8063873958d89402046f29b78c1d8d4') diff --git a/extra/thunar/fix-samba.patch b/extra/thunar/fix-samba.patch new file mode 100644 index 000000000..61d53bec3 --- /dev/null +++ b/extra/thunar/fix-samba.patch @@ -0,0 +1,14 @@ +--- thunar-file-ORIGINAL.c 2011-05-27 00:11:27.000000000 +0200 ++++ thunar-1.2.2/thunar/thunar-file.c 2011-08-22 08:00:24.095066077 +0200 +@@ -754,7 +754,10 @@ thunar_file_load (ThunarFile *file, + target_uri = + g_file_info_get_attribute_string (file->info, + G_FILE_ATTRIBUTE_STANDARD_TARGET_URI); +- file->is_mounted = (target_uri != NULL); ++ file->is_mounted = (target_uri != NULL) ++ ? !g_file_info_get_attribute_boolean (file->info, ++ G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT) ++ : FALSE; + } + } + else |