mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
cdb428e7c4
* based on discussion in pndeprecated thread: https://patchwork.openembedded.org/patch/137573/ update the messages to warn possible users that the recipe will be removed before the end of the next development cycle (before Yocto 2.4 is released). * updated with: sed -i 's/^\(PNBLACKLIST.*".*\)"/\1 - the recipe will be removed on 2017-09-01 unless the issue is fixed"/g' `git grep PNBLACKLIST | sed 's/:.*//g' | sort -u | xargs` * then noticed couple recipes being blacklisted only based on DISTRO_FEATURES, so removed those: meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.17.bb meta-oe/recipes-connectivity/bluez/bluez-hcidump_2.5.bb meta-oe/recipes-connectivity/bluez/bluez4_4.101.bb meta-oe/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb meta-oe/recipes-navigation/gypsy/gypsy.inc meta-oe/recipes-navigation/navit/navit.inc meta-oe/recipes-support/opensync/libsyncml_0.5.4.bb * if it isn't fixed by this date, it's fair game to be removed whenever someone gets around to i Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
35 lines
1.2 KiB
BlitzBasic
35 lines
1.2 KiB
BlitzBasic
SUMMARY = "e-tasks is a todo program for Openmoko phones"
|
|
HOMEPAGE = "http://code.google.com/p/e-tasks/"
|
|
AUTHOR = "cchandel"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a"
|
|
SECTION = "e/apps"
|
|
DEPENDS = "elementary eina eldbus sqlite3"
|
|
|
|
inherit autotools
|
|
|
|
SRCREV = "890f5ee37d1a5fd1ceb2495950d15151d4cf756b"
|
|
PV = "0.0.2+gitr${SRCPV}"
|
|
|
|
SRC_URI = "git://github.com/shr-project/e-tasks.git"
|
|
SRC_URI += "file://0001-dbus-stuff-Convert-to-eldbus.patch"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install_append() {
|
|
install -d "${D}/${datadir}/pixmaps"
|
|
install -m 0644 "${S}/resources/e-tasks.png" "${D}/${datadir}/pixmaps"
|
|
install -d "${D}/${datadir}/applications"
|
|
install -m 0644 "${S}/resources/e-tasks.desktop" "${D}/${datadir}/applications"
|
|
install -d "${D}/${datadir}/e-tasks"
|
|
for ico in "${S}/resources/"*.png; do
|
|
if [ "$(basename $ico)" != "e-tasks.png" ]; then
|
|
install -m 0644 $ico "${D}/${datadir}/e-tasks"
|
|
fi
|
|
done
|
|
}
|
|
|
|
FILES_${PN} += "/usr/share/e-tasks/* /usr/share/applications/* /usr/share/pixmaps/*"
|
|
|
|
PNBLACKLIST[e-tasks] ?= "Depends on blacklisted elementary - the recipe will be removed on 2017-09-01 unless the issue is fixed"
|