Makefile revision 261
###############################################################################
#
# Xvnc server Makefile
# Based on Fedora's vnc-4.1.2-21.fc8/vnc.spec
#
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use subject to license terms.
#
# 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,
# to whom the Software is furnished to do so, provided that the above
# copyright notice(s) and this permission notice appear in all copies of
# the Software and that both the above copyright notice(s) and this
# permission notice appear in supporting documentation.
#
# 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
# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
# Except as contained in this notice, the name of a copyright holder
# shall not be used in advertising or otherwise to promote the sale, use
# or other dealings in this Software without prior written authorization
# of the copyright holder.
#
# @(#)Makefile 1.6 07/12/13
#
# Package name used in tarballs
# Name used in server-specific rules in ../Makefile.inc
# Version number (used in path names)
# Source tarball
# Xorg server source tarball to use sources from
# Download site for source
# - Master source site doesn't allow wget downloads, so we use a mirror
#SOURCE_URL=http://www.realvnc.com/dist/$(SOURCE_TARBALL_NAME)
# Directory created by unpacking source
# Patches to apply to source after unpacking, in order
SOURCE_PATCHES = \
vnc-ipv6.patch,-p1 \
c++public.patch \
# Patches shared between Xorg & Xvnc builds
# Man pages to apply Sun footer to & attributes to list
# Common ones are here - source_gen target below has more with
# different attributes/path set
-a '{Availability, SUNWxvnc} {Interface Stability, Volatile}'
# Compiler to use
# Binary built in tree
# Merge in additional sources from Xorg tarball & sun-src directory
# Use layout from Fedora RPM so their patches apply
# This step has to be done before including common/Makefile.inc so
# that patches applied in that step work correctly.
source_gen:: $(LNDIR)
for p in $(XORG_SOURCE_PATCHES) x ; do \
if [ "$$p" != "x" ] ; then \
PATCH_CMD=`echo $$p | awk -F, '{if (NF > 1) FLAGS = $$2; else FLAGS="-p0" ; printf "gpatch -d $(XORG_SOURCE_DIR) %s < ../xorg/%s\n", FLAGS, $$1}'` ; \
echo "$${PATCH_CMD}" ; \
eval $${PATCH_CMD} ; \
fi ; \
done ; \
fi
# Merge in additional sources from Xorg tarball & sun-src directory
# Use layout from Fedora RPM so their patches apply
# This step has to be done after including common/Makefile.inc since
# it depends on files created in that stage
unix/xorg-x11-server-source/hw/vnc/ ; \
cp -p unix/xorg-x11-server-source/cfb/cfb.h \
unix/xorg-x11-server-source/hw/vnc/ ; \
-a '{Availability, SUNWvncviewer} {Interface Stability, Volatile}' \
-p /usr/bin/ unix/vncviewer/vncviewer.man )
-a '{Availability, SUNWxvnc} {Interface Stability, Volatile}' \
# Command line options to GNU autoconf configure script for vnc
# Command line options to GNU autoconf configure script for Xorg
XVNC_CPPFLAGS = \
-D__extension__=\"\" \
# Uncomment to build debug
# OPT_CFLAGS = -g
# DEFAULT_GCC_CFLAGS = -g -O3 -fno-omit-frame-pointer -Wall
# Environment variable options to GNU autoconf configure script
CONFIG_ENV += $(XVNC_CONFIG_ENV)
# Run configure scripts for vnc sources
# Run configure script for Xvnc