diff options
author | Koen Kooi <koen@openembedded.org> | 2010-06-17 10:15:53 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-17 10:16:25 +0200 |
commit | 9e52c6686dde5b8aded037966322f2d83eba90a5 (patch) | |
tree | c623d51700c77d2f738e0a7587c304c1dabaa069 /recipes/fontconfig | |
parent | 7d940cb1aad302233853da57f161c590a47e96aa (diff) |
fontconfig-native 2.6.0: convert to new style staging
Diffstat (limited to 'recipes/fontconfig')
-rw-r--r-- | recipes/fontconfig/fontconfig-native_2.6.0.bb | 10 | ||||
-rw-r--r-- | recipes/fontconfig/fontconfig_2.6.0.bb | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/recipes/fontconfig/fontconfig-native_2.6.0.bb b/recipes/fontconfig/fontconfig-native_2.6.0.bb index 43cf020136..fb9e00260a 100644 --- a/recipes/fontconfig/fontconfig-native_2.6.0.bb +++ b/recipes/fontconfig/fontconfig-native_2.6.0.bb @@ -8,11 +8,13 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/fontconfig-${PV}" EXTRA_OEMAKE = "" EXTRA_OECONF = "${@[' --disable-docs',' --disable-docs --with-freetype-config=%s/freetype-config' % bb.data.getVar('STAGING_BINDIR', d, 1)][os.path.isfile('%s/freetype-config' % bb.data.getVar('STAGING_BINDIR', d, 1))]}" -do_stage () { - oe_runmake install - install fc-lang/fc-lang ${STAGING_BINDIR} - install fc-glyphname/fc-glyphname ${STAGING_BINDIR} +do_install_append () { + install -d ${D}${bindir} + install fc-lang/fc-lang ${D}${bindir} + install fc-glyphname/fc-glyphname ${D}${bindir} } +NATIVE_INSTALL_WORKS = "1" + SRC_URI[md5sum] = "ab54ec1d4ddd836313fdbc0cd5299d6d" SRC_URI[sha256sum] = "a9a639eaa0e5666606a4657cc1494eb6df820fac7e5a2aa0c3f7e703b7c8d8a5" diff --git a/recipes/fontconfig/fontconfig_2.6.0.bb b/recipes/fontconfig/fontconfig_2.6.0.bb index e1c9cedddd..fd46235001 100644 --- a/recipes/fontconfig/fontconfig_2.6.0.bb +++ b/recipes/fontconfig/fontconfig_2.6.0.bb @@ -3,7 +3,7 @@ LICENSE = "BSD" DESCRIPTION = "A library for configuring and customizing font access." DEPENDS = "expat freetype zlib" -PR = "r3" +PR = "r4" SRC_URI = "http://fontconfig.org/release/fontconfig-${PV}.tar.gz \ file://fix-pkgconfig.patch" |