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