Makefile.inc revision 1288
98N/A# -*- Makefile -*- rules common to most X.Org font modules
98N/A#
1288N/A# Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
98N/A#
98N/A# Permission is hereby granted, free of charge, to any person obtaining a
919N/A# copy of this software and associated documentation files (the "Software"),
919N/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.
98N/A#
98N/A#
98N/A
156N/A### Makefile settings/rules common to all X.Org font modules
98N/A
98N/APWD:sh=pwd
967N/ATOP=$(PWD)/../../..
98N/A
493N/AMODTYPE=font
493N/A
493N/A### Include common definitions
967N/Ainclude $(TOP)/open-src/common/Makefile.init
493N/A
970N/A# Default package name for font packages
970N/AMODTYPE_PKGHIER_DEFAULT = $(MODTYPE_PKGHIER_SET:yes=$(POUND_SIGN))
970N/A$(MODTYPE_PKGHIER_DEFAULT) MODTYPE_PKGHIER=system/font
970N/AMODTYPE_PKGHIER_SET=yes
970N/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
970N/A
493N/A# Most font modules have no man pages
493N/AMODTYPE_SUNTOUCH_MAN_FLAGS=
98N/A
493N/A# No common dependencies
493N/AMODTYPE_CONFIGURE_DEPS=
98N/A
837N/A# Set default installation path for fonts
837N/AMODTYPE_CONFIG_OPTS = --with-fontrootdir="$(X11_FONT_DIR)"
963N/AMODTYPE_CONFIG_OPTS += $(MODULE_FONTDIR:%=--with-fontdir="%")
837N/A
837N/A# Disable compression of pcf fonts
837N/AMODTYPE_CONFIG_OPTS += --without-compression
837N/A
1288N/A# Avoid races between modules that install to the same directory by not
1288N/A# running mkfontdir at build time, but waiting for later (either in the
1288N/A# sun-aliases module or during packaging in generate_font_metadata.pl).
1288N/AMODTYPE_CONFIG_OPTS += MKFONTDIR=/usr/bin/true
1288N/A
493N/A# Most font modules have nothing to build, for those that do, use lib flags
493N/AMODTYPE_CFLAGS=$(LIB_CFLAGS)
493N/AMODTYPE_LDFLAGS=$(LIB_LDFLAGS)
493N/AMODTYPE_LD_OPTIONS=
98N/A
306N/A# Paths to find mkfontscale, fc-cache & the libraries they need in build area
306N/AFONT_UTILS_PATH=$(PROTODIR)$(X11_DIR)/bin:$(PROTODIR)/usr/bin
306N/AFONT_LIBS_PATH=$(PROTODIR)$(X11_SERVERLIBS_DIR):$(PROTODIR)$(X11_DIR)/lib:$(PROTODIR)/usr/lib
306N/A
493N/A# Additional environment variable options to GNU autoconf configure script
493N/AMODTYPE_CONFIG_ENV = PATH="$(FONT_UTILS_PATH):$$PATH" \
493N/A LD_LIBRARY_PATH="$(FONT_LIBS_PATH)"
98N/A
98N/A# Environment variable options needed when building
493N/AMODTYPE_BUILD_ENV = PATH="$(FONT_UTILS_PATH):$$PATH" \
606N/A LD_LIBRARY_PATH="$(FONT_LIBS_PATH)"
98N/A
963N/A# Need to install links in fontpath.d directory
963N/AMODTYPE_ADD_INSTALL_TARGETS = install_fontpath_links
963N/A
493N/A### Include common rulesets
967N/Ainclude $(TOP)/open-src/common/Makefile.inc
98N/A
963N/A# Can't use Makefile substitutions or dependencies on the links themselves
963N/A# due to the : characters & shell math expansion in the link names
963N/A# Ignores errors since /usr/bin/ln -sf can fail due to race conditions
963N/A# when parallel makes try making the same symlink at the same time
963N/Ainstall_fontpath_links: $(PROTODIR)$(X11_FONT_CATALOGUE)
963N/A @for l in $(FONTPATH_LINKS) ; do \
963N/A if [[ ! -L $(PROTODIR)$(X11_FONT_CATALOGUE)/$$l ]] ; then \
963N/A ( $(START_CMD_ECHO) ; ln -sf ../../..$(MODULE_FONTDIR) \
963N/A $(PROTODIR)$(X11_FONT_CATALOGUE)/$$l || true ); \
963N/A fi \
963N/A done
963N/A
963N/A$(PROTODIR)$(X11_FONT_CATALOGUE):
963N/A mkdir -p $@