Makefile.inc revision 1360
309N/A# -*- Makefile -*- rules common to most X.Org font modules
309N/A#
309N/A# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
309N/A#
1351N/A# Permission is hereby granted, free of charge, to any person obtaining a
309N/A# copy of this software and associated documentation files (the "Software"),
309N/A# to deal in the Software without restriction, including without limitation
919N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
919N/A# and/or sell copies of the Software, and to permit persons to whom the
919N/A# Software is furnished to do so, subject to the following conditions:
919N/A#
919N/A# The above copyright notice and this permission notice (including the next
919N/A# paragraph) shall be included in all copies or substantial portions of the
919N/A# Software.
919N/A#
919N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
919N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
919N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
919N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
919N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
919N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
919N/A# DEALINGS IN THE SOFTWARE.
919N/A#
919N/A#
309N/A
309N/A### Makefile settings/rules common to all X.Org font modules
309N/A
309N/APWD:sh=pwd
493N/ATOP=$(PWD)/../../..
309N/A
309N/AMODTYPE=font
1351N/A
309N/A### Include common definitions
911N/Ainclude $(TOP)/open-src/common/Makefile.init
1351N/A
1351N/A# Default package name for font packages
911N/AMODTYPE_PKGHIER_DEFAULT = $(MODTYPE_PKGHIER_SET:yes=$(POUND_SIGN))
309N/A$(MODTYPE_PKGHIER_DEFAULT) MODTYPE_PKGHIER=system/font
1351N/AMODTYPE_PKGHIER_SET=yes
309N/AMODULE_PKGTAIL_DEFAULT = $(MODULE_PKGTAIL_SET:yes=$(POUND_SIGN))
970N/A$(MODULE_PKGTAIL_DEFAULT) MODULE_PKGTAIL:sh=basename $(pwd)
970N/AMODULE_PKGTAIL_SET = yes
970N/A
970N/A# Package classification
970N/AMODULE_PKGCLASS_DEFAULT = $(MODULE_PKGCLASS_SET:yes=$(POUND_SIGN))
970N/A$(MODULE_PKGCLASS_DEFAULT) MODULE_PKGCLASS=System/Fonts
970N/AMODULE_PKGCLASS_SET = yes
309N/A
309N/A# Default module description for packages in this area
1351N/AMODTYPE_DESC = the $(MODULE_NAME:font-%=%) fonts
493N/A
309N/A# Default TPNO & license text for X.Org fonts
1124N/AUPSTREAM_DEFAULT = $(UPSTREAM_SET:yes=$(POUND_SIGN))
1124N/A$(UPSTREAM_DEFAULT) ORACLE_TPNO = $(ORACLE_TPNO_xorg_fonts)
1124N/A$(UPSTREAM_DEFAULT) ORACLE_TPNO_SET = yes
1124N/A$(UPSTREAM_DEFAULT) XORG_FONT_LICENSE = ../X11-font-license.txt
970N/A$(UPSTREAM_DEFAULT) ADD_LICENSE_HEADER = ../X11-font-license-add.txt
970N/A$(UPSTREAM_DEFAULT) LICENSE_APPEND = $(ADD_LICENSE_FILES)
970N/A
309N/A# If font makefile contains AUTO_ADD_LICENSE = no, we just display the X.Org
# font license, as there is no other attribution notice required for the
# package. Otherwise we display the X11 license, plus a header and the
# package's own COPYING file.
ADD_LICENSE_YES = $(AUTO_ADD_LICENSE:no=$(POUND_SIGN))
$(ADD_LICENSE_YES) ADD_LICENSE_NO = $(POUND_SIGN)
$(UPSTREAM_DEFAULT)$(ADD_LICENSE_YES) MODULE_LICENSE_PREPEND = $(XORG_FONT_LICENSE)
$(UPSTREAM_DEFAULT)$(ADD_LICENSE_YES) MODULE_LICENSE_PREPEND += $(ADD_LICENSE_HEADER)
$(UPSTREAM_DEFAULT)$(ADD_LICENSE_NO) LICENSE_FILE = $(XORG_FONT_LICENSE)
$(UPSTREAM_DEFAULT)$(ADD_LICENSE_NO) LICENSE_FILE_SET = yes
# Most font modules have no man pages
MODTYPE_SUNTOUCH_MAN_FLAGS=
# No common dependencies
MODTYPE_CONFIGURE_DEPS=
# Set default installation path for fonts
MODTYPE_CONFIG_OPTS = --with-fontrootdir="$(X11_FONT_DIR)"
MODTYPE_CONFIG_OPTS += $(MODULE_FONTDIR:%=--with-fontdir="%")
# Disable compression of pcf fonts
MODTYPE_CONFIG_OPTS += --without-compression
# Avoid races between modules that install to the same directory by not
# running mkfontdir at build time, but waiting for later (either in the
# sun-aliases module or during packaging in generate_font_metadata.pl).
MODTYPE_CONFIG_OPTS += MKFONTDIR=/usr/bin/true
# Most font modules have nothing to build, for those that do, use lib flags
MODTYPE_CFLAGS=$(LIB_CFLAGS)
MODTYPE_LDFLAGS=$(LIB_LDFLAGS)
MODTYPE_LD_OPTIONS=
# Paths to find mkfontscale, fc-cache & the libraries they need in build area
FONT_UTILS_PATH=$(PROTODIR)$(X11_DIR)/bin:$(PROTODIR)/usr/bin
FONT_LIBS_PATH=$(PROTODIR)$(X11_SERVERLIBS_DIR):$(PROTODIR)$(X11_DIR)/lib:$(PROTODIR)/usr/lib
# Additional environment variable options to GNU autoconf configure script
MODTYPE_CONFIG_ENV = PATH="$(FONT_UTILS_PATH):$$PATH" \
LD_LIBRARY_PATH="$(FONT_LIBS_PATH)"
# Environment variable options needed when building
MODTYPE_BUILD_ENV = PATH="$(FONT_UTILS_PATH):$$PATH" \
LD_LIBRARY_PATH="$(FONT_LIBS_PATH)"
# Need to install links in fontpath.d directory
MODTYPE_ADD_INSTALL_TARGETS = install_fontpath_links
### Include common rulesets
include $(TOP)/open-src/common/Makefile.inc
# Can't use Makefile substitutions or dependencies on the links themselves
# due to the : characters & shell math expansion in the link names
# Ignores errors since /usr/bin/ln -sf can fail due to race conditions
# when parallel makes try making the same symlink at the same time
install_fontpath_links: $(PROTODIR)$(X11_FONT_CATALOGUE)
@for l in $(FONTPATH_LINKS) ; do \
if [[ ! -L $(PROTODIR)$(X11_FONT_CATALOGUE)/$$l ]] ; then \
( $(START_CMD_ECHO) ; ln -sf ../../..$(MODULE_FONTDIR) \
$(PROTODIR)$(X11_FONT_CATALOGUE)/$$l || true ); \
fi \
done
$(PROTODIR)$(X11_FONT_CATALOGUE):
mkdir -p $@