7030869 move git from sfw consolidation to userland consolidation
authorCraig Mohrman <Craig.Mohrman@oracle.com>
Sun, 27 Mar 2011 13:10:55 -0700
changeset 152 f0ba422362c2
parent 151 f9e42a3f7095
child 153 b6b8b3648e20
7030869 move git from sfw consolidation to userland consolidation
components/git/Makefile
components/git/git.license
components/git/git.p5m
components/git/patches/perl_Makefile.patch
components/git/solarisman-stability
components/meta-packages/history/SUNWgit.p5m
make-rules/ips.mk
make-rules/shared-macros.mk
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/git/Makefile	Sun Mar 27 13:10:55 2011 -0700
@@ -0,0 +1,136 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
+#
+include ../../make-rules/shared-macros.mk
+
+COMPONENT_NAME=		git
+COMPONENT_VERSION=	1.7.3.2
+PERL_VERSION=		5.10.0
+COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
+COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.bz2
+COMPONENT_ARCHIVE_HASH=	sha1:cd8d806752aa6f5716cf193585024a002e098bf4
+COMPONENT_ARCHIVE_URL=	http://kernel.org/pub/software/scm/git/$(COMPONENT_ARCHIVE)
+#
+# man pages are a separate archive
+#
+COMPONENT_ARCHIVE_1 =	$(COMPONENT_NAME)-manpages-$(COMPONENT_VERSION).tar.bz2
+COMPONENT_ARCHIVE_HASH_1 = sha1:0be6fabbca523085e185711f2b80c99330f1e4ac
+COMPONENT_ARCHIVE_URL_1 = http://kernel.org/pub/software/scm/git/$(COMPONENT_ARCHIVE_1)
+
+include ../../make-rules/prep.mk
+include ../../make-rules/configure.mk
+include ../../make-rules/ips.mk
+
+CONFIGURE_PREFIX    =	/usr
+CONFIGURE_OPTIONS  +=	--without-openssl
+CONFIGURE_OPTIONS  +=	--libexecdir=/usr/lib
+CONFIGURE_OPTIONS  +=	--with-perl=/usr/perl5/$(PERL_VERSION)/bin/perl
+CONFIGURE_OPTIONS  +=	--with-python=$(PYTHON.32)
+CONFIGURE_OPTIONS  +=	CFLAGS="$(CFLAGS)"
+
+COMPONENT_BUILD_ENV+=	NO_PERL_MAKEMAKER=1
+COMPONENT_INSTALL_ENV+=	PERL_LIB=$(shell /usr/perl5/$(PERL_VERSION)/bin/perl -MConfig -e 'print "$$Config{installvendorarch}"')
+
+#
+# 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
+
+PKG_MACROS	+=	PERL_ARCH=$(shell arch)
+PKG_MACROS	+=	PERL_VERSION=$(PERL_VERSION)
+
+build:		$(BUILD_32) $(DOC)/.manpages
+
+install:	$(INSTALL_32) $(BUILD_DIR_32)/.manpages
+
+#
+# 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) $(DOC)
+	cd $(BUILD_DIR)/man1 ; for manfile in *.1; \
+	do \
+		sed -f ../../solarisman-stability $$manfile > \
+			$(DOC)/$$manfile; \
+	done
+	cd $(BUILD_DIR)/man5 ; for manfile in *.5; \
+	do \
+		name=`basename $$manfile .5`; \
+		sed 's/"5"/"4"/' $$manfile | \
+		sed -f ../../solarisman-stability > $(DOC)/$$name.4; \
+	done
+	cd $(BUILD_DIR)/man7 ; for manfile in *.7; \
+        do \
+		name=`basename $$manfile .7`; \
+		sed 's/"7"/"5"/' $$manfile | \
+		sed -f ../../solarisman-stability > $(DOC)/$$name.5; \
+	done
+	@ touch $(DOC)/.manpages
+
+#
+# install manpages per architecture
+#
+$(BUILD_DIR_32)/.manpages:
+	$(MKDIR) $(PROTOUSRSHAREMAN1DIR)
+	$(MKDIR) $(PROTOUSRSHAREMAN4DIR)
+	$(MKDIR) $(PROTOUSRSHAREMAN5DIR)
+	cd $(DOC) ; for manfile in *.1; \
+	do \
+		$(RM) $(PROTOUSRSHAREMAN1DIR)/$$manfile; \
+		$(INSTALL) -m 0444 $$manfile $(PROTOUSRSHAREMAN1DIR); \
+	done
+	cd $(DOC) ; for manfile in *.4; \
+	do \
+		$(RM) $(PROTOUSRSHAREMAN4DIR)/$$manfile; \
+		$(INSTALL) -m 0444 $$manfile $(PROTOUSRSHAREMAN4DIR); \
+	done
+	cd $(DOC) ; for manfile in *.5; \
+	do \
+		$(RM) $(PROTOUSRSHAREMAN5DIR)/$$manfile; \
+		$(INSTALL) -m 0444 $$manfile $(PROTOUSRSHAREMAN5DIR); \
+	done
+	@ touch $(BUILD_DIR_32)/.manpages
+
+
+BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
+
+#
+# tests fully pass when done in the archive directory.
+# fail here; probably due to the use of cloney.
+#
+test: build
+	@cd $(BUILD_DIR_32); $(MAKE) test
+
+include ../../make-rules/depend.mk
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/git/git.license	Sun Mar 27 13:10:55 2011 -0700
@@ -0,0 +1,349 @@
+Oracle elects to use only the GNU Lesser General Public License version
+2.1 (LGPL)/GNU General Public License version 2 (GPL) for any software
+where a choice of LGPL/GPL license versions are made available with the
+language indicating that LGPLv2.1/GPLv2 or any later version may be
+used, or where a choice of which version of the LGPL/GPL is applied is
+unspecified.  Unless specifically stated otherwise, where a choice
+exists between another license and either the GPL or the LGPL, Oracle
+chooses the other license.
+
+--------------------------------------------------------------------------------
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+	    How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/git/git.p5m	Sun Mar 27 13:10:55 2011 -0700
@@ -0,0 +1,477 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
+#
+
+<transform file path=usr/lib/git-core/.* -> default mode 0555>
+set name=pkg.fmri \
+    value=pkg:/developer/versioning/git@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
+set name=pkg.description \
+    value="Git is a free & open source, distributed version control system designed to handle everything from small to very large projects with speed and efficiency."
+set name=pkg.summary value="git - Fast Version Control System"
+set name=info.classification \
+    value="org.opensolaris.category.2008:Development/Source Code Management"
+set name=info.source_url value=$(COMPONENT_ARCHIVE_URL)
+set name=info.upstream_url value=http://git-scm.com/
+set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
+dir path=usr
+dir path=usr/bin
+dir path=usr/lib
+dir path=usr/lib/git-core
+dir path=usr/lib/python2.6
+dir path=usr/lib/python2.6/site-packages
+dir path=usr/lib/python2.6/site-packages/git_remote_helpers
+dir path=usr/lib/python2.6/site-packages/git_remote_helpers/git
+dir path=usr/perl5
+dir path=usr/perl5/vendor_perl
+dir path=usr/perl5/vendor_perl/$(PERL_VERSION)
+dir path=usr/perl5/vendor_perl/$(PERL_VERSION)/$(PERL_ARCH)-solaris-64int
+dir path=usr/share
+dir path=usr/share/git-core
+dir path=usr/share/git-core/templates
+dir path=usr/share/git-core/templates/branches
+dir path=usr/share/git-core/templates/hooks
+dir path=usr/share/git-core/templates/info
+dir path=usr/share/git-gui
+dir path=usr/share/git-gui/lib
+dir path=usr/share/git-gui/lib/msgs
+dir path=usr/share/gitk
+dir path=usr/share/gitk/lib
+dir path=usr/share/gitk/lib/msgs
+dir path=usr/share/gitweb
+dir path=usr/share/gitweb/static
+dir path=usr/share/man
+dir path=usr/share/man/man1
+dir path=usr/share/man/man4
+dir path=usr/share/man/man5
+file path=usr/bin/git
+file path=usr/bin/git-cvsserver
+file path=usr/bin/git-shell
+file path=usr/bin/git-upload-pack
+file path=usr/bin/gitk
+file path=usr/lib/git-core/git-add--interactive
+file path=usr/lib/git-core/git-am
+file path=usr/lib/git-core/git-archimport
+file path=usr/lib/git-core/git-bisect
+file path=usr/lib/git-core/git-cvsexportcommit
+file path=usr/lib/git-core/git-cvsimport
+file path=usr/lib/git-core/git-daemon
+file path=usr/lib/git-core/git-difftool
+file path=usr/lib/git-core/git-difftool--helper
+file path=usr/lib/git-core/git-fast-import
+file path=usr/lib/git-core/git-filter-branch
+file path=usr/lib/git-core/git-gui
+file path=usr/lib/git-core/git-gui--askpass
+file path=usr/lib/git-core/git-http-backend
+file path=usr/lib/git-core/git-http-fetch
+file path=usr/lib/git-core/git-http-push
+file path=usr/lib/git-core/git-imap-send
+file path=usr/lib/git-core/git-instaweb
+file path=usr/lib/git-core/git-lost-found
+file path=usr/lib/git-core/git-merge-octopus
+file path=usr/lib/git-core/git-merge-one-file
+file path=usr/lib/git-core/git-merge-resolve
+file path=usr/lib/git-core/git-mergetool
+file path=usr/lib/git-core/git-mergetool--lib
+file path=usr/lib/git-core/git-parse-remote
+file path=usr/lib/git-core/git-pull
+file path=usr/lib/git-core/git-quiltimport
+file path=usr/lib/git-core/git-rebase
+file path=usr/lib/git-core/git-rebase--interactive
+file path=usr/lib/git-core/git-relink
+file path=usr/lib/git-core/git-remote-http
+file path=usr/lib/git-core/git-remote-testgit
+file path=usr/lib/git-core/git-repack
+file path=usr/lib/git-core/git-request-pull
+file path=usr/lib/git-core/git-send-email
+file path=usr/lib/git-core/git-sh-setup
+file path=usr/lib/git-core/git-show-index
+file path=usr/lib/git-core/git-stash
+file path=usr/lib/git-core/git-submodule
+file path=usr/lib/git-core/git-svn
+file path=usr/lib/git-core/git-web--browse
+file \
+    path=usr/lib/python2.6/site-packages/git_remote_helpers-0.1.0-py2.6.egg-info
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/__init__.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/__init__.pyc
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/__init__.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/__init__.pyc
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/exporter.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/exporter.pyc
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/git.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/git.pyc
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/importer.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/importer.pyc
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/non_local.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/non_local.pyc
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/repo.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/git/repo.pyc
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/util.py
+file path=usr/lib/python2.6/site-packages/git_remote_helpers/util.pyc
+file path=usr/perl5/vendor_perl/$(PERL_VERSION)/$(PERL_ARCH)-solaris-64int/Error.pm
+file path=usr/perl5/vendor_perl/$(PERL_VERSION)/$(PERL_ARCH)-solaris-64int/Git.pm
+file path=usr/share/git-core/templates/description
+file path=usr/share/git-core/templates/hooks/applypatch-msg.sample
+file path=usr/share/git-core/templates/hooks/commit-msg.sample
+file path=usr/share/git-core/templates/hooks/post-commit.sample
+file path=usr/share/git-core/templates/hooks/post-receive.sample
+file path=usr/share/git-core/templates/hooks/post-update.sample
+file path=usr/share/git-core/templates/hooks/pre-applypatch.sample
+file path=usr/share/git-core/templates/hooks/pre-commit.sample
+file path=usr/share/git-core/templates/hooks/pre-rebase.sample
+file path=usr/share/git-core/templates/hooks/prepare-commit-msg.sample
+file path=usr/share/git-core/templates/hooks/update.sample
+file path=usr/share/git-core/templates/info/exclude
+file path=usr/share/git-gui/lib/about.tcl
+file path=usr/share/git-gui/lib/blame.tcl
+file path=usr/share/git-gui/lib/branch.tcl
+file path=usr/share/git-gui/lib/branch_checkout.tcl
+file path=usr/share/git-gui/lib/branch_create.tcl
+file path=usr/share/git-gui/lib/branch_delete.tcl
+file path=usr/share/git-gui/lib/branch_rename.tcl
+file path=usr/share/git-gui/lib/browser.tcl
+file path=usr/share/git-gui/lib/checkout_op.tcl
+file path=usr/share/git-gui/lib/choose_font.tcl
+file path=usr/share/git-gui/lib/choose_repository.tcl
+file path=usr/share/git-gui/lib/choose_rev.tcl
+file path=usr/share/git-gui/lib/class.tcl
+file path=usr/share/git-gui/lib/commit.tcl
+file path=usr/share/git-gui/lib/console.tcl
+file path=usr/share/git-gui/lib/database.tcl
+file path=usr/share/git-gui/lib/date.tcl
+file path=usr/share/git-gui/lib/diff.tcl
+file path=usr/share/git-gui/lib/encoding.tcl
+file path=usr/share/git-gui/lib/error.tcl
+file path=usr/share/git-gui/lib/git-gui.ico
+file path=usr/share/git-gui/lib/index.tcl
+file path=usr/share/git-gui/lib/logo.tcl
+file path=usr/share/git-gui/lib/merge.tcl
+file path=usr/share/git-gui/lib/mergetool.tcl
+file path=usr/share/git-gui/lib/msgs/de.msg
+file path=usr/share/git-gui/lib/msgs/el.msg
+file path=usr/share/git-gui/lib/msgs/fr.msg
+file path=usr/share/git-gui/lib/msgs/hu.msg
+file path=usr/share/git-gui/lib/msgs/it.msg
+file path=usr/share/git-gui/lib/msgs/ja.msg
+file path=usr/share/git-gui/lib/msgs/nb.msg
+file path=usr/share/git-gui/lib/msgs/ru.msg
+file path=usr/share/git-gui/lib/msgs/sv.msg
+file path=usr/share/git-gui/lib/msgs/zh_cn.msg
+file path=usr/share/git-gui/lib/option.tcl
+file path=usr/share/git-gui/lib/remote.tcl
+file path=usr/share/git-gui/lib/remote_add.tcl
+file path=usr/share/git-gui/lib/remote_branch_delete.tcl
+file path=usr/share/git-gui/lib/search.tcl
+file path=usr/share/git-gui/lib/shortcut.tcl
+file path=usr/share/git-gui/lib/spellcheck.tcl
+file path=usr/share/git-gui/lib/sshkey.tcl
+file path=usr/share/git-gui/lib/status_bar.tcl
+file path=usr/share/git-gui/lib/tclIndex
+file path=usr/share/git-gui/lib/themed.tcl
+file path=usr/share/git-gui/lib/tools.tcl
+file path=usr/share/git-gui/lib/tools_dlg.tcl
+file path=usr/share/git-gui/lib/transport.tcl
+file path=usr/share/git-gui/lib/win32.tcl
+file path=usr/share/git-gui/lib/win32_shortcut.js
+file path=usr/share/gitk/lib/msgs/de.msg
+file path=usr/share/gitk/lib/msgs/es.msg
+file path=usr/share/gitk/lib/msgs/fr.msg
+file path=usr/share/gitk/lib/msgs/hu.msg
+file path=usr/share/gitk/lib/msgs/it.msg
+file path=usr/share/gitk/lib/msgs/ja.msg
+file path=usr/share/gitk/lib/msgs/ru.msg
+file path=usr/share/gitk/lib/msgs/sv.msg
+file path=usr/share/gitweb/gitweb.cgi
+file path=usr/share/gitweb/static/git-favicon.png
+file path=usr/share/gitweb/static/git-logo.png
+file path=usr/share/gitweb/static/gitweb.css
+file path=usr/share/gitweb/static/gitweb.js
+file path=usr/share/man/man1/git-add.1
+file path=usr/share/man/man1/git-am.1
+file path=usr/share/man/man1/git-annotate.1
+file path=usr/share/man/man1/git-apply.1
+file path=usr/share/man/man1/git-archimport.1
+file path=usr/share/man/man1/git-archive.1
+file path=usr/share/man/man1/git-bisect.1
+file path=usr/share/man/man1/git-blame.1
+file path=usr/share/man/man1/git-branch.1
+file path=usr/share/man/man1/git-bundle.1
+file path=usr/share/man/man1/git-cat-file.1
+file path=usr/share/man/man1/git-check-attr.1
+file path=usr/share/man/man1/git-check-ref-format.1
+file path=usr/share/man/man1/git-checkout-index.1
+file path=usr/share/man/man1/git-checkout.1
+file path=usr/share/man/man1/git-cherry-pick.1
+file path=usr/share/man/man1/git-cherry.1
+file path=usr/share/man/man1/git-citool.1
+file path=usr/share/man/man1/git-clean.1
+file path=usr/share/man/man1/git-clone.1
+file path=usr/share/man/man1/git-commit-tree.1
+file path=usr/share/man/man1/git-commit.1
+file path=usr/share/man/man1/git-config.1
+file path=usr/share/man/man1/git-count-objects.1
+file path=usr/share/man/man1/git-cvsexportcommit.1
+file path=usr/share/man/man1/git-cvsimport.1
+file path=usr/share/man/man1/git-cvsserver.1
+file path=usr/share/man/man1/git-daemon.1
+file path=usr/share/man/man1/git-describe.1
+file path=usr/share/man/man1/git-diff-files.1
+file path=usr/share/man/man1/git-diff-index.1
+file path=usr/share/man/man1/git-diff-tree.1
+file path=usr/share/man/man1/git-diff.1
+file path=usr/share/man/man1/git-difftool.1
+file path=usr/share/man/man1/git-fast-export.1
+file path=usr/share/man/man1/git-fast-import.1
+file path=usr/share/man/man1/git-fetch-pack.1
+file path=usr/share/man/man1/git-fetch.1
+file path=usr/share/man/man1/git-filter-branch.1
+file path=usr/share/man/man1/git-fmt-merge-msg.1
+file path=usr/share/man/man1/git-for-each-ref.1
+file path=usr/share/man/man1/git-format-patch.1
+file path=usr/share/man/man1/git-fsck-objects.1
+file path=usr/share/man/man1/git-fsck.1
+file path=usr/share/man/man1/git-gc.1
+file path=usr/share/man/man1/git-get-tar-commit-id.1
+file path=usr/share/man/man1/git-grep.1
+file path=usr/share/man/man1/git-gui.1
+file path=usr/share/man/man1/git-hash-object.1
+file path=usr/share/man/man1/git-help.1
+file path=usr/share/man/man1/git-http-backend.1
+file path=usr/share/man/man1/git-http-fetch.1
+file path=usr/share/man/man1/git-http-push.1
+file path=usr/share/man/man1/git-imap-send.1
+file path=usr/share/man/man1/git-index-pack.1
+file path=usr/share/man/man1/git-init-db.1
+file path=usr/share/man/man1/git-init.1
+file path=usr/share/man/man1/git-instaweb.1
+file path=usr/share/man/man1/git-log.1
+file path=usr/share/man/man1/git-lost-found.1
+file path=usr/share/man/man1/git-ls-files.1
+file path=usr/share/man/man1/git-ls-remote.1
+file path=usr/share/man/man1/git-ls-tree.1
+file path=usr/share/man/man1/git-mailinfo.1
+file path=usr/share/man/man1/git-mailsplit.1
+file path=usr/share/man/man1/git-merge-base.1
+file path=usr/share/man/man1/git-merge-file.1
+file path=usr/share/man/man1/git-merge-index.1
+file path=usr/share/man/man1/git-merge-one-file.1
+file path=usr/share/man/man1/git-merge-tree.1
+file path=usr/share/man/man1/git-merge.1
+file path=usr/share/man/man1/git-mergetool--lib.1
+file path=usr/share/man/man1/git-mergetool.1
+file path=usr/share/man/man1/git-mktag.1
+file path=usr/share/man/man1/git-mktree.1
+file path=usr/share/man/man1/git-mv.1
+file path=usr/share/man/man1/git-name-rev.1
+file path=usr/share/man/man1/git-notes.1
+file path=usr/share/man/man1/git-pack-objects.1
+file path=usr/share/man/man1/git-pack-redundant.1
+file path=usr/share/man/man1/git-pack-refs.1
+file path=usr/share/man/man1/git-parse-remote.1
+file path=usr/share/man/man1/git-patch-id.1
+file path=usr/share/man/man1/git-peek-remote.1
+file path=usr/share/man/man1/git-prune-packed.1
+file path=usr/share/man/man1/git-prune.1
+file path=usr/share/man/man1/git-pull.1
+file path=usr/share/man/man1/git-push.1
+file path=usr/share/man/man1/git-quiltimport.1
+file path=usr/share/man/man1/git-read-tree.1
+file path=usr/share/man/man1/git-rebase.1
+file path=usr/share/man/man1/git-receive-pack.1
+file path=usr/share/man/man1/git-reflog.1
+file path=usr/share/man/man1/git-relink.1
+file path=usr/share/man/man1/git-remote-helpers.1
+file path=usr/share/man/man1/git-remote.1
+file path=usr/share/man/man1/git-repack.1
+file path=usr/share/man/man1/git-replace.1
+file path=usr/share/man/man1/git-repo-config.1
+file path=usr/share/man/man1/git-request-pull.1
+file path=usr/share/man/man1/git-rerere.1
+file path=usr/share/man/man1/git-reset.1
+file path=usr/share/man/man1/git-rev-list.1
+file path=usr/share/man/man1/git-rev-parse.1
+file path=usr/share/man/man1/git-revert.1
+file path=usr/share/man/man1/git-rm.1
+file path=usr/share/man/man1/git-send-email.1
+file path=usr/share/man/man1/git-send-pack.1
+file path=usr/share/man/man1/git-sh-setup.1
+file path=usr/share/man/man1/git-shell.1
+file path=usr/share/man/man1/git-shortlog.1
+file path=usr/share/man/man1/git-show-branch.1
+file path=usr/share/man/man1/git-show-index.1
+file path=usr/share/man/man1/git-show-ref.1
+file path=usr/share/man/man1/git-show.1
+file path=usr/share/man/man1/git-stage.1
+file path=usr/share/man/man1/git-stash.1
+file path=usr/share/man/man1/git-status.1
+file path=usr/share/man/man1/git-stripspace.1
+file path=usr/share/man/man1/git-submodule.1
+file path=usr/share/man/man1/git-svn.1
+file path=usr/share/man/man1/git-symbolic-ref.1
+file path=usr/share/man/man1/git-tag.1
+file path=usr/share/man/man1/git-tar-tree.1
+file path=usr/share/man/man1/git-unpack-file.1
+file path=usr/share/man/man1/git-unpack-objects.1
+file path=usr/share/man/man1/git-update-index.1
+file path=usr/share/man/man1/git-update-ref.1
+file path=usr/share/man/man1/git-update-server-info.1
+file path=usr/share/man/man1/git-upload-archive.1
+file path=usr/share/man/man1/git-upload-pack.1
+file path=usr/share/man/man1/git-var.1
+file path=usr/share/man/man1/git-verify-pack.1
+file path=usr/share/man/man1/git-verify-tag.1
+file path=usr/share/man/man1/git-web--browse.1
+file path=usr/share/man/man1/git-whatchanged.1
+file path=usr/share/man/man1/git-write-tree.1
+file path=usr/share/man/man1/git.1
+file path=usr/share/man/man1/gitk.1
+file path=usr/share/man/man4/gitattributes.4
+file path=usr/share/man/man4/githooks.4
+file path=usr/share/man/man4/gitignore.4
+file path=usr/share/man/man4/gitmodules.4
+file path=usr/share/man/man4/gitrepository-layout.4
+file path=usr/share/man/man5/gitcli.5
+file path=usr/share/man/man5/gitcore-tutorial.5
+file path=usr/share/man/man5/gitcvs-migration.5
+file path=usr/share/man/man5/gitdiffcore.5
+file path=usr/share/man/man5/gitglossary.5
+file path=usr/share/man/man5/gitrevisions.5
+file path=usr/share/man/man5/gittutorial-2.5
+file path=usr/share/man/man5/gittutorial.5
+file path=usr/share/man/man5/gitworkflows.5
+hardlink path=usr/bin/git-receive-pack target=git
+hardlink path=usr/bin/git-upload-archive target=git
+hardlink path=usr/lib/git-core/git target=../../bin/git
+hardlink path=usr/lib/git-core/git-add target=../../bin/git
+hardlink path=usr/lib/git-core/git-annotate target=../../bin/git
+hardlink path=usr/lib/git-core/git-apply target=../../bin/git
+hardlink path=usr/lib/git-core/git-archive target=../../bin/git
+hardlink path=usr/lib/git-core/git-bisect--helper target=../../bin/git
+hardlink path=usr/lib/git-core/git-blame target=../../bin/git
+hardlink path=usr/lib/git-core/git-branch target=../../bin/git
+hardlink path=usr/lib/git-core/git-bundle target=../../bin/git
+hardlink path=usr/lib/git-core/git-cat-file target=../../bin/git
+hardlink path=usr/lib/git-core/git-check-attr target=../../bin/git
+hardlink path=usr/lib/git-core/git-check-ref-format target=../../bin/git
+hardlink path=usr/lib/git-core/git-checkout target=../../bin/git
+hardlink path=usr/lib/git-core/git-checkout-index target=../../bin/git
+hardlink path=usr/lib/git-core/git-cherry target=../../bin/git
+hardlink path=usr/lib/git-core/git-cherry-pick target=../../bin/git
+hardlink path=usr/lib/git-core/git-citool target=git-gui
+hardlink path=usr/lib/git-core/git-clean target=../../bin/git
+hardlink path=usr/lib/git-core/git-clone target=../../bin/git
+hardlink path=usr/lib/git-core/git-commit target=../../bin/git
+hardlink path=usr/lib/git-core/git-commit-tree target=../../bin/git
+hardlink path=usr/lib/git-core/git-config target=../../bin/git
+hardlink path=usr/lib/git-core/git-count-objects target=../../bin/git
+hardlink path=usr/lib/git-core/git-cvsserver target=../../bin/git-cvsserver
+hardlink path=usr/lib/git-core/git-describe target=../../bin/git
+hardlink path=usr/lib/git-core/git-diff target=../../bin/git
+hardlink path=usr/lib/git-core/git-diff-files target=../../bin/git
+hardlink path=usr/lib/git-core/git-diff-index target=../../bin/git
+hardlink path=usr/lib/git-core/git-diff-tree target=../../bin/git
+hardlink path=usr/lib/git-core/git-fast-export target=../../bin/git
+hardlink path=usr/lib/git-core/git-fetch target=../../bin/git
+hardlink path=usr/lib/git-core/git-fetch-pack target=../../bin/git
+hardlink path=usr/lib/git-core/git-fmt-merge-msg target=../../bin/git
+hardlink path=usr/lib/git-core/git-for-each-ref target=../../bin/git
+hardlink path=usr/lib/git-core/git-format-patch target=../../bin/git
+hardlink path=usr/lib/git-core/git-fsck target=../../bin/git
+hardlink path=usr/lib/git-core/git-fsck-objects target=../../bin/git
+hardlink path=usr/lib/git-core/git-gc target=../../bin/git
+hardlink path=usr/lib/git-core/git-get-tar-commit-id target=../../bin/git
+hardlink path=usr/lib/git-core/git-grep target=../../bin/git
+hardlink path=usr/lib/git-core/git-hash-object target=../../bin/git
+hardlink path=usr/lib/git-core/git-help target=../../bin/git
+hardlink path=usr/lib/git-core/git-index-pack target=../../bin/git
+hardlink path=usr/lib/git-core/git-init target=../../bin/git
+hardlink path=usr/lib/git-core/git-init-db target=../../bin/git
+hardlink path=usr/lib/git-core/git-log target=../../bin/git
+hardlink path=usr/lib/git-core/git-ls-files target=../../bin/git
+hardlink path=usr/lib/git-core/git-ls-remote target=../../bin/git
+hardlink path=usr/lib/git-core/git-ls-tree target=../../bin/git
+hardlink path=usr/lib/git-core/git-mailinfo target=../../bin/git
+hardlink path=usr/lib/git-core/git-mailsplit target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge-base target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge-file target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge-index target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge-ours target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge-recursive target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge-subtree target=../../bin/git
+hardlink path=usr/lib/git-core/git-merge-tree target=../../bin/git
+hardlink path=usr/lib/git-core/git-mktag target=../../bin/git
+hardlink path=usr/lib/git-core/git-mktree target=../../bin/git
+hardlink path=usr/lib/git-core/git-mv target=../../bin/git
+hardlink path=usr/lib/git-core/git-name-rev target=../../bin/git
+hardlink path=usr/lib/git-core/git-notes target=../../bin/git
+hardlink path=usr/lib/git-core/git-pack-objects target=../../bin/git
+hardlink path=usr/lib/git-core/git-pack-redundant target=../../bin/git
+hardlink path=usr/lib/git-core/git-pack-refs target=../../bin/git
+hardlink path=usr/lib/git-core/git-patch-id target=../../bin/git
+hardlink path=usr/lib/git-core/git-peek-remote target=../../bin/git
+hardlink path=usr/lib/git-core/git-prune target=../../bin/git
+hardlink path=usr/lib/git-core/git-prune-packed target=../../bin/git
+hardlink path=usr/lib/git-core/git-push target=../../bin/git
+hardlink path=usr/lib/git-core/git-read-tree target=../../bin/git
+hardlink path=usr/lib/git-core/git-receive-pack target=../../bin/git
+hardlink path=usr/lib/git-core/git-reflog target=../../bin/git
+hardlink path=usr/lib/git-core/git-remote target=../../bin/git
+hardlink path=usr/lib/git-core/git-remote-ftp target=git-remote-http
+hardlink path=usr/lib/git-core/git-remote-ftps target=git-remote-http
+hardlink path=usr/lib/git-core/git-remote-https target=git-remote-http
+hardlink path=usr/lib/git-core/git-replace target=../../bin/git
+hardlink path=usr/lib/git-core/git-repo-config target=../../bin/git
+hardlink path=usr/lib/git-core/git-rerere target=../../bin/git
+hardlink path=usr/lib/git-core/git-reset target=../../bin/git
+hardlink path=usr/lib/git-core/git-rev-list target=../../bin/git
+hardlink path=usr/lib/git-core/git-rev-parse target=../../bin/git
+hardlink path=usr/lib/git-core/git-revert target=../../bin/git
+hardlink path=usr/lib/git-core/git-rm target=../../bin/git
+hardlink path=usr/lib/git-core/git-send-pack target=../../bin/git
+hardlink path=usr/lib/git-core/git-shell target=../../bin/git-shell
+hardlink path=usr/lib/git-core/git-shortlog target=../../bin/git
+hardlink path=usr/lib/git-core/git-show target=../../bin/git
+hardlink path=usr/lib/git-core/git-show-branch target=../../bin/git
+hardlink path=usr/lib/git-core/git-show-ref target=../../bin/git
+hardlink path=usr/lib/git-core/git-stage target=../../bin/git
+hardlink path=usr/lib/git-core/git-status target=../../bin/git
+hardlink path=usr/lib/git-core/git-stripspace target=../../bin/git
+hardlink path=usr/lib/git-core/git-symbolic-ref target=../../bin/git
+hardlink path=usr/lib/git-core/git-tag target=../../bin/git
+hardlink path=usr/lib/git-core/git-tar-tree target=../../bin/git
+hardlink path=usr/lib/git-core/git-unpack-file target=../../bin/git
+hardlink path=usr/lib/git-core/git-unpack-objects target=../../bin/git
+hardlink path=usr/lib/git-core/git-update-index target=../../bin/git
+hardlink path=usr/lib/git-core/git-update-ref target=../../bin/git
+hardlink path=usr/lib/git-core/git-update-server-info target=../../bin/git
+hardlink path=usr/lib/git-core/git-upload-archive target=../../bin/git
+hardlink path=usr/lib/git-core/git-upload-pack \
+    target=../../bin/git-upload-pack
+hardlink path=usr/lib/git-core/git-var target=../../bin/git
+hardlink path=usr/lib/git-core/git-verify-pack target=../../bin/git
+hardlink path=usr/lib/git-core/git-verify-tag target=../../bin/git
+hardlink path=usr/lib/git-core/git-whatchanged target=../../bin/git
+hardlink path=usr/lib/git-core/git-write-tree target=../../bin/git
+legacy pkg=SUNWgit desc="GIT - Fast Version Control System (v1.7.3.2)" \
+    name="git - Fast Version Control System"
+license git.license license=GPLv2
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/git/patches/perl_Makefile.patch	Sun Mar 27 13:10:55 2011 -0700
@@ -0,0 +1,28 @@
+--- git-1.7.3.2/perl/Makefile_orig	Thu Oct 21 20:49:16 2010
++++ git-1.7.3.2/perl/Makefile	Tue Mar 22 09:43:32 2011
+@@ -20,20 +20,18 @@
+ 	$(RM) $(makfile).old
+ 
+ ifdef NO_PERL_MAKEMAKER
+-instdir_SQ = $(subst ','\'',$(prefix)/lib)
++instdir_SQ = $(subst ','\'',$$(PERL_LIB))
+ $(makfile): ../GIT-CFLAGS Makefile
+ 	echo all: private-Error.pm Git.pm > $@
+ 	echo '	mkdir -p blib/lib' >> $@
+ 	echo '	$(RM) blib/lib/Git.pm; cp Git.pm blib/lib/' >> $@
+ 	echo '	$(RM) blib/lib/Error.pm' >> $@
+-	'$(PERL_PATH_SQ)' -MError -e 'exit($$Error::VERSION < 0.15009)' || \
+ 	echo '	cp private-Error.pm blib/lib/Error.pm' >> $@
+ 	echo install: >> $@
+-	echo '	mkdir -p "$$(DESTDIR)$(instdir_SQ)"' >> $@
+-	echo '	$(RM) "$$(DESTDIR)$(instdir_SQ)/Git.pm"; cp Git.pm "$$(DESTDIR)$(instdir_SQ)"' >> $@
+-	echo '	$(RM) "$$(DESTDIR)$(instdir_SQ)/Error.pm"' >> $@
+-	'$(PERL_PATH_SQ)' -MError -e 'exit($$Error::VERSION < 0.15009)' || \
+-	echo '	cp private-Error.pm "$$(DESTDIR)$(instdir_SQ)/Error.pm"' >> $@
++	echo '	mkdir -p "$$(DESTDIR)/$(instdir_SQ)"' >> $@
++	echo '	$(RM) "$$(DESTDIR)/$(instdir_SQ)/Git.pm"; cp Git.pm "$$(DESTDIR)/$(instdir_SQ)"' >> $@
++	echo '	$(RM) "$$(DESTDIR)/$(instdir_SQ)/Error.pm"' >> $@
++	echo '	cp private-Error.pm "$$(DESTDIR)/$(instdir_SQ)/Error.pm"' >> $@
+ 	echo instlibdir: >> $@
+ 	echo '	echo $(instdir_SQ)' >> $@
+ else
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/git/solarisman-stability	Sun Mar 27 13:10:55 2011 -0700
@@ -0,0 +1,27 @@
+1i\
+'\\" t\
+\.\\"\
+\.\\" Modified for Solaris to to add the Solaris stability classification,\
+\.\\" and to add a note about source availability.\
+\.\\"\ 
+$a\
+\.\\" Begin Solaris update\
+.SH ATTRIBUTES\
+See\
+.BR attributes (5)\
+for descriptions of the following attributes:\
+.sp\
+.TS\
+box;\
+cbp-1 | cbp-1\
+l | l .\
+ATTRIBUTE TYPE	ATTRIBUTE VALUE\
+=\
+Availability	developer/versioning/git \
+=\
+Interface Stability	Uncommitted \
+.TE \
+.PP\
+.SH NOTES\
+Source for git is available on http://opensolaris.org.\
+\.\\" End Solaris update
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/meta-packages/history/SUNWgit.p5m	Sun Mar 27 13:10:55 2011 -0700
@@ -0,0 +1,33 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
+#
+
+#
+# Legacy package information for renamed SUNWgit package
+#
+
+set name=pkg.fmri value=pkg:/[email protected],5.11-0.133
+set name=pkg.renamed value=true
+
+set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
+
+depend fmri=developer/versioning/[email protected] type=require
--- a/make-rules/ips.mk	Fri Mar 25 11:26:56 2011 -0700
+++ b/make-rules/ips.mk	Sun Mar 27 13:10:55 2011 -0700
@@ -95,7 +95,7 @@
 
 .SECONDARY:
 
-publish:		install $(BUILD_DIR)/.published-$(MACH)
+publish:		build install $(BUILD_DIR)/.published-$(MACH)
 
 sample-manifest:	$(GENERATED).p5m
 
--- a/make-rules/shared-macros.mk	Fri Mar 25 11:26:56 2011 -0700
+++ b/make-rules/shared-macros.mk	Sun Mar 27 13:10:55 2011 -0700
@@ -79,6 +79,7 @@
 USRSHAREMANDIR =	$(USRSHAREDIR)/man
 USRSHAREMAN1DIR =	$(USRSHAREMANDIR)/man1
 USRSHAREMAN3DIR =	$(USRSHAREMANDIR)/man3
+USRSHAREMAN4DIR =	$(USRSHAREMANDIR)/man4
 USRSHAREMAN5DIR =	$(USRSHAREMANDIR)/man5
 USRLIBDIR64 =	$(USRDIR)/lib/$(MACH64)
 PROTOETCDIR =	$(PROTO_DIR)/$(ETCDIR)
@@ -90,6 +91,8 @@
 PROTOUSRSHAREMANDIR =	$(PROTO_DIR)/$(USRSHAREMANDIR)
 PROTOUSRSHAREMAN1DIR =	$(PROTO_DIR)/$(USRSHAREMAN1DIR)
 PROTOUSRSHAREMAN3DIR =	$(PROTO_DIR)/$(USRSHAREMAN3DIR)
+PROTOUSRSHAREMAN4DIR =	$(PROTO_DIR)/$(USRSHAREMAN4DIR)
+PROTOUSRSHAREMAN5DIR =	$(PROTO_DIR)/$(USRSHAREMAN5DIR)
 
 
 SFWBIN =	/usr/sfw/bin