Makefile revision 1467
830N/A###############################################################################
830N/A#
830N/A# Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
830N/A#
919N/A# Permission is hereby granted, free of charge, to any person obtaining a
919N/A# copy of this software and associated documentation files (the "Software"),
919N/A# to deal in the Software without restriction, including without limitation
919N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
919N/A# and/or sell copies of the Software, and to permit persons to whom the
830N/A# Software is furnished to do so, subject to the following conditions:
919N/A#
919N/A# The above copyright notice and this permission notice (including the next
919N/A# paragraph) shall be included in all copies or substantial portions of the
830N/A# Software.
919N/A#
919N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
919N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
919N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
919N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
919N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
919N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
830N/A# DEALINGS IN THE SOFTWARE.
830N/A#
830N/A###############################################################################
830N/A#
830N/A# Files for integration with Solaris Service Management Framework (SMF) and
830N/A# Role Based Access Control (RBAC) shared by all the X server variants
830N/A
830N/AMODULE_NAME = xserver-common
830N/A
830N/A# Package metadata
830N/AMODULE_DESC = Xserver SMF & RBAC configuration files
830N/AORACLE_TPNO = $(ORACLE_TPNO_xorg)
830N/A
830N/A# ARC cases that covered this module
830N/A# PSARC/2004/752 X Consolidation conversion to SMF
830N/AMODULE_ARC_CASES = PSARC/2004/752
830N/A# PSARC/2010/161 Xorg configuration file for VESA driver selection
830N/A# (addition of SMF property options/config_file)
830N/AMODULE_ARC_CASES += PSARC/2010/161
830N/A
830N/A# No upstream sources for these files, since they're Solaris-specific
830N/AMODULE_VERSION=$(XORGSERVER_VERS)
830N/ASOURCE_TARBALL_NAME=NONE
830N/ASOURCE_TARBALL_NAME_SET=yes
830N/ASOURCE_TARGETS=
830N/ASOURCE_TARGETS_SET=yes
830N/A
830N/ACONFIGURE_TARGETS=
830N/ACONFIGURE_TARGETS_SET=yes
830N/A
830N/ABUILD_TARGETS = check
830N/ABUILD_TARGETS_SET=yes
830N/A
830N/AINSTALL_TARGETS = install_common
830N/AINSTALL_TARGETS_SET=yes
830N/A
830N/A# Dates to show in Oracle copyright notice in pkg license file
830N/A# Earliest & latest of the copyrights in the Oracle files in this pkg
830N/AORACLE_COPYRIGHT_YEARS = 2004, 2011
830N/A
830N/A# Compatibility links from /usr/X11/bin to /usr/bin
830N/AMODULE_X11_BINCOMPAT_LINKS = X Xserver
830N/A
830N/A### Include common rulesets
830N/Ainclude ../Makefile.inc
830N/A
830N/AX11_SMF_MANIFEST_DIR=$(SMF_MANIFEST_DIR)/application/x11
830N/ADESTDIR=$(PROTODIR)
830N/A
830N/Acheck: x11-server.xml
830N/A /usr/sbin/svccfg validate x11-server.xml
830N/A
830N/Ainstall_common: $(BUILD_TARGETS)
830N/A mkdir -p \
830N/A $(DESTDIR)$(X11_SMF_MANIFEST_DIR) \
830N/A $(DESTDIR)$(SMF_METHOD_DIR) \
830N/A $(DESTDIR)$(X11_DIR)/bin \
830N/A $(DESTDIR)$(X11_DIR)/share/man/man1 \
830N/A $(DESTDIR)/etc/security/auth_attr.d \
830N/A $(DESTDIR)/etc/security/prof_attr.d
830N/A $(INSTALL_SCRIPT) -c -m 0444 x11-server.xml \
830N/A $(DESTDIR)$(X11_SMF_MANIFEST_DIR)/
830N/A $(INSTALL_SCRIPT) -c -m 0755 x11-server $(DESTDIR)$(SMF_METHOD_DIR)/
830N/A $(INSTALL_SCRIPT) -c -m 0755 Xserver $(DESTDIR)$(X11_DIR)/bin/
830N/A $(INSTALL_SCRIPT) -c -m 0444 auth_attr \
830N/A $(DESTDIR)/etc/security/auth_attr.d/$(MODULE_NAME)
830N/A $(INSTALL_SCRIPT) -c -m 0444 prof_attr \
830N/A $(DESTDIR)/etc/security/prof_attr.d/$(MODULE_NAME)
830N/A $(INSTALL_SCRIPT) -c -m 0444 Xnest.1 $(DESTDIR)$(X11_MAN_DIR)/man1/
830N/A