Makefile revision 1063
235N/A###############################################################################
235N/A#
235N/A# xterm Makefile
235N/A#
235N/A# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
235N/A#
235N/A# Permission is hereby granted, free of charge, to any person obtaining a
235N/A# copy of this software and associated documentation files (the "Software"),
235N/A# to deal in the Software without restriction, including without limitation
235N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
235N/A# and/or sell copies of the Software, and to permit persons to whom the
235N/A# Software is furnished to do so, subject to the following conditions:
235N/A#
235N/A# The above copyright notice and this permission notice (including the next
235N/A# paragraph) shall be included in all copies or substantial portions of the
235N/A# Software.
235N/A#
235N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
235N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
235N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
235N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
235N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
235N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
235N/A# DEALINGS IN THE SOFTWARE.
235N/A#
235N/A#
235N/A
235N/A# Package name used in tarballs
235N/AMODULE_NAME=xterm
235N/A
253N/A# pkg(5) name we deliver the files in (override default)
235N/AMODULE_PKGNAME=terminal/xterm
235N/AMODULE_PKGNAME_SET=yes
235N/A
235N/A# Package classification (override default)
235N/AMODULE_PKGCLASS=Applications/System Utilities
235N/AMODULE_PKGCLASS_SET=yes
235N/A
235N/A# Package metadata
235N/AUPSTREAM = Thomas Dickey
235N/AUPSTREAM_URL = http://invisible-island.net/xterm/
235N/AUPSTREAM_SET = yes
235N/A
235N/A# Version number (used in path names)
235N/AMODULE_VERSION=267
235N/A
235N/A# Checksums for upstream tarball
235N/ATARBALL_MD5 = 3945ab70cfa2a9e95804157ee1b0f8e8
235N/ATARBALL_SHA1 = ba80d0ef00292e7888bfbe69dcce0dfbbc4f5091
235N/A
235N/A# Source tarball
235N/ASOURCE_URL=ftp://invisible-island.net/xterm/$(SOURCE_TARBALL_NAME:.tar.gz=.tgz)
235N/ASOURCE_URL_SET=yes
235N/A
253N/A# Source tarball
235N/ASOURCE_TARBALL_NAME=$(MODULE_NAME)-$(MODULE_VERSION).tar.gz
235N/ASOURCE_TARBALL_NAME_SET=yes
SOURCE_UNCOMPRESS=gzcat
# Patches to apply to source after unpacking, in order
SOURCE_PATCHES =
# Man pages to apply Sun footer to & attributes to list
SUNTOUCHED_MANPAGES=*.man
MODULE_STABILITY=Committed
# Paths to find Xft/fontconfig/freetype headers libraries at build time
# and run time
FT_CFLAGS= -I$(PROTODIR)/usr/include -I$(PROTODIR)/usr/include/freetype2
FT_LIBS= \
-L$(PROTODIR)/usr/lib$(LIBSUBDIR) -R/usr/lib$(LIBSUBDIR) -lXft -lfontconfig
# Additional flags to pass to configure script
MODULE_CONFIG_OPTS = --enable-256-color --enable-88-color --enable-wide-chars \
--with-freetype-cflags="$(FT_CFLAGS)" --with-freetype-libs="$(FT_LIBS)" \
--disable-setuid --disable-setgid --enable-luit --disable-imake \
--x-includes=$(PROTODIR)$(X11_INCLUDES_DIR) --x-libraries=$(X11_LIB_DIR) \
--with-app-defaults=/usr/share/X11/app-defaults \
--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
# Compatibility links from /usr/X11/bin to /usr/bin
MODULE_X11_BINCOMPAT_LINKS = xterm resize
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)/