summaryrefslogtreecommitdiffstats
path: root/meta-xfce/recipes-apps/xfce4-screenshooter
Commit message (Collapse)AuthorAgeFilesLines
* xfce4-screenshooter: upgrade 1.9.4 -> 1.9.5Andreas Müller2019-04-061-2/+2
| | | | | | | | | This fixes a bug introduced in 1.9.4 [1] [1] https://bugzilla.xfce.org/show_bug.cgi?id=15187 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-screenshooter: upgrade 1.9.3 -> 1.9.4Andreas Müller2019-03-221-2/+2
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-screenshooter: upgrade 1.9.2 -> 1.9.3Andreas Müller2018-08-191-2/+2
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-screenshooter: fix parallel build issueHongxu Jia2018-05-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | While do an out-of-tree build, if dir panel-plugin is not created in time, there is a compile failure: ... | intltool-merge -d -u -c ./po/.intltool-merge-cache ../xfce4-screenshooter-1.9.1/po ../xfce4-screenshooter-1.9.1/panel-plugin/screenshooter.desktop.in panel-plugin/screenshooter.desktop | Died at intltool-merge line 1184, <PO_FILE> line 22700. ... Ensure panel-plugin subdirectory exists fixes the issue. The fix refers the following commit: ... commit 754754b53bbf4c72d7855e9209f1ccecce5cd8dd Author: Catalin Enache <catalin.enache@windriver.com> Date: Thu Nov 9 11:12:29 2017 +0800 xfce4-screenshooter: create src dir before build ... Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Acked-by: Andreas Müller <schnitzeltony@google.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* xfce4-screenshooter: update 1.9.1 -> 1.9.2Andreas Müller2018-05-171-2/+2
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* xfce4-screenshooter: create src dir before buildCatalin Enache2017-11-301-0/+1
| | | | | | | | | | | In some case the output directory for xfce4-screenshooter.appdata.xml file doesn't exist. Create directory before build. Signed-off-by: Catalin Enache <catalin.enache@windriver.com> Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* xfce4-screenshooter: update 1.8.2 -> 1.9.1Andreas Müller2017-08-132-33/+2
| | | | | | | | 0001-Makefile.am-create-ouput-directory-for-desktop-file.patch was applied upstream Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* meta-oe: fix indentationMartin Jansa2016-08-221-1/+1
| | | | | | | | * remove tabs which sneaked in since last cleanup * meta-oe layers are using consistent indentation with 4 spaces, see http://www.openembedded.org/wiki/Styleguide Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* xfce4-screenshooter: ensure output directory is createdJackie Huang2015-10-132-0/+31
| | | | | | | | | | | | When build with B != S, the output directory for desktop file doesn't exist so it will fail if it's not created before generating the file: /bin/sh: line 1: src/xfce4-screenshooter.desktop.in: No such file or directory Add "$(MKDIR_P) $(dir $@)" to the rule to fix this. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* xfce4-screenshooter: update to 1.8.2Andreas Müller2015-02-192-48/+7
| | | | | | 0001-Fix-panel-plugin-build.patch was applied mainline Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
* xfce4-screenshooter: Ensure lib directory exists.Ash Charles2014-06-131-0/+4
| | | | | | | | | | Screenshooter autogenerates screenshooter-marshal.[ch] in lib/ during compilation. The source directory contains a lib/ but this directory doesn't exist in a build directory by default so we add one manually. Really, this should be corrected in the upstream package. Signed-off-by: Ash Charles <ashcharles@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET2014-02-231-1/+1
| | | | | | | | | | | | | Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: Unify indentationMartin Jansa2013-04-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
* meta-openembedded: use correct format of Upstream-StatusMartin Jansa2012-12-231-1/+1
| | | | | | | * some patches have also incorrect value, but e.g. "Unknown" is as good as "Pending" to me Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* xfce4-screenshooter: update to 1.8.1Andreas Müller2012-09-182-6/+48
| | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
* xfce-app.bbclass: just set SRC_URI commmon to most xfce-appsAndreas Müller2011-10-311-6/+1
| | | | | | | | * build tested with source download for xfce4-notifyd and xfce4-screenshooter * run tested on overo Signed-off-by: Andreas Müller <schnitzeltony@gmx.de> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* xfce4-screenshooter: Add initial recipe with version 1.8.0Andreas Müller2011-08-151-0/+21
Acked-by: Paul Menzel <paulepanter@users.sourceforge.net> Signed-off-by: Andreas Mueller <schnitzeltony@gmx.de> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>