Makefile revision 911
1117N/A###############################################################################
1117N/A#
1117N/A# Fontconfig 2.x Makefile
1117N/A#
1117N/A# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
1117N/A# Use is subject to license terms.
1117N/A#
1117N/A# Permission is hereby granted, free of charge, to any person obtaining a
1117N/A# copy of this software and associated documentation files (the
1117N/A# "Software"), to deal in the Software without restriction, including
1117N/A# without limitation the rights to use, copy, modify, merge, publish,
1117N/A# distribute, and/or sell copies of the Software, and to permit persons
1117N/A# to whom the Software is furnished to do so, provided that the above
1117N/A# copyright notice(s) and this permission notice appear in all copies of
1117N/A# the Software and that both the above copyright notice(s) and this
1117N/A# permission notice appear in supporting documentation.
1117N/A#
1117N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1117N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1117N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
1117N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
1117N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
1117N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
1117N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
1117N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
1117N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1117N/A#
1117N/A# Except as contained in this notice, the name of a copyright holder
1117N/A# shall not be used in advertising or otherwise to promote the sale, use
1117N/A# or other dealings in this Software without prior written authorization
1117N/A# of the copyright holder.
1117N/A#
1117N/A#
1117N/A
1117N/A# Package name used in tarballs
1117N/AMODULE_NAME=fontconfig
1117N/A
1117N/A# Version number (used in path names)
1117N/AMODULE_VERSION=2.7.3
1117N/A
1117N/A# Checksums for upstream tarball
1117N/ATARBALL_MD5 = 747d2c691c66b563c8e8c1784ce8d014
1117N/ATARBALL_SHA1 = bc84b883673a7f43f2849f06ec110c4eaccfb42c
1117N/A
1117N/A# Source tarball
1117N/ASOURCE_TARBALL_NAME=fontconfig-$(MODULE_VERSION).tar.gz
1117N/ASOURCE_TARBALL_NAME_SET=yes
1117N/ASOURCE_UNCOMPRESS=gzcat
1117N/A
1117N/A# Download site for source
1117N/ASOURCE_URL=http://fontconfig.org/release/$(SOURCE_TARBALL_NAME)
1117N/ASOURCE_URL_SET=yes
1117N/A
1117N/A# Patches to apply to source after unpacking, in order
1196N/ASOURCE_PATCHES=fontconfig-$(MODULE_VERSION)-fonts.conf.patch,-p1 \
1117N/A Makefile.am.0.patch,-p1 \
1117N/A 6770058.patch,-p1
1117N/A
1117N/A# Library name (used for specfiles/mapfiles)
1117N/ALIBNAME=fontconfig
1117N/A
1117N/A# Man pages to apply Sun footer to & attributes to list
1117N/ASUNTOUCHED_MANPAGES=*/*.1 doc/*.3 doc/*.5
1117N/ASUN_PACKAGE=SUNWfontconfig
1117N/AMODULE_STABILITY=Volatile
1117N/ALIB_MAN_SUFFIX=3fontconfig
1117N/AMODULE_MTLEVEL=Unknown
1117N/AMODULE_MTLEVEL_set=yes
1117N/A
1117N/A# Install to /usr, not /usr/X11
1117N/AMODULE_PREFIX=/usr
1117N/AMODULE_PREFIX_SET=yes
1117N/A
1117N/A# Additional command line options to GNU autoconf configure script
1117N/AMODULE_CONFIG_OPTS = \
1117N/A --with-confdir=/etc/fonts \
1117N/A --with-default-fonts='/usr/share/fonts' \
1117N/A --with-add-fonts='/etc/X11/fontpath.d,/usr/share/ghostscript/fonts,/usr/X11/lib/X11/fonts' \
1117N/A --with-freetype-config=$(PROTODIR)/usr/bin$(LIBSUBDIR)/freetype-config \
1117N/A --with-cache-dir=/var/cache/fontconfig
# Need to use GNU Make to build
MODULE_MAKE=$(GNUMAKE)
MODULE_MAKE_SET=yes
# Paths to find libraries
MODULE_BUILD_ENV = LD_LIBRARY_PATH=$(PROTODIR)/usr/lib$(LIBSUBDIR) \
LD_RUN_PATH=/usr/lib$(LIBSUBDIR) $(DOC_PATH)
# Need to rebuild autoconf/automake files
AUTORECONF=yes
# Path to install fc-cache manifest & method script
FONTCONFIG_SMF_MANIFEST_dir=$(PROTODIR)/var/svc/manifest/application/font
FONTCONFIG_SMF_MANIFEST=$(FONTCONFIG_SMF_MANIFEST_dir)/fc-cache.xml
FONTCONFIG_SMF_METHOD_dir=$(PROTODIR)/lib/svc/method
FONTCONFIG_SMF_METHOD=$(FONTCONFIG_SMF_METHOD_dir)/fc-cache
# Sun specification configuration files to be installed in /etc/fonts/conf.d
FONTCONFIG_CONFDIR = $(PROTODIR)/etc/fonts/conf.avail
SUN_CONFFILES = 20-indic.conf 49-sun-preuser.conf 90-sun-prefer-bitmap.conf
FONTCONFIG_SUN_CONFFILES = $(SUN_CONFFILES:%=$(FONTCONFIG_CONFDIR)/%)
# Additional targets to install beyond the default_install
MODULE_ADD_INSTALL_TARGETS = fontconfig-sunman-install \
$(FONTCONFIG_SMF_MANIFEST) $(FONTCONFIG_SMF_METHOD) \
$(FONTCONFIG_SUN_CONFFILES)
# Include common rulesets
include ../Makefile.inc
$(FONTCONFIG_SMF_MANIFEST): fc-cache.xml
/usr/sbin/svccfg validate fc-cache.xml
mkdir -p $(FONTCONFIG_SMF_MANIFEST_dir)
$(INSTALL_SCRIPT) -c -m 0444 fc-cache.xml $@
$(FONTCONFIG_SMF_METHOD): fc-cache.sh
mkdir -p $(FONTCONFIG_SMF_METHOD_dir)
$(INSTALL_SCRIPT) -c -m 0755 fc-cache.sh $@
$(FONTCONFIG_SUN_CONFFILES): $(SUN_CONFFILES)
mkdir -p $(PROTODIR)/etc/fonts/conf.d $(PROTODIR)/etc/fonts/conf.avail
@f=`basename $@` ; $(START_CMD_ECHO) ; \
cp -fp $$f $@ ; \
rm -f $(PROTODIR)/etc/fonts/conf.d/$$f ; \
ln -sf ../conf.avail/$$f $(PROTODIR)/etc/fonts/conf.d/$$f
FC_MAN_DIR=$(PROTODIR)/usr/share/man
fontconfig-sunman-install: default_install
mkdir -p $(FC_MAN_DIR)/man4 $(FC_MAN_DIR)/man3lib
sed -e 's/.TH "FONTS-CONF" "5"/.TH "fonts.conf" "4"/' \
-e 's/SUNWfontconfig/SUNWfontconfig-root/' \
$(FC_MAN_DIR)/man5/fonts-conf.5 > $(FC_MAN_DIR)/man4/fonts.conf.4
-rm -f $(FC_MAN_DIR)/man3lib/libfontconfig.3lib
perl -p -e 's/^$$/.LP/;' -e 's/.?\251/\\(co/;' \
libfontconfig.3lib $(SOURCE_DIR)/COPYING >> \
$(FC_MAN_DIR)/man3lib/libfontconfig.3lib
-rm -f $(FC_MAN_DIR)/man1/fc-cache.1
cat $(SOURCE_DIR)/fc-cache/fc-cache.1 sunman-notes-fc-cache >> \
$(FC_MAN_DIR)/man1/fc-cache.1