summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-extended/gparted/gparted_0.33.0.bb
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2019-03-27 16:34:56 +0100
committerKhem Raj <raj.khem@gmail.com>2019-03-28 11:55:34 -0700
commit322b50131cd52f4e72cdfbf9fb1cef69e16942fb (patch)
tree67dfeec70b3577978e1cb024b22507698cab8935 /meta-gnome/recipes-extended/gparted/gparted_0.33.0.bb
parent2993b0525cfe3d70b37fbfe808d380bba7d7299c (diff)
downloadmeta-openembedded-322b50131cd52f4e72cdfbf9fb1cef69e16942fb.tar.gz
gparted: upgrade 0.31.0 -> 0.33.0
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-extended/gparted/gparted_0.33.0.bb')
-rw-r--r--meta-gnome/recipes-extended/gparted/gparted_0.33.0.bb40
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-gnome/recipes-extended/gparted/gparted_0.33.0.bb b/meta-gnome/recipes-extended/gparted/gparted_0.33.0.bb
new file mode 100644
index 0000000000..a9f6993fbc
--- /dev/null
+++ b/meta-gnome/recipes-extended/gparted/gparted_0.33.0.bb
@@ -0,0 +1,40 @@
1SUMMARY = "A partition editor to graphically manage disk partitions "
2HOMEPAGE = "http://gparted.org/index.php"
3LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
5
6inherit distro_features_check autotools pkgconfig gtk-icon-cache
7
8REQUIRED_DISTRO_FEATURES = "x11"
9
10SRC_URI = " \
11 ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.gz \
12 file://org.yoctoproject.pkexec.run-gparted.policy \
13 file://gparted_polkit \
14"
15SRC_URI[md5sum] = "2f481ad34decb7021ca04ca305e79e7d"
16SRC_URI[sha256sum] = "5023b8c983f88a22e65bf6f09a12ea09369defc008981b52ee8b96a3879f81d6"
17
18DEPENDS = "glib-2.0 glib-2.0-native gtkmm parted gnome-doc-utils intltool-native"
19
20do_install_append() {
21 # Add a script which checks if polkit is installed.
22 # If yes: a policy is requested from polkit / otherwise start as usual
23 install ${WORKDIR}/gparted_polkit ${D}${sbindir}
24 sed -i 's:%sbindir%:${sbindir}:g' ${D}${sbindir}/gparted_polkit
25 # relink menu entry to use our script
26 sed -i 's:${sbindir}/gparted:${sbindir}/gparted_polkit:g' ${D}${datadir}/applications/gparted.desktop
27
28 install -d ${D}${datadir}/polkit-1/actions
29 install ${WORKDIR}/org.yoctoproject.pkexec.run-gparted.policy ${D}${datadir}/polkit-1/actions/org.yoctoproject.pkexec.run-gparted.policy
30}
31
32EXTRA_OECONF = "--disable-scrollkeeper --disable-doc"
33
34FILES_${PN} += " \
35 ${datadir}/appdata \
36 ${datadir}/icons \
37 ${datadir}/polkit-1 \
38"
39
40RDEPENDS_${PN} = "dosfstools mtools e2fsprogs"