Makefile revision 1352
729N/A###############################################################################
729N/A#
729N/A# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
729N/A#
729N/A# Permission is hereby granted, free of charge, to any person obtaining a
729N/A# copy of this software and associated documentation files (the "Software"),
729N/A# to deal in the Software without restriction, including without limitation
729N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
729N/A# and/or sell copies of the Software, and to permit persons to whom the
729N/A# Software is furnished to do so, subject to the following conditions:
729N/A#
729N/A# The above copyright notice and this permission notice (including the next
729N/A# paragraph) shall be included in all copies or substantial portions of the
729N/A# Software.
729N/A#
729N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
729N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
729N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
729N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
729N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
729N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
729N/A# DEALINGS IN THE SOFTWARE.
729N/A#
729N/A
729N/AMODULE_NAME=xmakemap
729N/A
729N/A# pkg(5) name we deliver the files in (override default)
729N/AMODULE_PKGNAME=x11/x11-server-utilities
729N/AMODULE_PKGNAME_SET=yes
729N/A
729N/A# No upstream sources for these files, since they're Sun created
729N/AMODULE_VERSION=src
729N/ASOURCE_TARBALL_NAME=NONE
729N/ASOURCE_TARBALL_NAME_SET=yes
729N/AADDITIONAL_SOURCE_DIR=sun-src
729N/A
729N/A# Don't need default targets for configure, build, or install, since there's
729N/A# nothing to build, and the install rule follows here
729N/ACONFIGURE_TARGETS =
729N/ACONFIGURE_TARGETS_SET=yes
729N/ABUILD_TARGETS =
729N/ABUILD_TARGETS_SET=yes
729N/AINSTALL_TARGETS = install_xmakemap
729N/AINSTALL_TARGETS_SET=yes
729N/A
729N/A# Man pages to apply Sun footer to & attributes to list
729N/ASUNTOUCHED_MANPAGES=*.man
729N/AMODULE_STABILITY=Committed
729N/A
729N/A### Include common rulesets
729N/A# Compatibility links from /usr/X11/bin to /usr/bin
729N/AMODULE_X11_BINCOMPAT_LINKS = xmakemap
729N/A
729N/Ainclude ../Makefile.inc
729N/A
729N/ADESTDIR=$(PROTODIR)
729N/A
729N/Ainstall_xmakemap: $(SOURCE_TARGETS) $(INSTALL_DEPS)
729N/A mkdir -p $(DESTDIR)$(X11_BIN_DIR) \
729N/A $(DESTDIR)$(X11_MAN_DIR)/man1
729N/A $(INSTALL_SCRIPT) -m 0555 $(SOURCE_DIR)/xmakemap \
729N/A $(DESTDIR)$(X11_BIN_DIR)
729N/A $(INSTALL_SCRIPT) -m 0444 $(SOURCE_DIR)/xmakemap.man \
729N/A $(DESTDIR)$(X11_MAN_DIR)/man1/xmakemap.1
729N/A
729N/A