Makefile revision 851
306N/A###############################################################################
306N/A#
935N/A# xdm Makefile
306N/A#
306N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
919N/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
919N/A# "Software"), to deal in the Software without restriction, including
919N/A# without limitation the rights to use, copy, modify, merge, publish,
919N/A# distribute, and/or sell copies of the Software, and to permit persons
919N/A# to whom the Software is furnished to do so, provided that the above
919N/A# copyright notice(s) and this permission notice appear in all copies of
919N/A# the Software and that both the above copyright notice(s) and this
919N/A# permission notice appear in supporting documentation.
919N/A#
919N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
919N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
919N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
919N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
919N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
306N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
306N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
493N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
493N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
970N/A#
970N/A# Except as contained in this notice, the name of a copyright holder
970N/A# shall not be used in advertising or otherwise to promote the sale, use
970N/A# or other dealings in this Software without prior written authorization
306N/A# of the copyright holder.
493N/A#
306N/A#
493N/A
493N/A# Package name used in tarballs
935N/AMODULE_NAME=xdm
935N/A
935N/A# Version number (used in path names)
810N/AMODULE_VERSION=1.1.9
810N/A
810N/A# Patches to apply to source after unpacking, in order
493N/ASOURCE_PATCHES = \
493N/A mkdir.patch,-p1 \
493N/A bindir.patch \
837N/A terminateServer.patch \
493N/A Xsession.patch
306N/A
963N/A# Man pages to apply Sun footer to & attributes to list
963N/ASUNTOUCHED_MANPAGES=xdm.man.cpp
963N/ASUN_PACKAGE=SUNWxdm
970N/AMODULE_STABILITY=Committed
970N/AMODULE_SUNTOUCH_MAN_FLAGS= -p $(MODULE_PREFIX)/sbin/
970N/A
970N/A# Where to install xdm files
970N/AMODULE_PREFIX=/usr
970N/AMODULE_PREFIX_SET=yes
970N/A
306N/A# Additional configure script options
493N/A# Only build shared greeter module, not static
306N/A# Set various paths to better match Solaris
306N/AMODULE_CONFIG_OPTS= \
561N/A --enable-shared=yes --enable-static=no \
306N/A --with-xdmconfigdir=/etc/X11/xdm \
963N/A --with-piddir=/var/run/xdm \
963N/A --with-authdir=/var/run/xdm \
963N/A --bindir=/usr/sbin \
837N/A DEF_USER_PATH=/usr/bin:/usr/X11/bin:/usr/sbin:/sbin \
837N/A DEF_SYSTEM_PATH=/usr/bin:/usr/X11/bin:/usr/sbin:/sbin
837N/A
837N/A
837N/A# Special handling while xdm is moved to /usr but other apps are still in
837N/A# /usr/X11
963N/AMODULE_CONFIG_OPTS += \
837N/A --with-xrdb='$(X11_BIN_DIR)/xrdb' \
306N/A --with-default-session=command='$(X11_BIN_DIR)/xterm -ls' \
837N/A
837N/A# Additional build & install targets
963N/AMODULE_ADD_BUILD_TARGETS=build_xdm_configs
837N/AMODULE_ADD_INSTALL_TARGETS=install_xdmshell install_xdm_configs
837N/A
837N/Ainclude ../Makefile.inc
837N/A
837N/A# Move xdmshell from default location to the place we put in our packages
837N/Ainstall_xdmshell: default_install
970N/A -rm -f $(PROTODIR)/usr/lib/X11/xdm/xdmshell
851N/A mv $(PROTODIR)/usr/sbin/xdmshell $(PROTODIR)/usr/lib/X11/xdm/xdmshell
851N/A
970N/A# Copy xdm config files from /etc to /usr for use as prototypes
970N/AXDM_CONFIG_FILES=Xaccess Xresources Xservers xdm-config
970N/AXDM_ETC_CONFIGDIR=/etc/X11/xdm
970N/AXDM_USR_CONFIGDIR=/usr/lib/X11/xdm
970N/AXCF_USR_FILES=$(XDM_CONFIG_FILES:%=$(PROTODIR)/$(XDM_USR_CONFIGDIR)/%)
970N/AXCF_ETC_SRCDIR=$(SOURCE_DIR)/config
970N/AXCF_ETC_SRCFILES=$(XDM_CONFIG_FILES:%=$(XCF_ETC_SRCDIR)/%)
970N/AXCF_USR_SRCDIR=$(SOURCE_DIR)/config/annotated
970N/AXCF_USR_SRCFILES=$(XDM_CONFIG_FILES:%=$(XCF_USR_SRCDIR)/%)
970N/A
970N/Abuild_xdm_configs: $(XCF_USR_SRCFILES)
970N/Ainstall_xdm_configs: $(XCF_USR_FILES) $(PROTODIR)/$(XDM_USR_CONFIGDIR)/README
$(XCF_ETC_SRCFILES): default_build
XCF_HEADER = %1$$s----------------------------------------------------------------------------
XCF_HEADER += \n%1$$s NOTE: The file provided in $(XDM_USR_CONFIGDIR) is a sample %2$$s
XCF_HEADER += \n%1$$s configuration file provided for your reference.
XCF_HEADER += \n%1$$s
XCF_HEADER += \n%1$$s xdm reads the actual configuration from the copies located in $(XDM_ETC_CONFIGDIR)
XCF_HEADER += \n%1$$s (unless configured otherwise by $(XDM_ETC_CONFIGDIR)/xdm-config or
XCF_HEADER += \n%1$$s a file specified via the -config command line option).
XCF_HEADER += \n%1$$s----------------------------------------------------------------------------\n
$(PROTODIR)/$(XDM_USR_CONFIGDIR) $(XCF_USR_SRCDIR):
mkdir -p $@
$(XCF_USR_FILES): $(PROTODIR)/$(XDM_USR_CONFIGDIR) $(XCF_USR_SRCFILES)
-rm -f $@
mkdir -p $(PROTODIR)/$(XDM_USR_CONFIGDIR)
@ $(START_CMD_ECHO) ; cp -p $(XCF_USR_SRCDIR)/$$(basename $@) $@
$(XCF_USR_SRCFILES): $(XCF_USR_SRCDIR) $(XCF_ETC_SRCFILES)
-rm -f $@
FILENAME=$$(basename $@) ; \
COMMENT_CHAR=$$(head -n 1 $(XCF_ETC_SRCDIR)/$${FILENAME}) ; \
printf '$(XCF_HEADER)' $${COMMENT_CHAR} $${FILENAME} > $@ ; \
cat $(XCF_ETC_SRCDIR)/$${FILENAME} >> $@
$(PROTODIR)/$(XDM_USR_CONFIGDIR)/README:$(PROTODIR)/$(XDM_USR_CONFIGDIR) config-README.txt
cp -p config-README.txt $@