summaryrefslogtreecommitdiff
path: root/packages/graphics/freefont/freefont.mk
blob: 1eb7d867fc14404f6aa0cb366c7948ddaf614af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
################################################################################
# Embtoolkit
# Copyright(C) 2010 Abdoulaye Walsimou GAYE. All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
#
# \file         freefont.mk
# \brief	freefont.mk of Embtoolkit
# \author       Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
# \date         January 2010
################################################################################

TTMKFDIR_SITE := http://ftp.de.debian.org/debian/pool/main/t/ttmkfdir
TTMKFDIR_VERSION := 3.0.9
TTMKFDIR_PATCH_SITE := ftp://ftp.embtoolkit.org/embtoolkit.org/ttmkfdir/$(TTMKFDIR_VERSION)
TTMKFDIR_PACKAGE := ttmkfdir_$(TTMKFDIR_VERSION).orig.tar.gz
TTMKFDIR_BUILD_DIR := $(PACKAGES_BUILD)/ttmkfdir-$(TTMKFDIR_VERSION)

FREEFONT_SITE := http://ftp.gnu.org/gnu/freefont
FREEFONT_TTF_VERSION := $(subst ",,$(strip $(CONFIG_EMBTK_FREEFONT_TTF_VERSION_STRING)))
FREEFONT_TTF_PACKAGE := freefont-ttf-$(FREEFONT_TTF_VERSION).tar.gz
FREEFONT_TTF_BUILD_DIR := $(PACKAGES_BUILD)/freefont-$(FREEFONT_TTF_VERSION)

FREEFONT_OTF_VERSION := $(subst ",,$(strip $(CONFIG_EMBTK_FREEFONT_OTF_VERSION_STRING)))
FREEFONT_OTF_PACKAGE := freefont-otf-$(FREEFONT_OTF_VERSION).zip
FREEFONT_OTF_BUILD_DIR := $(PACKAGES_BUILD)/freefont-otf-$(FREEFONT_OTF_VERSION)

freefont_ttf_install: $(FREEFONT_TTF_BUILD_DIR)/.installed
ttmkfdir_install: $(TTMKFDIR_BUILD_DIR)/.installed

$(TTMKFDIR_BUILD_DIR)/.installed: download_ttmkfdir \
	$(TTMKFDIR_BUILD_DIR)/.decompressed
	$(Q)$(MAKE) -C $(TTMKFDIR_BUILD_DIR) CC=$(TARGETCC_CACHED) \
	CXX=$(TARGETCXX_CACHED) DEBUG=""
	$(Q)$(MAKE) -C $(TTMKFDIR_BUILD_DIR) DESTDIR=$(SYSROOT) install
	@touch $@

$(TTMKFDIR_BUILD_DIR)/.decompressed:
	$(call EMBTK_GENERIC_MESSAGE,"Decompressing $(TTMKFDIR_PACKAGE)...")
	@tar -C $(PACKAGES_BUILD) -xzf $(DOWNLOAD_DIR)/$(TTMKFDIR_PACKAGE)
	$(Q)cd $(TTMKFDIR_BUILD_DIR); \
	patch -p1 < $(DOWNLOAD_DIR)/ttmkfdir-$(TTMKFDIR_VERSION).patch
	@touch $@

ttmkfdir_clean:
	$(Q)rm -rf $(SYSROOT)/usr/bin/ttmkfdir

download_ttmkfdir:
	$(call EMBTK_GENERIC_MESSAGE,"Downloading ttmkfdir-$(TTMKFDIR_VERSION) \
	if necessary...")
	@test -e $(DOWNLOAD_DIR)/$(TTMKFDIR_PACKAGE) || \
	wget -O $(DOWNLOAD_DIR)/$(TTMKFDIR_PACKAGE) \
	$(TTMKFDIR_SITE)/$(TTMKFDIR_PACKAGE)
	@test -e $(DOWNLOAD_DIR)/ttmkfdir-$(TTMKFDIR_VERSION).patch || \
	wget -O $(DOWNLOAD_DIR)/ttmkfdir-$(TTMKFDIR_VERSION).patch \
	$(TTMKFDIR_PATCH_SITE)/ttmkfdir-$(TTMKFDIR_VERSION)-*.patch

$(FREEFONT_TTF_BUILD_DIR)/.installed: freetype_install \
	download_freefont_ttf $(FREEFONT_TTF_BUILD_DIR)/.decompressed
	$(call EMBTK_GENERIC_MESSAGE,"Installing \
	freefont-$(FREEFONT_TTF_VERSION) in your root filesystem...")
	$(Q)mkdir -p $(ROOTFS)/usr/share/fonts
	$(Q)mkdir -p $(ROOTFS)/usr/share/fonts/truetype
	$(Q)mkdir -p $(ROOTFS)/usr/share/fonts/truetype/freefont
	$(Q)cp $(FREEFONT_TTF_BUILD_DIR)/*.ttf \
	$(ROOTFS)/usr/share/fonts/truetype/freefont/
	@touch $@

download_freefont_ttf:
	$(call EMBTK_GENERIC_MESSAGE,"Downloading $(FREEFONT_TTF_PACKAGE) \
	if necessary...")
	@test -e $(DOWNLOAD_DIR)/$(FREEFONT_TTF_PACKAGE) || \
	wget -O $(DOWNLOAD_DIR)/$(FREEFONT_TTF_PACKAGE) \
	$(FREEFONT_SITE)/$(FREEFONT_TTF_PACKAGE)

$(FREEFONT_TTF_BUILD_DIR)/.decompressed:
	$(call EMBTK_GENERIC_MESSAGE,"Decompressing $(FREEFONT_TTF_PACKAGE)...")
	@tar -C $(PACKAGES_BUILD) -xzf $(DOWNLOAD_DIR)/$(FREEFONT_TTF_PACKAGE)
	@touch $@

freefont_ttf_clean:
	$(call EMBTK_GENERIC_MESSAGE,"Cleanup freefont...")