diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-10-12 20:20:10 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-10-12 20:20:10 +0000 |
commit | 598051a0c1a107ac007b5e00353b14676d84eff1 (patch) | |
tree | 0008bdd763c84f24f35620f1a21929135c0289fc /opie-eye | |
parent | d092e3b4d5b6f82a23924c6a71d9cd14ab69fd25 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages
2004/10/12 22:19:59+02:00 uni-frankfurt.de!mickeyl
build and package opie-eye-slave
2004/10/12 22:12:01+02:00 uni-frankfurt.de!mickeyl
package opie-advancedfm-pics seperatly and make opie-eye depend on it
BKrev: 416c3c7aXSVtH-3bdTCZFYhZQx9f8g
Diffstat (limited to 'opie-eye')
-rw-r--r-- | opie-eye/opie-eye_1.1.6.oe | 31 | ||||
-rw-r--r-- | opie-eye/opie-eye_cvs.oe | 13 |
2 files changed, 42 insertions, 2 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}/ +} + diff --git a/opie-eye/opie-eye_cvs.oe b/opie-eye/opie-eye_cvs.oe index 301da3d5cb..59a243192d 100644 --- a/opie-eye/opie-eye_cvs.oe +++ b/opie-eye/opie-eye_cvs.oe @@ -4,19 +4,28 @@ PRIORITY = "optional" MAINTAINER = "Team Opie <opie@handhelds.org>" LICENSE = "GPL" DEPENDS = "libopiecore2 libopieui2 libopiemm2" +RDEPENDS = "opie-advancedfm-pics" PV = "1.1.6-cvs-${CVSDATE}" APPNAME = "opie-eye" +PR = "r2" SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/noncore/graphics/opie-eye \ cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/pics \ cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/apps" - S = "${WORKDIR}/${APPNAME}" inherit opie -# FILES plugins/application/libopie-eye.so* bin/opie-eye bin/opie-eye_slave apps/Applications/opie-eye.desktop pics/opie-eye/*.png +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 -m 0755 opie-eye_slave ${D}/${palmtopdir}/bin/ install -d ${D}${palmtopdir}/pics/${APPNAME}/ install -m 0644 ${WORKDIR}/pics/${APPNAME}/*.png ${D}${palmtopdir}/pics/${APPNAME}/ } |