From 3aea9738dd51d048344fe20c363cdf6bc21d233d Mon Sep 17 00:00:00 2001 From: Christian Rüb Date: Sun, 24 Jan 2010 21:16:26 +0000 Subject: litephone: add new recipe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Qt4 based phone application for FSO based phones Signed-off-by: Christian Rüb Signed-off-by: Martin Jansa --- recipes/litephone/files/litephone.desktop | 9 +++++++++ recipes/litephone/litephone.inc | 18 ++++++++++++++++++ recipes/litephone/litephone_git.bb | 26 ++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 recipes/litephone/files/litephone.desktop create mode 100644 recipes/litephone/litephone.inc create mode 100644 recipes/litephone/litephone_git.bb (limited to 'recipes') diff --git a/recipes/litephone/files/litephone.desktop b/recipes/litephone/files/litephone.desktop new file mode 100644 index 0000000000..f58bc58da7 --- /dev/null +++ b/recipes/litephone/files/litephone.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=Litephone +Comment=Ligthweight Qt telephony app +Exec=litephone +Icon=litephone-mobile +Terminal=false +Type=Application +Categories=Applications; +StartupNotify=true diff --git a/recipes/litephone/litephone.inc b/recipes/litephone/litephone.inc new file mode 100644 index 0000000000..e2ca8ca62c --- /dev/null +++ b/recipes/litephone/litephone.inc @@ -0,0 +1,18 @@ +DESCRIPTION = "Ligthweight Qt telephony app" +AUTHOR = "Michal Brzozowski" +HOMEPAGE = "http://www.litephone.org" +SECTION = "x11/applications" +PRIORITY = "optional" +LICENSE = "GPL QPL" +RRECOMMENDS = "fsodeviced fsogsmd fsousaged frameworkd" +INC_PR = "r0" + +inherit qt4x11 + +do_configure() { + ${OE_QMAKE_QMAKE} QMAKE_LRELEASE=lrelease4 +} + +do_compile() { + oe_runmake +} diff --git a/recipes/litephone/litephone_git.bb b/recipes/litephone/litephone_git.bb new file mode 100644 index 0000000000..e209a1c0ca --- /dev/null +++ b/recipes/litephone/litephone_git.bb @@ -0,0 +1,26 @@ +require litephone.inc + +SRCREV = "4c9f16d9acc6cd18fc3f647b7e4f44a2d3bdd7b6" +PV = "0.1+gitr${SRCREV}" +PR = "${INC_PR}.0" + +SRC_URI = "git://git.senfdax.de/git/litephone;protocol=http \ + file://files/litephone.desktop" + +S = "${WORKDIR}/git/" + +do_install() { + install -d ${D}/${datadir}/pixmaps + install -m 644 ${S}/pics/blue/Mobile.png ${D}/${datadir}/pixmaps/litephone-mobile.png + install -d ${D}/${bindir} + install -m 0755 ${S}/litephone ${D}/${bindir} + install -d ${D}/etc/litephone + install ${S}/style_sheet.conf ${D}/etc/litephone/ + install -d ${D}/${datadir}/litephone/translations + install ${S}/translations/*.qm ${D}/${datadir}/litephone/translations/ + install -d ${D}/${datadir}/applications + install ${WORKDIR}/files/litephone.desktop ${D}/${datadir}/applications/ +} + +FILES_${PN}-locale-pl-pl += "/usr/share/litephone/translations/litephone_pl.qm" +PACKAGES =+ "${PN}-locale-pl-pl" -- cgit 1.2.3-korg