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