Makefile revision 96
7f007e36bec06aba6b3a0f84a64f2abf99edfcd8gstein#
aea283240d4222da5426169a68e307872d240044jerenkrantz# CDDL HEADER START
2a6c49cfaef5979a5a06098f3ce987cd76769409manoj#
2a6c49cfaef5979a5a06098f3ce987cd76769409manoj# The contents of this file are subject to the terms of the
2a6c49cfaef5979a5a06098f3ce987cd76769409manoj# Common Development and Distribution License (the "License").
6a01f2d5ec2024b68edd1d42056b41a88dc0a935aaron# You may not use this file except in compliance with the License.
6a01f2d5ec2024b68edd1d42056b41a88dc0a935aaron#
8721697e2aece27b0e738519329f7976c72b27bfjerenkrantz# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4a257be29f8aeab984fe5622fa69e0b2aab204d7jerenkrantz# or http://www.opensolaris.org/os/licensing.
91cacb801f6c0215b38322f6d2fc58cbfedfecfbjerenkrantz# See the License for the specific language governing permissions
91cacb801f6c0215b38322f6d2fc58cbfedfecfbjerenkrantz# and limitations under the License.
df14f0d3a5191cdd7c4bb5b03acd135d43a6f51brbb#
df14f0d3a5191cdd7c4bb5b03acd135d43a6f51brbb# When distributing Covered Code, include this CDDL HEADER in each
ab71b233b3a36489e44a7b061c48293be0b17788jwoolley# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
571760de5e60c0b459cb11be45507b923cd023eejwoolley# If applicable, add the following below this CDDL HEADER, with the
571760de5e60c0b459cb11be45507b923cd023eejwoolley# fields enclosed by brackets "[]" replaced with your own identifying
9180a5933673ffb1af633c255ceee029340f3b1erbb# information: Portions Copyright [yyyy] [name of copyright owner]
bcb6e1be6041dfeb549c8ea8d37f97ad4e90a0c3rbb#
9bd71e35f5d26d26d23fe3a677401828e842ed72wrowe# CDDL HEADER END
2900ab946a2d76b73a14cebfe2985d253f01c967stoddard#
a548c09e6a8ca1b059d0e93b5256c6ccb2b3c3cdrbb# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
a548c09e6a8ca1b059d0e93b5256c6ccb2b3c3cdrbb#
a548c09e6a8ca1b059d0e93b5256c6ccb2b3c3cdrbbinclude ../../make-rules/shared-macros.mk
b876b7bcf0ce3d232da723246d709e8dbbfe8762rbb
cf6bf6c34c936e6a6fe731dbce4a5c3c8bf8e9a3gsteinCOMPONENT_NAME= gzip
35330e0d79ceb8027223bbb8330a381b1f989d6etrawickCOMPONENT_VERSION= 1.3.5
6f6f4a4bca281779d196acbdd5c017bb90858305trawickCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
8dd4618c4709236b4ea297d7250d282e463ce2d8rbbCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
09bd86d0db1114ee23eda0a6eb76ca055877a1cftrawickCOMPONENT_ARCHIVE_HASH= sha1:843272609b9bff1bdf2770a28d498d6519901e73
2deb319e6b3de239f45c16a3e9e836d44f1f7108rbbCOMPONENT_ARCHIVE_URL= http://alpha.gnu.org/gnu/gzip/$(COMPONENT_ARCHIVE)
bd929c73ef04789b7183b840d8db6e01d03a4d86rbb
70f6f32765cfaadd6da8de6f0fea97ddd72d8fadmanojinclude ../../make-rules/prep.mk
2a6c49cfaef5979a5a06098f3ce987cd76769409manojinclude ../../make-rules/configure.mk
af4c982a7cf4515f124935f99a329744035fc699sliveinclude ../../make-rules/ips.mk
af4c982a7cf4515f124935f99a329744035fc699slive
af4c982a7cf4515f124935f99a329744035fc699sliveCONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
af4c982a7cf4515f124935f99a329744035fc699sliveCONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
af4c982a7cf4515f124935f99a329744035fc699slive
af4c982a7cf4515f124935f99a329744035fc699slive# Fix references to Solaris renamed programs (z*->gz*) in man pages, info
af4c982a7cf4515f124935f99a329744035fc699slive# pages and in wrapper scripts.
2a6c49cfaef5979a5a06098f3ce987cd76769409manojCOMPONENT_PRE_INSTALL_ACTION = \
531c23ff01a2489646f0a2029097013b328d935agstein (cd $(COMPONENT_SRC) ; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe for file in `ls *.1 *.info z*.in` ; do \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe mv $$file $$file.tmp ; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe sed -f $(COMPONENT_DIR)/renaming.sed $$file.tmp > $$file ; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe $(RM) $$file.tmp ; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe done)
2f316e524ff96c16278c4f3361bac3f69179005dwrowe
2f316e524ff96c16278c4f3361bac3f69179005dwrowe# Rename installed programs and man pages in proto dir (z*->gz*).
2f316e524ff96c16278c4f3361bac3f69179005dwroweCOMPONENT_POST_INSTALL_ACTION = \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe (for dir in $(PROTOUSRBINDIR) $(PROTOUSRSHAREMAN1DIR) ; do \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe cd $$dir; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe for zfile in `ls z*`; do ; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe mv $$zfile g$$zfile ; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe done ; \
2f316e524ff96c16278c4f3361bac3f69179005dwrowe done)
c00273b9c51c617ede471e9cb95c22420f1227fbbrianp
c00273b9c51c617ede471e9cb95c22420f1227fbbrianp# Provide missing man pages.
c00273b9c51c617ede471e9cb95c22420f1227fbbrianpGZGREP_MAN_VARIANTS+=$(PROTOUSRSHAREMAN1DIR)/gzegrep.1
c00273b9c51c617ede471e9cb95c22420f1227fbbrianpGZGREP_MAN_VARIANTS+=$(PROTOUSRSHAREMAN1DIR)/gzfgrep.1
54e1babd5a5a56c576eeeace54110150769cc916coar
54e1babd5a5a56c576eeeace54110150769cc916coar$(GZGREP_MAN_VARIANTS):
54e1babd5a5a56c576eeeace54110150769cc916coar $(RM) $@; echo ".so man1/gzgrep.1" > $@
54e1babd5a5a56c576eeeace54110150769cc916coar
54e1babd5a5a56c576eeeace54110150769cc916coarbuild: $(BUILD_32)
7fe18c15b669db9d191859695901dc4fcf3829dawrowe
7fe18c15b669db9d191859695901dc4fcf3829dawroweinstall: $(INSTALL_32) $(GZGREP_MAN_VARIANTS)
7fe18c15b669db9d191859695901dc4fcf3829dawrowe
b84f66c93f820824b1d5455181f55598b766319cwrowetest:
7fe18c15b669db9d191859695901dc4fcf3829dawrowe @echo "no tests available"
976501adbc040220270f7d1d77c4b8373033be69wrowe
976501adbc040220270f7d1d77c4b8373033be69wroweBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
976501adbc040220270f7d1d77c4b8373033be69wrowe
976501adbc040220270f7d1d77c4b8373033be69wroweinclude ../../make-rules/depend.mk
976501adbc040220270f7d1d77c4b8373033be69wrowe