summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2016-08-17 22:31:25 +0300
committerPatrick Williams <patrick@stwcx.xyz>2016-08-22 19:43:26 +0300
commit60f9d69e016b11c468c98ea75ba0a60c44afbbc4 (patch)
treeecb49581a9e41a37943c22cd9ef3f63451b20ee7 /yocto-poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc
parente18c61205e0234b03697129c20cc69c9b3940efc (diff)
downloadopenbmc-60f9d69e016b11c468c98ea75ba0a60c44afbbc4.tar.xz
yocto-poky: Move to import-layers subdir
We are going to import additional layers, so create a subdir to hold all of the layers that we import with git-subtree. Change-Id: I6f732153a22be8ca663035c518837e3cc5ec0799 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Diffstat (limited to 'yocto-poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc')
-rw-r--r--yocto-poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc42
1 files changed, 0 insertions, 42 deletions
diff --git a/yocto-poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc b/yocto-poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc
deleted file mode 100644
index d5267f59a..000000000
--- a/yocto-poky/meta/recipes-graphics/xorg-font/xorg-font-common.inc
+++ /dev/null
@@ -1,42 +0,0 @@
-HOMEPAGE = "http://www.x.org"
-BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
-
-SECTION = "x11/fonts"
-LICENSE = "MIT-X"
-
-DEPENDS = " encodings font-alias font-util-native mkfontdir-native mkfontscale-native"
-RDEPENDS_${PN} = "encodings font-util font-alias"
-
-XORG_PN = "${BPN}"
-INC_PR = "r2"
-
-
-SRC_URI = "${XORG_MIRROR}/individual/font/${XORG_PN}-${PV}.tar.bz2"
-S = "${WORKDIR}/${XORG_PN}-${PV}"
-
-inherit autotools pkgconfig distro_features_check
-
-# The mkfontscale-native requires x11 in DISTRO_FEATURES
-REQUIRED_DISTRO_FEATURES = "x11"
-
-EXTRA_OEMAKE += "FCCACHE=/bin/true UTIL_DIR=${STAGING_DIR_TARGET}\$\(MAPFILES_PATH\)"
-
-do_install_append() {
- find ${D}${libdir}/X11/fonts -type f -name fonts.dir | xargs rm -f
- find ${D}${libdir}/X11/fonts -type f -name fonts.scale | xargs rm -f
- find ${D}${datadir}/fonts/X11 -type f -name fonts.dir | xargs rm -f
- find ${D}${datadir}/fonts/X11 -type f -name fonts.scale | xargs rm -f
-}
-
-FILES_${PN} += " ${libdir}/X11/fonts ${datadir}"
-
-pkg_postinst_${PN} () {
- for fontdir in `find $D/usr/lib/X11/fonts -type d`; do
- mkfontdir $fontdir
- mkfontscale $fontdir
- done
- for fontdir in `find $D/usr/share/fonts/X11 -type d`; do
- mkfontdir $fontdir
- mkfontscale $fontdir
- done
-}