open-src/app/xterm/Makefile
author Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
Mon, 16 Aug 2010 15:35:21 -0700
changeset 999 c88b52baf4f4
parent 970 272328fe1b4a
child 1063 a566150e3ab2
permissions -rw-r--r--
6977519 Mass minor update to X upstream releases [August 2010 edition]

###############################################################################
#
# xterm Makefile
#
# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#
#

# Package name used in tarballs
MODULE_NAME=xterm

# pkg(5) name we deliver the files in (override default)
MODULE_PKGNAME=terminal/xterm
MODULE_PKGNAME_SET=yes

# Package classification (override default)
MODULE_PKGCLASS=Applications/System Utilities
MODULE_PKGCLASS_SET=yes

# Package metadata
UPSTREAM	= Thomas Dickey
UPSTREAM_URL	= http://invisible-island.net/xterm/
UPSTREAM_SET	= yes

# Version number (used in path names)
MODULE_VERSION=261

# Checksums for upstream tarball
TARBALL_MD5  = 10d211f6986c4b279cfa9530b2361457
TARBALL_SHA1 = c19b73bea2f43c676699e914c8a059d8b69fc89b

# Source tarball
SOURCE_URL=ftp://invisible-island.net/xterm/$(SOURCE_TARBALL_NAME:.tar.gz=.tgz)
SOURCE_URL_SET=yes

# Source tarball
SOURCE_TARBALL_NAME=$(MODULE_NAME)-$(MODULE_VERSION).tar.gz
SOURCE_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)/