Makefile revision 1276
5cd4555ad444fd391002ae32450572054369fd42Rob Austein###############################################################################
5cd4555ad444fd391002ae32450572054369fd42Rob Austein#
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# oclock - round shaped window clock application
d4ef65050feac78554addf6e16a06c6e2e0bd331Brian Wellington#
c1a883f2e04d94e99c433b1f6cfd0c0338f4ed85Mark Andrews# Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
d4ef65050feac78554addf6e16a06c6e2e0bd331Brian Wellington# Permission is hereby granted, free of charge, to any person obtaining a
ec5347e2c775f027573ce5648b910361aa926c01Automatic Updater# copy of this software and associated documentation files (the "Software"),
d4ef65050feac78554addf6e16a06c6e2e0bd331Brian Wellington# to deal in the Software without restriction, including without limitation
d4ef65050feac78554addf6e16a06c6e2e0bd331Brian Wellington# the rights to use, copy, modify, merge, publish, distribute, sublicense,
d4ef65050feac78554addf6e16a06c6e2e0bd331Brian Wellington# and/or sell copies of the Software, and to permit persons to whom the
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# Software is furnished to do so, subject to the following conditions:
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# The above copyright notice and this permission notice (including the next
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# paragraph) shall be included in all copies or substantial portions of the
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# Software.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
d4ef65050feac78554addf6e16a06c6e2e0bd331Brian Wellington# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
f5d30e2864e048a42c4dc1134993ae7efdb5d6c3Mark Andrews# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
6098d364b690cb9dabf96e9664c4689c8559bd2eMark Andrews# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
b5ad6dfea4cc3e7d1d322ac99f1e5a31096837c4Mark Andrews# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# DEALINGS IN THE SOFTWARE.
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington#
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington#
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# Package name used in tarballs
0b062f4990db5cc6db2fe3398926f71b92a67407Brian WellingtonMODULE_NAME=oclock
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# Package classification (override default)
0b062f4990db5cc6db2fe3398926f71b92a67407Brian WellingtonMODULE_PKGCLASS=Applications/Accessories
0b062f4990db5cc6db2fe3398926f71b92a67407Brian WellingtonMODULE_PKGCLASS_SET=yes
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# Version number (used in path names)
0b062f4990db5cc6db2fe3398926f71b92a67407Brian WellingtonMODULE_VERSION=1.0.3
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# Checksums for upstream tarball
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinTARBALL_MD5 = f73ad0fa3fda1efe1036e1f48f8a3953
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinTARBALL_SHA1 = 1aa05864019a55610aca5471c5206858dde9a34a
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinTARBALL_SHA256= 54f5fb85f5828705683f457e559fb18753332db15ae82da561b0ae5a63915091
c1a883f2e04d94e99c433b1f6cfd0c0338f4ed85Mark Andrews
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# Patches to apply to source after unpacking, in order
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinSOURCE_PATCHES =
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# Man pages to apply Sun footer to & attributes to list
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinSUNTOUCHED_MANPAGES = man/oclock.man
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinMODULE_STABILITY=Committed
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
f5d30e2864e048a42c4dc1134993ae7efdb5d6c3Mark Andrews# Compatibility links from /usr/X11/bin to /usr/bin
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinMODULE_X11_BINCOMPAT_LINKS = oclock
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austeininclude ../Makefile.inc
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington