Makefile revision 987
424N/A###############################################################################
424N/A#
424N/A# pixman Makefile
424N/A#
424N/A# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
424N/A#
424N/A# Permission is hereby granted, free of charge, to any person obtaining a
424N/A# copy of this software and associated documentation files (the "Software"),
424N/A# to deal in the Software without restriction, including without limitation
424N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
424N/A# and/or sell copies of the Software, and to permit persons to whom the
424N/A# Software is furnished to do so, subject to the following conditions:
424N/A#
424N/A# The above copyright notice and this permission notice (including the next
424N/A# paragraph) shall be included in all copies or substantial portions of the
424N/A# Software.
424N/A#
424N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
424N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
424N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
424N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
424N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
424N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
424N/A# DEALINGS IN THE SOFTWARE.
424N/A#
424N/A
424N/A# Package name used in tarballs
424N/AMODULE_NAME=pixman
424N/A
424N/A# Version number (used in path names)
424N/AMODULE_VERSION=0.18.2
424N/A
424N/A# Checksums for upstream tarball
424N/ATARBALL_MD5 = 8f0c47bbb12a0d9c0d14242596bf6bf9
424N/ATARBALL_SHA1 = d66ab37ebc111e8031dd6d0ff1edf19b7adab5be
424N/A
424N/A# Patches to apply to source after unpacking, in order
424N/ASOURCE_PATCHES =
424N/A
424N/A# Override default CFLAGS for x86 builds to avoid clashes between
424N/A# -xtarget=pentium and the MMX/SSE flags added by configure for specific
424N/A# files in pixman and to work around assertions in Studio 12 when the
424N/A# -xspace flag is used (Studio bug #6825222)
424N/Ainclude ../../common/Makefile.init
424N/ANO_TARGET_CFLAGS = $(LIB_CFLAGS:-xtarget%=-xchip%)
424N/ANO_XSPACE_CFLAGS = $(NO_TARGET_CFLAGS:-xspace=)
424N/AMODULE_CONFIG_ENV_i386 = CFLAGS="$(NO_XSPACE_CFLAGS)"
424N/AMODULE_CONFIG_ENV_sparc = # not needed
424N/AMODULE_CONFIG_ENV = $(MODULE_CONFIG_ENV_$(MACH))
424N/A
424N/A# Library name
424N/ALIBNAME=pixman
424N/A
424N/A# Where to install pixman files
424N/AMODULE_PREFIX=/usr
MODULE_PREFIX_SET=yes
# pkg(5) name we deliver the files in (override default)
MODULE_PKGNAME=library/graphics/pixman
MODULE_PKGNAME_SET=yes
# Package classification (override default)
MODULE_PKGCLASS=System/Libraries
MODULE_PKGCLASS_SET=yes
# ARC cases that covered this module
# LSARC/2008/637 pixman
MODULE_ARC_CASES = LSARC/2008/637
# LSARC/2009/223 pixman 0.14
MODULE_ARC_CASES += LSARC/2009/223
# PSARC/2010/282 pixman 0.18
MODULE_ARC_CASES += PSARC/2010/282
# Man pages to apply Sun footer to & attributes to list
#SUNTOUCHED_MANPAGES=man/*.man
MODULE_STABILITY=Volatile
LIB_MAN_SUFFIX=3pixman
# pkg-config files that need to have -R added
FIX_PC_FILES=pixman-1.pc.in
include ../Makefile.inc