Makefile revision 682
943N/A###############################################################################
98N/A#
98N/A# Fontconfig 2.x Makefile
919N/A#
919N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
919N/A# Use subject to license terms.
919N/A#
919N/A# Permission is hereby granted, free of charge, to any person obtaining a
919N/A# copy of this software and associated documentation files (the
919N/A# "Software"), to deal in the Software without restriction, including
919N/A# without limitation the rights to use, copy, modify, merge, publish,
919N/A# distribute, and/or sell copies of the Software, and to permit persons
919N/A# to whom the Software is furnished to do so, provided that the above
919N/A# copyright notice(s) and this permission notice appear in all copies of
919N/A# the Software and that both the above copyright notice(s) and this
919N/A# permission notice appear in supporting documentation.
919N/A#
919N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
919N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
919N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
98N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
98N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
1124N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
1124N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
1124N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
1124N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1124N/A#
606N/A# Except as contained in this notice, the name of a copyright holder
98N/A# shall not be used in advertising or otherwise to promote the sale, use
606N/A# or other dealings in this Software without prior written authorization
98N/A# of the copyright holder.
1124N/A#
98N/A# @(#)Makefile 1.80 09/04/06
98N/A#
98N/A
# Package name used in tarballs
MODULE_NAME=fontconfig
# Version number (used in path names)
MODULE_VERSION=2.5.0
# Source tarball
SOURCE_TARBALL_NAME=fontconfig-$(MODULE_VERSION).tar.gz
SOURCE_TARBALL_NAME_SET=yes
SOURCE_UNCOMPRESS=gzcat
# Download site for source
SOURCE_URL=http://fontconfig.org/release/$(SOURCE_TARBALL_NAME)
SOURCE_URL_SET=yes
# Patches to apply to source after unpacking, in order
SOURCE_PATCHES=fontconfig-$(MODULE_VERSION).patch,-p1 \
fontconfig-$(MODULE_VERSION).patch.hide,-p1 \
fontconfig-$(MODULE_VERSION)-fonts.conf.patch \
6729284.patch,-p1 6770058.patch,-p1
# Library name (used for specfiles/mapfiles)
LIBNAME=fontconfig
# Man pages to apply Sun footer to & attributes to list
SUNTOUCHED_MANPAGES=*/*.1 doc/*.3 doc/*.5
SUN_PACKAGE=SUNWfontconfig
MODULE_STABILITY=Volatile
LIB_MAN_SUFFIX=3fontconfig
MODULE_MTLEVEL=Unknown
MODULE_MTLEVEL_set=yes
# Install to /usr, not /usr/X11
MODULE_PREFIX=/usr
MODULE_PREFIX_SET=yes
# Additional command line options to GNU autoconf configure script
MODULE_CONFIG_OPTS = \
--with-confdir=/etc/fonts --with-default-fonts='--font-dirs-go-here--' \
--with-add-fonts=no \
--with-freetype-config=$(PROTODIR)/usr/bin$(LIBSUBDIR)/freetype-config \
--with-cache-dir=/var/cache/fontconfig
# Need to use GNU Make to build
MODULE_MAKE=$(GNUMAKE)
MODULE_MAKE_SET=yes
# What to build
MODULE_ADD_BUILD_TARGETS = $(SOURCE_DIR)/fonts.conf-SUNW
# 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
# Additional targets to install beyond the default_install
MODULE_ADD_INSTALL_TARGETS = fontconfig-sunman-install \
$(FONTCONFIG_SMF_MANIFEST) $(FONTCONFIG_SMF_METHOD)
# Include common rulesets
include ../Makefile.inc
$(SOURCE_DIR)/fonts.conf-SUNW: $(SOURCE_DIR)/fonts.conf fonts.conf.append fix-fonts.conf.pl
perl fix-fonts.conf.pl < $(SOURCE_DIR)/fonts.conf > $(SOURCE_DIR)/fonts.conf-SUNW
$(SOURCE_DIR)/fonts.conf: $(UNPACK_TARGET) $(CONFIGURE_TARGETS)
install_gen:: $(SOURCE_DIR)/fonts.conf-SUNW
rm $(PROTODIR)/etc/fonts/fonts.conf
cp $(SOURCE_DIR)/fonts.conf-SUNW $(PROTODIR)/etc/fonts/fonts.conf
$(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 $@
FC_MAN_DIR=$(PROTODIR)/usr/share/man
fontconfig-sunman-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