Makefile revision 1422
1366N/A###############################################################################
1366N/A#
1422N/A# libXv - Xlib-based client library for XVideo extension protocol
1366N/A#
1366N/A# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
1366N/A#
1366N/A# Permission is hereby granted, free of charge, to any person obtaining a
1366N/A# copy of this software and associated documentation files (the "Software"),
1366N/A# to deal in the Software without restriction, including without limitation
1366N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
1366N/A# and/or sell copies of the Software, and to permit persons to whom the
1366N/A# Software is furnished to do so, subject to the following conditions:
1366N/A#
1366N/A# The above copyright notice and this permission notice (including the next
1366N/A# paragraph) shall be included in all copies or substantial portions of the
1366N/A# Software.
1366N/A#
1366N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1366N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1366N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1366N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1366N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1366N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1366N/A# DEALINGS IN THE SOFTWARE.
1366N/A#
1366N/A#
1366N/A
1366N/A# Package name used in tarballs
1366N/AMODULE_NAME=libXv
1366N/A
1366N/A# Version number (used in path names)
1366N/AMODULE_VERSION=1.0.10
1366N/A
1366N/A# Checksums for upstream tarball
1366N/ATARBALL_MD5 = e0af49d7d758b990e6fef629722d4aca
1366N/ATARBALL_SHA1 = 1e93df036bb2bb01e85b7c8886760affb33b8e88
1366N/ATARBALL_SHA256= 55fe92f8686ce8612e2c1bfaf58c057715534419da700bda8d517b1d97914525
1366N/A
1366N/A# Patches to apply to source after unpacking, in order
1366N/ASOURCE_PATCHES = lintlib.patch,-p1
1366N/A
1366N/A# Regenerate Makefile.in's from Makefile.am's after applying lintlib.patch
1366N/AAUTORECONF=yes
1366N/A
1366N/A# Library name
1366N/ALIBNAME=Xv
1366N/A
1366N/A# Man pages to apply Sun footer to & attributes to list
1366N/ASUNTOUCHED_MANPAGES=man/*.man
1366N/AMODULE_STABILITY=Volatile
1366N/ALIB_MAN_SUFFIX=3xv
1366N/A
1366N/A# pkg-config files that need to have -R added
1366N/AFIX_PC_FILES=xv.pc.in
1366N/A
1366N/A# Compatibility links from /usr/X11/lib to /usr/lib
1366N/AMODULE_X11_LIBCOMPAT_LINKS = libXv.so libXv.so.1
1366N/A
1366N/Ainclude ../Makefile.inc
1422N/A