From: Holger Freyther Date: Wed, 26 Dec 2007 19:31:53 +0000 (+0000) Subject: packages/qsvn/qsvn.inc: Propose a function to be able to set the FN X-Git-Tag: Release-2010-05/1~8077^2~10 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df105e3b26d2a3acd98a8e70ad8f308fa3ca5c4f;p=openembedded.git packages/qsvn/qsvn.inc: Propose a function to be able to set the FN With diverting packages ${PN} can sometimes not be used. In such cases we don't to use the filename of the currently included file. This can work with immediate assignments and a helper function like this one. --- diff --git a/packages/qsvn/qsvn.inc b/packages/qsvn/qsvn.inc index edd9bfd951..c27bbab114 100644 --- a/packages/qsvn/qsvn.inc +++ b/packages/qsvn/qsvn.inc @@ -7,9 +7,15 @@ SECTION = "network" DEPENDS = "apr-util subversion" PR = "r0" -SRC_URI = "http://download2.berlios.de/qsvn/qsvn-${PV}-src.tar.gz \ +def vars_from_file(filename): + import os + return os.path.splitext(os.path.basename(filename))[0] + +FN := "${@vars_from_file(bb.data.getVar('FILE',d))}" + +SRC_URI = "http://download2.berlios.de/${FN}/${FN}-${PV}-src.tar.gz \ file://build.patch;patch=1" -S = "${WORKDIR}/qsvn-${PV}" +S = "${WORKDIR}/${FN}-${PV}" EXTRA_QMAKEVARS_POST += "INCLUDEPATH+=${STAGING_INCDIR}/subversion-1"