Commit 98816376 authored by Daniel Laird's avatar Daniel Laird
Browse files

package/liberation: Add liberation fonts package



Add the liberation fonts package as this can be used
by GTK etc and means you have some useful (free) fonts.

Signed-off-by: default avatarDaniel Laird <daniel.j.laird@nxp.com>
parent b0457a0a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -370,6 +370,7 @@ source "package/atk/Config.in"
source "package/cairo/Config.in"
source "package/pango/Config.in"
source "package/libdrm/Config.in"
source "package/liberation/Config.in"
source "package/libglib12/Config.in"
source "package/libglib2/Config.in"
source "package/libgtk12/Config.in"
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBERATION
	bool "Liberation (Free fonts)"
	help
	  The Liberation Fonts are intended to be replacements for the
	  three most commonly used fonts on Microsoft systems:
	  Times New Roman, Arial, and Courier New.
+47 −0
Original line number Diff line number Diff line
#############################################################
#
# liberation
#
#############################################################
LIBERATION_VERSION = 1.04
LIBERATION_SITE = http://www.fedorahosted.org/releases/l/i/liberation-fonts
LIBERATION_SOURCE = liberation-fonts-$(LIBERATION_VERSION).tar.gz
LIBERATION_DIR = $(BUILD_DIR)/liberation-fonts-$(LIBERATION_VERSION)
LIBERATION_CAT:=$(ZCAT)

$(DL_DIR)/$(LIBERATION_SOURCE):
	$(WGET) -P $(DL_DIR) $(LIBERATION_SITE)/$(LIBERATION_SOURCE)

liberation-source: $(DL_DIR)/$(LIBERATION_SOURCE)

$(LIBERATION_DIR)/.unpacked: $(DL_DIR)/$(LIBERATION_SOURCE)
	$(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	touch $(LIBERATION_DIR)/.unpacked

$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
	-mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
	$(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
	touch -c $(STAGING_DIR)/usr/share/fonts/.ttf

$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/.ttf
	-mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
	$(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
	touch -c $(TARGET_DIR)/usr/share/fonts/.ttf

liberation: uclibc $(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf

liberation-clean:
	rm -rf $(TARGET_DIR)/usr/share/fonts/liberation/
	rm -rf $(STAGING_DIR)/usr/share/fonts/liberation/

liberation-dirclean:
	rm -rf $(LIBERATION_DIR)

#############################################################
#
# Toplevel Makefile options
#
#############################################################
ifeq ($(strip $(BR2_PACKAGE_LIBERATION)),y)
TARGETS+=liberation
endif