Makefile revision 1370
0N/A###############################################################################
0N/A#
0N/A# Xlib-based client library for common X11 protocol extensions
0N/A#
0N/A# Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
0N/A#
0N/A# Permission is hereby granted, free of charge, to any person obtaining a
0N/A# copy of this software and associated documentation files (the "Software"),
0N/A# to deal in the Software without restriction, including without limitation
0N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
0N/A# and/or sell copies of the Software, and to permit persons to whom the
0N/A# Software is furnished to do so, subject to the following conditions:
0N/A#
0N/A# The above copyright notice and this permission notice (including the next
0N/A# paragraph) shall be included in all copies or substantial portions of the
0N/A# Software.
0N/A#
0N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
0N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
0N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
0N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
0N/A# DEALINGS IN THE SOFTWARE.
0N/A#
0N/A#
0N/A
0N/A# Package name used in tarballs
0N/AMODULE_NAME=libXext
0N/A
0N/A# Version number (used in path names)
0N/AMODULE_VERSION=1.3.2
0N/A
0N/A# Checksums for upstream tarball
0N/ATARBALL_MD5 = 4376101e51bb2c6c44d9ab14344e85ad
0N/ATARBALL_SHA1 = 49b6f026b0555d020014dbc24b49afc2986a30e0
0N/ATARBALL_SHA256= f829075bc646cdc085fa25d98d5885d83b1759ceb355933127c257e8e50432e0
0N/A
0N/A# Patches to apply to source after unpacking, in order
0N/ASOURCE_PATCHES += shm.patch,-p1
0N/ASOURCE_PATCHES += sun-exts.patch,-p1
0N/A
0N/A# Library name (used for specfiles/mapfiles)
0N/ALIBNAME=Xext
0N/A
0N/A# Dates to show in Oracle copyright notice in pkg license file
0N/A# Earliest & latest of the copyrights in the Oracle files in this pkg
0N/AORACLE_COPYRIGHT_YEARS = 1990, 2013
0N/A
0N/A# ARC cases that covered this module
0N/A# PSARC 1999/188 FBPM (Frame Buffer Power Management) Extension
0N/AMODULE_ARC_CASES = PSARC/1999/188
0N/A# PSARC/2005/328 Xinerama Protocol Compatibility
0N/AMODULE_ARC_CASES += PSARC/2005/328
0N/A# PSARC/2007/500 X11 MIT-SHM Extension across zones
0N/AMODULE_ARC_CASES += PSARC/2007/500
0N/A# PSARC/2008/194 X11R7 update to libXext, libXevie & libXss
0N/AMODULE_ARC_CASES += PSARC/2008/194
0N/A# PSARC/2009/293 X Generic Event Extension (XGE), Version 1.0
0N/AMODULE_ARC_CASES += PSARC/2009/293
0N/A# PSARC/2011/213 X Synchronization Extension version 3.1
0N/AMODULE_ARC_CASES += PSARC/2011/213
0N/A
0N/A# Man pages to apply Sun footer to & attributes to list
0N/ASUNTOUCHED_MANPAGES=man/*.man
0N/AMODULE_STABILITY=Committed
0N/ALIB_MAN_SUFFIX=3xext
0N/A
0N/A# pkg-config files that need to have -R added
0N/AFIX_PC_FILES=xext.pc.in
0N/A
0N/A# Enable Solaris-specific code
0N/AMODULE_CPPFLAGS = -DSUNSOFT
0N/A
0N/A# Link with version mapfile and libraries that contain sources that used
0N/A# to be in libXext
0N/AMODULE_LD_OPTIONS = -M $(PWD)/mapfile-vers
0N/A
0N/A# Regenerate Makefile.in's from Makefile.am's after patching them
0N/AAUTORECONF=yes
0N/A
0N/A# Merge in additional sources from sun-src directory
0N/AADDITIONAL_SOURCE_DIR=sun-src
0N/A
0N/A# Compatibility links from /usr/X11/lib to /usr/lib
0N/AMODULE_X11_LIBCOMPAT_LINKS = libXext.so libXext.so.0
0N/A
0N/Ainclude ../Makefile.inc
0N/A
0N/A
0N/A