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: Daniel Laird <daniel.j.laird@nxp.com>
This commit is contained in:
Daniel Laird 2008-10-20 07:30:03 +00:00
parent b0457a0ab7
commit 988163764e
3 changed files with 55 additions and 0 deletions

View file

@ -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"

View file

@ -0,0 +1,7 @@
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.

View file

@ -0,0 +1,47 @@
#############################################################
#
# 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