824N/A###############################################################################
824N/A#
824N/A# Deja Vu Fonts Makefile
824N/A#
824N/A# Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
824N/A#
824N/A# Permission is hereby granted, free of charge, to any person obtaining a
824N/A# copy of this software and associated documentation files (the "Software"),
824N/A# to deal in the Software without restriction, including without limitation
824N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
824N/A# and/or sell copies of the Software, and to permit persons to whom the
824N/A# Software is furnished to do so, subject to the following conditions:
824N/A#
824N/A# The above copyright notice and this permission notice (including the next
824N/A# paragraph) shall be included in all copies or substantial portions of the
824N/A# Software.
824N/A#
824N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
824N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
824N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
824N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
824N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
824N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
824N/A# DEALINGS IN THE SOFTWARE.
824N/A#
824N/A#
824N/A
824N/A# Package name used in tarballs
824N/AMODULE_NAME=dejavu-fonts-ttf
824N/A
824N/A# Package metadata
824N/AUPSTREAM = DejaVu fonts
824N/AUPSTREAM_URL = http://dejavu-fonts.org/
824N/AUPSTREAM_SET = yes
824N/A
824N/AMODULE_LICENSE = Bitstream Vera Fonts License
824N/AMODULE_LICENSE_SET = yes
824N/AMODULE_DESC = the DejaVu fonts
824N/AORACLE_TPNO = 18005
824N/A
824N/A# Version number (used in path names)
824N/AMODULE_VERSION=2.33
824N/A
824N/A# Checksums for upstream tarball
824N/ATARBALL_MD5 = 8b601e91725b6d69141b0fcf527948c0
824N/ATARBALL_SHA1 = 4459d6adc3d5cfeb08e5fbe7a4310da96a58f752
824N/A
824N/A# Download site for source
824N/ASOURCE_URL=$(SF_DOWNLOADS_URL)/dejavu/dejavu/$(MODULE_VERSION)/$(SOURCE_TARBALL_NAME)
824N/ASOURCE_URL_SET=yes
824N/A
824N/A# Patches to apply to source after unpacking, in order
824N/ASOURCE_PATCHES= # None
824N/A
824N/A# What to install
824N/AMODULE_ADD_INSTALL_TARGETS=install_fonts_conf
824N/A
824N/A# Directory to install to
824N/ATTF_SUBDIR=dejavu
824N/ATTF_SUBDIR_SET=yes
824N/AFONTCONF_DEST_DIR=$(PROTODIR)/etc/fonts
824N/A
824N/A# License file
824N/ALICENSE_FILE=LICENSE
824N/ALICENSE_FILE_SET=yes
824N/A
824N/ATTF_FONT_FILES= \
824N/A README \
824N/A $(LICENSE_FILE) \
824N/A ttf/*.ttf
824N/A
824N/A# Subdir of $(SOURCE_DIR) containing *.ttf files
824N/ATTF_SOURCE_SUBDIR=ttf/
824N/A
824N/A### Include common rulesets
824N/Ainclude ../Makefile.ttf
824N/A
824N/A### Rules specific to this directory:
824N/A
824N/Ainstall_fonts_conf: $(SOURCE_TARGETS)
824N/A mkdir -p $(FONTCONF_DEST_DIR)/conf.avail \
824N/A $(FONTCONF_DEST_DIR)/conf.d
824N/A @( cd $(SOURCE_DIR)/fontconfig ; $(START_CMD_ECHO) ; \
824N/A for f in *.conf ; do \
824N/A rm -f $(FONTCONF_DEST_DIR)/conf.avail/$$f \
824N/A $(FONTCONF_DEST_DIR)/conf.d/$$f ; \
824N/A cp -p $$f $(FONTCONF_DEST_DIR)/conf.avail/ ; \
824N/A ln -s ../conf.avail/$$f $(FONTCONF_DEST_DIR)/conf.d/ ; \
824N/A done )
824N/A
824N/A
824N/A