Makefile revision 683
203N/A#
203N/A# CDDL HEADER START
203N/A#
203N/A# The contents of this file are subject to the terms of the
203N/A# Common Development and Distribution License (the "License").
203N/A# You may not use this file except in compliance with the License.
203N/A#
203N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
203N/A# or http://www.opensolaris.org/os/licensing.
203N/A# See the License for the specific language governing permissions
203N/A# and limitations under the License.
203N/A#
203N/A# When distributing Covered Code, include this CDDL HEADER in each
203N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
203N/A# If applicable, add the following below this CDDL HEADER, with the
203N/A# fields enclosed by brackets "[]" replaced with your own identifying
203N/A# information: Portions Copyright [yyyy] [name of copyright owner]
203N/A#
203N/A# CDDL HEADER END
203N/A#
203N/A# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
203N/A#
203N/Ainclude ../../make-rules/shared-macros.mk
203N/A
203N/ACOMPONENT_NAME= git
203N/ACOMPONENT_VERSION= 1.7.3.2
203N/ACOMPONENT_PROJECT_URL= http://git-scm.com/
203N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
203N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2
203N/ACOMPONENT_ARCHIVE_HASH= sha1:cd8d806752aa6f5716cf193585024a002e098bf4
203N/ACOMPONENT_ARCHIVE_URL= http://kernel.org/pub/software/scm/git/$(COMPONENT_ARCHIVE)
203N/A#
203N/A# man pages are a separate archive
203N/A#
203N/ACOMPONENT_ARCHIVE_1 = $(COMPONENT_NAME)-manpages-$(COMPONENT_VERSION).tar.bz2
203N/ACOMPONENT_ARCHIVE_HASH_1 = sha1:0be6fabbca523085e185711f2b80c99330f1e4ac
203N/ACOMPONENT_ARCHIVE_URL_1 = http://kernel.org/pub/software/scm/git/$(COMPONENT_ARCHIVE_1)
206N/A
203N/Ainclude ../../make-rules/prep.mk
203N/Ainclude ../../make-rules/configure.mk
203N/Ainclude ../../make-rules/ips.mk
203N/A
203N/ACONFIGURE_PREFIX = /usr
203N/ACONFIGURE_OPTIONS += --without-openssl
203N/ACONFIGURE_OPTIONS += --libexecdir=/usr/lib
203N/ACONFIGURE_OPTIONS += --with-perl=$(PERL)
203N/ACONFIGURE_OPTIONS += --with-python=$(PYTHON.32)
203N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
203N/A
203N/ACOMPONENT_BUILD_ENV+= NO_PERL_MAKEMAKER=1
203N/ACOMPONENT_INSTALL_ENV+= PERL_LIB=$(shell $(PERL) -MConfig -e 'print "$$Config{installvendorarch}"')
203N/ACOMPONENT_INSTALL_ARGS+= INSTALL="$(INSTALL)"
203N/A
203N/ACOMPONENT_TEST_TARGETS = test
203N/A
203N/A#
203N/A# This runs configure but configure doesn't generate a Makefile.
203N/A# Instead a Makefile comes with git ...
203N/A# Anyways viewpathing doesn't work.
203N/A# Therefore we need cloney to copy a set of files to build.
203N/A#
203N/ACOMPONENT_PRE_CONFIGURE_ACTION = \
203N/A ($(CLONEY) $(SOURCE_DIR) $(@D))
203N/A
206N/A#
203N/A# Processed man pages go here.
203N/A#
203N/ADOC=$(BUILD_DIR)/Documentation
203N/A
203N/Abuild: $(BUILD_32) $(DOC)/.manpages
203N/A
203N/Ainstall: $(INSTALL_32)
203N/A
203N/A#
203N/A# tests fully pass when done in the archive directory.
203N/A# fail here; probably due to the use of cloney.
203N/A#
test: $(TEST_32)
#
# I know. It's ugly.
# But these man pages come in a separate archive with no Makefile
# and Solaris likes some of them moved around hence we'll just
# do it manually here.
#
$(DOC)/.manpages:
cd $(BUILD_DIR) ; $(UNPACK) $(UNPACK_ARGS) ../$(COMPONENT_ARCHIVE_1)
$(MKDIR) $(@D)
cd $(BUILD_DIR)/man1 ; for manfile in *.1; \
do \
name=`basename $$manfile .1`; \
sed -e 's/\\m\[blue\]//g' -e 's/\\m\[\]//g' $$manfile > $(DOC)/$$name.1; \
done
cd $(BUILD_DIR)/man5 ; for manfile in *.5; \
do \
name=`basename $$manfile .5`; \
sed -e 's/\\m\[blue\]//g' -e 's/\\m\[\]//g' -e 's/"5"/"4"/' $$manfile > $(DOC)/$$name.4; \
done
cd $(BUILD_DIR)/man7 ; for manfile in *.7; \
do \
name=`basename $$manfile .7`; \
sed -e 's/\\m\[blue\]//g' -e 's/\\m\[\]//g' -e 's/"7"/"5"/' $$manfile > $(DOC)/$$name.5; \
done
$(TOUCH) $@
BUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
include ../../make-rules/depend.mk