diff options
Diffstat (limited to 'opie-eye/opie-eye_1.1.6.oe')
-rw-r--r-- | opie-eye/opie-eye_1.1.6.oe | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/opie-eye/opie-eye_1.1.6.oe b/opie-eye/opie-eye_1.1.6.oe index e69de29bb2..b248187270 100644 --- a/opie-eye/opie-eye_1.1.6.oe +++ b/opie-eye/opie-eye_1.1.6.oe @@ -0,0 +1,31 @@ +DESCRIPTION = "A image viewer" +SECTION = "opie/applications" +PRIORITY = "optional" +MAINTAINER = "Team Opie <opie@handhelds.org>" +LICENSE = "GPL" +DEPENDS = "libopiecore2 libopieui2 libopiemm2" +RDEPENDS = "opie-advancedfm-pics" +APPNAME = "opie-eye" +PR = "r2" + +TAG = "${@'v' + oe.data.getVar('PV',d,1).replace('.', '_')}" +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/noncore/graphics/opie-eye \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/pics \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/apps" +S = "${WORKDIR}/${APPNAME}" + +inherit opie + +do_configure_append() { + cd slave && qmake -makefile -spec ${QMAKESPEC} slave.pro -after ${EXTRA_QMAKEVARS_POST} +} + +do_compile_append() { + cd slave && oe_runmake +} + +do_install() { + install -d ${D}${palmtopdir}/pics/${APPNAME}/ + install -m 0644 ${WORKDIR}/pics/${APPNAME}/*.png ${D}${palmtopdir}/pics/${APPNAME}/ +} + |