From: Rolf Leggewie Date: Mon, 4 Aug 2008 21:46:10 +0000 (+0000) Subject: txdrug: fix include path and incorrect assumptions about $palmtopdir. closes 2420. X-Git-Tag: Release-2010-05/1~6361 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a957554d221fc9c5464d7685c63b9d6103809af5;p=openembedded.git txdrug: fix include path and incorrect assumptions about $palmtopdir. closes 2420. --- diff --git a/packages/txdrug/txdrug_0.1.bb b/packages/txdrug/txdrug_0.1.bb index cd82234955..31da8117f7 100644 --- a/packages/txdrug/txdrug_0.1.bb +++ b/packages/txdrug/txdrug_0.1.bb @@ -3,10 +3,10 @@ SECTION = "opie/applications" PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "sqlite" -PR = "r2" +PR = "r3" SRC_URI = "http://teax.sourceforge.net/txdrug-${PV}.tar.gz \ - file://${FILESDIR}/${palmtopdir}" + file://${FILESDIR}/opt/QtPalmtop" S = "${WORKDIR}/txdrug-tar" inherit palmtop @@ -14,11 +14,16 @@ inherit palmtop EXTRA_QMAKEVARS_POST += "LIBS+=-lsqlite TARGET=txdrug" do_configure_prepend() { - rm -f Makefile && qmake -project + rm -f Makefile && qmake -project +} + +do_configure_append() { + sed -i "s/\-I\/usr\/include\/sqlite\ //g" Makefile } do_install() { install -d ${D}${palmtopdir} - cp -Pfr `ls -dp ${WORKDIR}/${palmtopdir}/*|grep -v SCCS` ${D}${palmtopdir}/ + cp -Pfr `ls -dp ${WORKDIR}/opt/QtPalmtop/*|grep -v SCCS` ${D}${palmtopdir}/ install -D -m 755 txdrug ${D}${palmtopdir}/bin/txdrug } +