Makefile revision 967
2521N/A###############################################################################
2521N/A#
2521N/A# xterm 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
2521N/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
2521N/A# Package name used in tarballs
2521N/AMODULE_NAME=xterm
2521N/A
2521N/A# Version number (used in path names)
2521N/AMODULE_VERSION=258
2521N/A
2521N/A# Checksums for upstream tarball
2521N/ATARBALL_MD5 = bcf4f0ba51f5f58fd5bef76b3d05e40e
2521N/ATARBALL_SHA1 = d3357fc88917e23210eea2db32b185799bb2d22e
2521N/A
2521N/A# Source tarball
2521N/ASOURCE_URL=ftp://invisible-island.net/xterm/$(SOURCE_TARBALL_NAME:.tar.gz=.tgz)
2521N/ASOURCE_URL_SET=yes
2521N/A
2521N/A# Source tarball
2521N/ASOURCE_TARBALL_NAME=$(MODULE_NAME)-$(MODULE_VERSION).tar.gz
2521N/ASOURCE_TARBALL_NAME_SET=yes
2521N/ASOURCE_UNCOMPRESS=gzcat
2521N/A
2521N/A# Patches to apply to source after unpacking, in order
2521N/ASOURCE_PATCHES =
2521N/A
2521N/A# Man pages to apply Sun footer to & attributes to list
2521N/ASUNTOUCHED_MANPAGES=*.man
2521N/ASUN_PACKAGE=SUNWxwplt
2521N/AMODULE_STABILITY=Committed
2521N/A
2521N/A# Paths to find Xft/fontconfig/freetype headers libraries at build time
2521N/A# and run time
2521N/AFT_CFLAGS= -I$(PROTODIR)/usr/include -I$(PROTODIR)/usr/include/freetype2
2521N/AFT_LIBS= \
2521N/A -L$(PROTODIR)/usr/lib$(LIBSUBDIR) -R/usr/lib$(LIBSUBDIR) -lXft -lfontconfig
2521N/A
2521N/A# Additional flags to pass to configure script
2521N/AMODULE_CONFIG_OPTS = --enable-256-color --enable-88-color --enable-wide-chars \
2521N/A --with-freetype-cflags="$(FT_CFLAGS)" --with-freetype-libs="$(FT_LIBS)" \
2521N/A --disable-setuid --disable-setgid --enable-luit --disable-imake \
2521N/A --x-includes=$(PROTODIR)$(X11_INCLUDES_DIR) --x-libraries=$(X11_LIB_DIR) \
2521N/A --with-app-defaults=/usr/share/X11/app-defaults \
2521N/A --with-icondir=/usr/share/pixmaps --enable-logging
# Sort-of emulate automake silent rules - run make configure V=1 to see
# full compiler flags
MODULE_CONFIG_OPTS_VERBOSE_0 = --disable-echo
MODULE_CONFIG_OPTS_VERBOSE_1 = --enable-echo
MODULE_CONFIG_OPTS_VERBOSE_ = $(MODULE_CONFIG_OPTS_VERBOSE_0)
MODULE_CONFIG_OPTS += $(MODULE_CONFIG_OPTS_VERBOSE_$(V))
# Tell configure where to find luit binary
MODULE_CONFIG_ENV = LUIT=$(X11_BIN_DIR)/luit
MODULE_ADD_BUILD_TARGETS=fix_manpages
MODULE_ADD_INSTALL_TARGETS=install_docs
include ../Makefile.inc
# Fix man page footers to not say "Last changed: X Window System"
XORGRELSTRING = $(MODULE_NAME) $(MODULE_VERSION)
XORGMANNAME = X Version 11
XVENDORVERS = "$(XORGRELSTRING)" "$(XORGMANNAME)"
fix_manpages: $(UNPACK_TARGET)
$(PERL) -i -p -e 's{__vendorversion__}{$(XVENDORVERS)}g' \
$(SOURCE_DIR)/*.man
# Install documentation of xterm control sequences for packaging
MODULE_DOCDIR=/usr/share/doc/xterm
install_docs: $(UNPACK_TARGET)
mkdir -p $(PROTODIR)$(MODULE_DOCDIR)
rm -f $(PROTODIR)$(MODULE_DOCDIR)/ctlseqs.txt
cp -pf $(SOURCE_DIR)/ctlseqs.txt $(PROTODIR)$(MODULE_DOCDIR)/