Makefile revision 618
86N/A#
86N/A# CDDL HEADER START
86N/A#
86N/A# The contents of this file are subject to the terms of the
86N/A# Common Development and Distribution License (the "License").
86N/A# You may not use this file except in compliance with the License.
86N/A#
86N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
86N/A# or http://www.opensolaris.org/os/licensing.
86N/A# See the License for the specific language governing permissions
86N/A# and limitations under the License.
86N/A#
86N/A# When distributing Covered Code, include this CDDL HEADER in each
86N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
86N/A# If applicable, add the following below this CDDL HEADER, with the
86N/A# fields enclosed by brackets "[]" replaced with your own identifying
86N/A# information: Portions Copyright [yyyy] [name of copyright owner]
86N/A#
86N/A# CDDL HEADER END
86N/A#
86N/A# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
844N/A#
86N/Ainclude ../../make-rules/shared-macros.mk
86N/A
86N/ACOMPONENT_NAME= git
86N/ACOMPONENT_VERSION= 1.7.3.2
86N/ACOMPONENT_PROJECT_URL= http://git-scm.com/
618N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
86N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2
86N/ACOMPONENT_ARCHIVE_HASH= sha1:cd8d806752aa6f5716cf193585024a002e098bf4
844N/ACOMPONENT_ARCHIVE_URL= http://kernel.org/pub/software/scm/git/$(COMPONENT_ARCHIVE)
844N/A#
86N/A# man pages are a separate archive
86N/A#
86N/ACOMPONENT_ARCHIVE_1 = $(COMPONENT_NAME)-manpages-$(COMPONENT_VERSION).tar.bz2
86N/ACOMPONENT_ARCHIVE_HASH_1 = sha1:0be6fabbca523085e185711f2b80c99330f1e4ac
86N/ACOMPONENT_ARCHIVE_URL_1 = http://kernel.org/pub/software/scm/git/$(COMPONENT_ARCHIVE_1)
86N/A
86N/Ainclude ../../make-rules/prep.mk
86N/Ainclude ../../make-rules/configure.mk
86N/Ainclude ../../make-rules/ips.mk
86N/A
86N/ACONFIGURE_PREFIX = /usr
86N/ACONFIGURE_OPTIONS += --without-openssl
86N/ACONFIGURE_OPTIONS += --libexecdir=/usr/lib
86N/ACONFIGURE_OPTIONS += --with-perl=$(PERL)
86N/ACONFIGURE_OPTIONS += --with-python=$(PYTHON.32)
86N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
86N/A
86N/ACOMPONENT_BUILD_ENV+= NO_PERL_MAKEMAKER=1
181N/ACOMPONENT_INSTALL_ENV+= PERL_LIB=$(shell $(PERL) -MConfig -e 'print "$$Config{installvendorarch}"')
86N/A
88N/ACOMPONENT_TEST_TARGETS = test
88N/A
88N/A#
86N/A# This runs configure but configure doesn't generate a Makefile.
# Instead a Makefile comes with git ...
# Anyways viewpathing doesn't work.
# Therefore we need cloney to copy a set of files to build.
#
COMPONENT_PRE_CONFIGURE_ACTION = \
($(CLONEY) $(SOURCE_DIR) $(@D))
#
# Processed man pages go here.
#
DOC=$(BUILD_DIR)/Documentation
build: $(BUILD_32) $(DOC)/.manpages
install: $(INSTALL_32)
#
# tests fully pass when done in the archive directory.
# fail here; probably due to the use of cloney.
#
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