Makefile revision 1276
ac4e70ff8955669341f435bc0a734a17c01af124Mark Andrews###############################################################################
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrews#
04428429c4e689333e3ef8d19a2debeb20d4d15dMark Andrews# mkfontdir - legacy X11 core font metadata creation tool
e999539fb3e45b2617571e0e3ecd651992291701Mark Andrews#
e999539fb3e45b2617571e0e3ecd651992291701Mark Andrews# Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
2a40fdc2d34adb8a5c72a748449699666032d461Mark Andrews#
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrews# Permission is hereby granted, free of charge, to any person obtaining a
a3b428812703d22a605a9f882e71ed65f0ffdc65Mark Andrews# copy of this software and associated documentation files (the "Software"),
a9789e288ee11ae4315e27235c33bae5405bd7c4Mark Andrews# to deal in the Software without restriction, including without limitation
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# the rights to use, copy, modify, merge, publish, distribute, sublicense,
ac4e70ff8955669341f435bc0a734a17c01af124Mark Andrews# and/or sell copies of the Software, and to permit persons to whom the
068a66979695c77359e7a9181bb3f831c965b21cMark Andrews# Software is furnished to do so, subject to the following conditions:
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#
d56e188030368b835122d759ebbf8d9613c166f4Mark Andrews# The above copyright notice and this permission notice (including the next
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# paragraph) shall be included in all copies or substantial portions of the
a9789e288ee11ae4315e27235c33bae5405bd7c4Mark Andrews# Software.
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4b2cb1422c7c600fbc13b1cb06a8b4693bc11af8Mark Andrews# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c718d15a9a95054ee3c71540c02335426071fc6dMark Andrews# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
4b2cb1422c7c600fbc13b1cb06a8b4693bc11af8Mark Andrews# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# DEALINGS IN THE SOFTWARE.
efb0e886f18894a1d2489f1ad74ad14b579e11c7Mark Andrews#
efb0e886f18894a1d2489f1ad74ad14b579e11c7Mark Andrews#
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrews
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson# Package name used in tarballs
aa1d397c4736cd86540555193d71e55fa3b37b2aMark AndrewsMODULE_NAME=mkfontdir
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrews
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson# pkg(5) name we deliver the files in (override default)
aa1d397c4736cd86540555193d71e55fa3b37b2aMark AndrewsMODULE_PKGNAME=x11/font-utilities
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonMODULE_PKGNAME_SET=yes
a3b428812703d22a605a9f882e71ed65f0ffdc65Mark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# Version number (used in path names)
c718d15a9a95054ee3c71540c02335426071fc6dMark AndrewsMODULE_VERSION=1.0.7
4b2cb1422c7c600fbc13b1cb06a8b4693bc11af8Mark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# Checksums for upstream tarball
c718d15a9a95054ee3c71540c02335426071fc6dMark AndrewsTARBALL_MD5 = 18c429148c96c2079edda922a2b67632
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsTARBALL_SHA1 = 3c06dad8a5fbf7362b51fb7d6b1ab805eba40336
c069a20053d41ae299eb9457e50ea44ae9f73ed2Mark AndrewsTARBALL_SHA256= 56d52a482df130484e51fd066d1b6eda7c2c02ddbc91fe6e2be1b9c4e7306530
4b2cb1422c7c600fbc13b1cb06a8b4693bc11af8Mark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# Patches to apply to source after unpacking, in order
605bd686e437162b5ab65ac4e7c1be0bba1886ddMark AndrewsSOURCE_PATCHES =
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
3f6174bffe227be44e241a29d186add00c032ff6Mark Andrews# ARC cases that covered this module
4b2cb1422c7c600fbc13b1cb06a8b4693bc11af8Mark Andrews# LSARC/2008/009 X11R7 font server and utilities
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsMODULE_ARC_CASES = LSARC/2008/009
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrews
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson# Man pages to apply Sun footer to & attributes to list
aa1d397c4736cd86540555193d71e55fa3b37b2aMark AndrewsSUNTOUCHED_MANPAGES = man/mkfontdir.man
efb0e886f18894a1d2489f1ad74ad14b579e11c7Mark AndrewsMODULE_STABILITY=Committed
efb0e886f18894a1d2489f1ad74ad14b579e11c7Mark Andrews
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrews# Compatibility links from /usr/X11/bin to /usr/bin
91216cff91b34c9ff6e846dc23f248219cafe660Andreas GustafssonMODULE_X11_BINCOMPAT_LINKS = mkfontdir
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrews
aa1d397c4736cd86540555193d71e55fa3b37b2aMark Andrewsinclude ../Makefile.inc
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson