diff options
author | Simon L. B. Nielsen <simon@FreeBSD.org> | 2005-06-01 08:42:58 +0000 |
---|---|---|
committer | Simon L. B. Nielsen <simon@FreeBSD.org> | 2005-06-01 08:42:58 +0000 |
commit | 86598107565cc46aab9d842c231dc796be0d9994 (patch) | |
tree | e0ee8c8df4ba91433337f9b38709195b88688261 /devel/cogito/Makefile | |
parent | 8836ca9a6a419ffd84d14d17f38692950560bd68 (diff) | |
download | ports-86598107565cc46aab9d842c231dc796be0d9994.tar.gz ports-86598107565cc46aab9d842c231dc796be0d9994.zip |
Add cogito 0.10, cogito, GIT - the content tracker.
The GIT itself is merely an extremely fast and flexible filesystem-based
database designed to store directory trees with regard to their history.
The top layer is a SCM-like tool Cogito which enables human beings to work
with the database in a manner to a degree similar to other SCM tools (like
CVS, BitKeeper or Monotone).
PR: ports/81698
Submitted by: Michael Seyfert <michaels@sdf.lonestar.org>
Approved by: erwin (mentor)
Notes
Notes:
svn path=/head/; revision=136587
Diffstat (limited to 'devel/cogito/Makefile')
-rw-r--r-- | devel/cogito/Makefile | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/devel/cogito/Makefile b/devel/cogito/Makefile new file mode 100644 index 000000000000..f83745d06492 --- /dev/null +++ b/devel/cogito/Makefile @@ -0,0 +1,69 @@ +# Ports collection makefile for: cogito +# Date created: 31 May 2005 +# Whom: Michael Seyfert <michaels@sdf.lonestar.org> +# +# $FreeBSD$ +# + +PORTNAME= cogito +PORTVERSION= 0.10 +CATEGORIES= devel +MASTER_SITES= http://www.kernel.org/pub/software/scm/cogito/ \ + http://www.uk.kernel.org/pub/software/scm/cogito/ \ + http://www.us.kernel.org/pub/software/scm/cogito/ + +MAINTAINER= michaels@sdf.lonestar.org +COMMENT= Cogito, GIT - the content tracker + +LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl +RUN_DEPENDS= bash:${PORTSDIR}/shells/bash2 \ + rsync:${PORTSDIR}/net/rsync + +USE_BZIP2= yes +USE_GMAKE= yes + +# We set HOME to PREFIX, this is the easiest way to install in +# the proper location without patching. +MAKE_ENV+= HOME=${PREFIX} CPATH=${PREFIX}/include LIBRARY_PATH=${PREFIX}/lib +CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib + +STRIP_FILES= ${PREFIX}/bin/git-cat-file \ + ${PREFIX}/bin/git-check-files \ + ${PREFIX}/bin/git-checkout-cache \ + ${PREFIX}/bin/git-commit-tree \ + ${PREFIX}/bin/git-convert-cache \ + ${PREFIX}/bin/git-diff-cache \ + ${PREFIX}/bin/git-diff-files \ + ${PREFIX}/bin/git-diff-tree \ + ${PREFIX}/bin/git-diff-tree-helper \ + ${PREFIX}/bin/git-export \ + ${PREFIX}/bin/git-fsck-cache \ + ${PREFIX}/bin/git-http-pull \ + ${PREFIX}/bin/git-init-db \ + ${PREFIX}/bin/git-local-pull \ + ${PREFIX}/bin/git-ls-files \ + ${PREFIX}/bin/git-ls-tree \ + ${PREFIX}/bin/git-merge-base \ + ${PREFIX}/bin/git-merge-cache \ + ${PREFIX}/bin/git-mktag \ + ${PREFIX}/bin/git-read-tree \ + ${PREFIX}/bin/git-rev-list \ + ${PREFIX}/bin/git-rev-tree \ + ${PREFIX}/bin/git-rpull \ + ${PREFIX}/bin/git-rpush \ + ${PREFIX}/bin/git-tar-tree \ + ${PREFIX}/bin/git-unpack-file \ + ${PREFIX}/bin/git-update-cache \ + ${PREFIX}/bin/git-write-blob \ + ${PREFIX}/bin/git-write-tree + +post-install: + ${STRIP_CMD} ${STRIP_FILES} + ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/contrib/gitfeedmaillist.sh ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/README ${DOCSDIR} + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/Documentation/core-git.txt ${DOCSDIR} +.endif + +.include <bsd.port.mk> |