From: Phil Blundell Date: Sun, 1 Aug 2004 16:28:22 +0000 (+0000) Subject: add ${datadir}/application-registry to FILES_${PN} X-Git-Tag: Release-2010-05/1~17900 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=541bd3d43d895aa24150653e45b215d59a3a0966;p=openembedded.git add ${datadir}/application-registry to FILES_${PN} BKrev: 410d1a264QgSAY5UypYdmqtlCW0MZQ --- diff --git a/classes/gnome.oeclass b/classes/gnome.oeclass index e69de29bb2..b12fcdec96 100644 --- a/classes/gnome.oeclass +++ b/classes/gnome.oeclass @@ -0,0 +1,21 @@ +def gnome_verdir(v): + import re + m = re.match("([0-9]+)\.([0-9]+)\..*", v) + return "%s.%s" % (m.group(1), m.group(2)) + +SECTION = "gnome" +SRC_URI = "${GNOME_MIRROR}/${PN}/${@gnome_verdir("${PV}")}/${PN}-${PV}.tar.bz2" + +FILES_${PN} += "${datadir}/application-registry" + +inherit autotools pkgconfig + +STAGE_TEMP="${WORKDIR}/temp-staging" + +gnome_stage_includes() { + rm -rf ${STAGE_TEMP} + mkdir -p ${STAGE_TEMP} + make DESTDIR="${STAGE_TEMP}" install + cp -a ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR} + rm -rf ${STAGE_TEMP} +}