Makefile revision 1059
425N/A###############################################################################
425N/A#
1276N/A# Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
425N/A#
1345N/A# Permission is hereby granted, free of charge, to any person obtaining a
425N/A# copy of this software and associated documentation files (the "Software"),
425N/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
919N/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
919N/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
919N/A# DEALINGS IN THE SOFTWARE.
919N/A#
919N/A
425N/A# Package name used in tarballs
425N/AMODULE_NAME=mesa-demos
425N/A
425N/A# Package metadata
493N/AUPSTREAM = The Mesa 3-D Graphics Library
425N/AUPSTREAM_URL = http://mesa3d.org/
425N/AUPSTREAM_SET = yes
1276N/A
425N/A# pkg(5) name we deliver the files in (override default)
911N/AMODULE_PKGNAME=x11/demo/mesa-demos
1276N/AMODULE_PKGNAME_SET=yes
1276N/A
1276N/A# Version number (used in path names)
911N/AMODULE_VERSION=8.0.1
425N/A
1276N/A# Checksums for upstream tarball
1233N/ATARBALL_MD5 = 320c2a4b6edc6faba35d9cb1e2a30bf4
1345N/ATARBALL_SHA1 = 8fc77885ae20f3b9cc22f65045a7573befbde2eb
425N/A
425N/A# Download site for source
493N/ASOURCE_URL=ftp://ftp.freedesktop.org/pub/mesa/demos/$(MODULE_VERSION)/$(SOURCE_TARBALL_NAME)
425N/ASOURCE_URL_SET=yes
425N/A
425N/A# Patches to apply to source after unpacking, in order
425N/ASOURCE_PATCHES = glew-config.patch,-p1
425N/A
425N/A# Need to regenerate autoconf files after applying glew-config.patch
493N/AAUTORECONF=yes
425N/A
425N/A# Binaries built in tree
425N/ADEMOS_DIR=$(SOURCE_DIR)/src/xdemos
425N/AGLXGEARS_BIN=$(DEMOS_DIR)/glxgears
425N/AGLXINFO_BIN=$(DEMOS_DIR)/glxinfo
970N/A
970N/A# Override some configure checks for libraries we don't need in the subset
970N/A# we build & ship - have to set them to be non-empty strings though or
425N/A# configure will fail.
MODULE_CONFIG_ENV = \
GLEW_CFLAGS="-I-have-no-GLEW-" GLEW_LIBS="-I-have-no-GLEW-"
# What to build
BUILD_TARGETS= $(GLXGEARS_BIN) $(GLXINFO_BIN)
BUILD_TARGETS_SET=yes
# What to install
INSTALL_TARGETS= install_glxgears install_glxinfo install_man
INSTALL_TARGETS_SET=yes
# Compatibility links from /usr/X11/bin to /usr/bin
MODULE_X11_BINCOMPAT_LINKS = glxinfo
### Include common rulesets
include ../Makefile.inc
### Rules specific to this directory:
# Only care about building X demos
DEMO_LDFLAGS=$(PROG_LDFLAGS) -L$(PROTODIR)$(X11_LIB_DIR)$(ARCHLIBSUBDIR) \
-L$(PROTODIR)$(X11_SERVERLIBS_DIR)$(ARCHLIBSUBDIR)
# Flags passed on make command line when building
MODULE_BUILD_MAKEFLAGS = LDFLAGS="$(DEMO_LDFLAGS)"
# Build Mesa demos
$(GLXGEARS_BIN): $(UNPACK_TARGET) $(CONFIGURE_TARGETS)
(cd $(DEMOS_DIR) && \
$(MODULE_MAKE) $(MAKEFLAGS) $(DEFAULT_BUILD_MAKEFLAGS) glxgears )
$(GLXINFO_BIN): $(UNPACK_TARGET) $(CONFIGURE_TARGETS)
(cd $(DEMOS_DIR) && \
$(MODULE_MAKE) $(MAKEFLAGS) $(DEFAULT_BUILD_MAKEFLAGS) glxinfo )
# For testing - we don't ship the rest of these
all-xdemos_gen: $(UNPACK_TARGET) $(CONFIGURE_TARGETS)
(cd $(DEMOS_DIR) && \
$(MODULE_MAKE) $(MAKEFLAGS) $(DEFAULT_BUILD_MAKEFLAGS))
all-xdemos:
$(MAKE) $(MAKEFLAGS) $(BUILD_32_FLAGS) all-xdemos_gen
DESTDIR=$(PROTODIR)
install_glxgears: $(GLXGEARS_BIN)
mkdir -p $(DESTDIR)$(MODULE_PREFIX)/bin
cp -pf $(GLXGEARS_BIN) $(DESTDIR)$(MODULE_PREFIX)/bin
install_glxinfo: $(GLXINFO_BIN)
mkdir -p $(DESTDIR)$(MODULE_PREFIX)/bin
cp -pf $(GLXINFO_BIN) $(DESTDIR)$(MODULE_PREFIX)/bin
install_man:
mkdir -p $(DESTDIR)$(MODULE_PREFIX)/share/man/man1
cp -pf glxgears.1 glxinfo.1 $(DESTDIR)$(MODULE_PREFIX)/share/man/man1