diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-11 08:16:23 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-11 08:16:23 +0100 |
commit | 40ece75655aebe0dd951a0489ed2111f1c27f8a8 (patch) | |
tree | 77e41350cb98db3c5b181532d02c69f8fbad598f /extra/gparted/PKGBUILD | |
parent | fb8b936c2a92c0d645a460202c87c0a24569991e (diff) | |
parent | ef17357a9745e05e301b724d13a341067ddb3d5b (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/fcitx-mozc/PKGBUILD
community/geany-plugins/PKGBUILD
community/kyotocabinet/PKGBUILD
community/sysstat/PKGBUILD
core/openldap/PKGBUILD
Diffstat (limited to 'extra/gparted/PKGBUILD')
-rw-r--r-- | extra/gparted/PKGBUILD | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/extra/gparted/PKGBUILD b/extra/gparted/PKGBUILD index ded81810d..2568e3df6 100644 --- a/extra/gparted/PKGBUILD +++ b/extra/gparted/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 179753 2013-03-09 17:23:03Z giovanni $ +# $Id: PKGBUILD 179832 2013-03-10 09:54:42Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Andrew Simmons <andrew.simmons@gmail.com> # Contributor: György Balló <ballogy@freestart.hu> pkgname=gparted pkgver=0.14.1 -pkgrel=4 +pkgrel=5 pkgdesc="A Partition Magic clone, frontend to GNU Parted" arch=('i686' 'x86_64' 'mips64el') url="http://gparted.sourceforge.net" license=('GPL') -depends=('parted' 'gtkmm' 'hicolor-icon-theme' 'polkit-gnome') +depends=('parted' 'gtkmm' 'hicolor-icon-theme' 'polkit') makedepends=('intltool' 'pkg-config' 'gnome-doc-utils') optdepends=('dosfstools: for FAT16 and FAT32 partitions' 'jfsutils: for jfs partitions' @@ -18,6 +18,7 @@ optdepends=('dosfstools: for FAT16 and FAT32 partitions' 'reiserfsprogs: for reiser partitions' 'xfsprogs: for xfs partitions' 'nilfs-utils: for nilfs2 support' + 'polkit-gnome: to run gparted directly from menu' 'gpart: for recovering corrupt partition tables' 'mtools: utilities to access MS-DOS disks') install=gparted.install @@ -46,9 +47,6 @@ package() { # Install launcher script echo '#!/bin/sh' > ${pkgdir}/usr/sbin/gparted - echo 'pkexec "/usr/sbin/gparted.elf" "$@"' >> ${pkgdir}/usr/sbin/gparted + echo 'pkexec --disable-internal-agent "/usr/sbin/gparted.elf" "$@"' >> ${pkgdir}/usr/sbin/gparted chmod 755 ${pkgdir}/usr/sbin/gparted - - # Modify desktop file - sed -i -e "s|^Exec=.*|Exec=pkexec --disable-internal-agent /usr/sbin/gparted.elf|" "${pkgdir}/usr/share/applications/gparted.desktop" } |