961N/A###############################################################################
961N/A#
961N/A# xfsinfo - Utility to display information about an X font server
961N/A#
961N/A# Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
961N/A#
961N/A# Permission is hereby granted, free of charge, to any person obtaining a
961N/A# copy of this software and associated documentation files (the "Software"),
961N/A# to deal in the Software without restriction, including without limitation
961N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
961N/A# and/or sell copies of the Software, and to permit persons to whom the
961N/A# Software is furnished to do so, subject to the following conditions:
961N/A#
961N/A# The above copyright notice and this permission notice (including the next
961N/A# paragraph) shall be included in all copies or substantial portions of the
961N/A# Software.
961N/A#
961N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
961N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
961N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
961N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
961N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
961N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
961N/A# DEALINGS IN THE SOFTWARE.
3231N/A#
5385N/A#
961N/A
961N/A# Package name used in tarballs
961N/AMODULE_NAME=xfsinfo
5636N/A
961N/A# pkg(5) name we deliver the files in (override default)
961N/AMODULE_PKGNAME=x11/xfs/xfs-utilities
961N/AMODULE_PKGNAME_SET=yes
5636N/A
961N/A# Package metadata
961N/AMODULE_DESC = the xfsinfo X font server query utility
961N/A
961N/A# ARC cases that covered this module
961N/A# PSARC/2015/221 X11 application updates
961N/AMODULE_ARC_CASES = PSARC/2015/221
961N/A
961N/A# Version number (used in path names)
5636N/AMODULE_VERSION=1.0.5
961N/A
961N/A# Checksums for upstream tarball
961N/ATARBALL_MD5 = 64fc7318602b4b2751e2bd7c33bf061c
5385N/ATARBALL_SHA1 = 7513e16ba5c8fef31aeaff4a42bf131859e75ee0
1878N/ATARBALL_SHA256 = d38f4b6db4038f52ba1a09123ef497993194288454c0c13d16debe246f120d8f
961N/A
1878N/A# Patches to apply to source after unpacking, in order
961N/ASOURCE_PATCHES =
961N/A
1878N/A# Man pages to apply Sun footer to & attributes to list
961N/ASUNTOUCHED_MANPAGES=man/*.man
961N/AMODULE_STABILITY=Committed
1878N/A
961N/A# Compatibility links from /usr/X11/bin to /usr/bin
5636N/AMODULE_X11_BINCOMPAT_LINKS = xfsinfo
961N/A
961N/Ainclude ../Makefile.inc
961N/A
961N/A# Special compatibility link from /usr/X11/bin/fsinfo to /usr/bin/xfsinfo
961N/Ainstall: $(X11_BINCOMPAT_DIR)/fsinfo
961N/A
961N/A$(X11_BINCOMPAT_DIR)/fsinfo: $(X11_BINCOMPAT_DIR)
961N/A @rm -f $@
961N/A ln -s ../../bin/xfsinfo $@
961N/A