diff options
author | wiz <wiz> | 2013-09-09 13:56:27 +0000 |
---|---|---|
committer | wiz <wiz> | 2013-09-09 13:56:27 +0000 |
commit | 56b113324a83f4fd07167bdaf1d048d0c4f7c79f (patch) | |
tree | 8ec9a0a0dcff58b39747499f5405a2eba0966a12 /devel/git | |
parent | c8a242aadc7473803bf89463fcf9865c60e6baf7 (diff) | |
download | pkgsrc-56b113324a83f4fd07167bdaf1d048d0c4f7c79f.tar.gz |
Reimport scmgit as git-1.8.4 in devel/git.
This package is a meta package, collecting the components normally
expected to be installed for the GIT distributed version control
suite (the tool itself, the tk-based browser gitk, and the man pages).
Diffstat (limited to 'devel/git')
-rw-r--r-- | devel/git/DESCR | 3 | ||||
-rw-r--r-- | devel/git/Makefile | 20 | ||||
-rw-r--r-- | devel/git/Makefile.common | 30 | ||||
-rw-r--r-- | devel/git/Makefile.version | 6 |
4 files changed, 59 insertions, 0 deletions
diff --git a/devel/git/DESCR b/devel/git/DESCR new file mode 100644 index 00000000000..3f4885afcf5 --- /dev/null +++ b/devel/git/DESCR @@ -0,0 +1,3 @@ +This package is a meta package, collecting the components normally +expected to be installed for the GIT distributed version control +suite (the tool itself, the tk-based browser gitk, and the man pages). diff --git a/devel/git/Makefile b/devel/git/Makefile new file mode 100644 index 00000000000..a16f9b3e839 --- /dev/null +++ b/devel/git/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2013/09/09 13:56:27 wiz Exp $ + +.include "../../devel/git/Makefile.version" + +DISTNAME= # empty +PKGNAME= git-${GIT_VERSION} +CATEGORIES+= meta-pkgs devel +DISTFILES= # empty +MASTER_SITES= http://www.kernel.org/pub/software/scm/git/ + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= GIT version control suite meta-package + +META_PACKAGE= yes + +DEPENDS+= git-base>=${GIT_VERSION}:../../devel/git-base +DEPENDS+= git-docs>=${GIT_VERSION}:../../devel/git-docs +DEPENDS+= git-gitk>=${GIT_VERSION}:../../devel/git-gitk + +.include "../../mk/bsd.pkg.mk" diff --git a/devel/git/Makefile.common b/devel/git/Makefile.common new file mode 100644 index 00000000000..3a6dfc36765 --- /dev/null +++ b/devel/git/Makefile.common @@ -0,0 +1,30 @@ +# $NetBSD: Makefile.common,v 1.1 2013/09/09 13:56:27 wiz Exp $ +# +# used by devel/git-base/Makefile +# used by devel/git-docs/Makefile +# used by devel/git-gitk/Makefile + +.include "../../devel/git/Makefile.version" + +DISTNAME= git-${GIT_VERSION} +CATEGORIES= devel scm +MASTER_SITES?= http://git-core.googlecode.com/files/ + +MAINTAINER?= pkgsrc-users@NetBSD.org +HOMEPAGE?= http://git-scm.com/ +LICENSE= gnu-gpl-v2 + +.include "../../mk/bsd.fast.prefs.mk" + +PATCHDIR= ${.CURDIR}/../../devel/git-base/patches +DISTINFO_FILE= ${.CURDIR}/../../devel/git-base/distinfo + +USE_TOOLS+= gmake tar sh + +PKG_SYSCONFSUBDIR= git + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-shell=${SH:Q} +CONFIGURE_ARGS+= TAR=${TAR:Q} +CONFIGURE_ARGS+= --mandir=${${PREFIX}/${PKGMANDIR}:L:Q} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} diff --git a/devel/git/Makefile.version b/devel/git/Makefile.version new file mode 100644 index 00000000000..8dd8ff1b4ed --- /dev/null +++ b/devel/git/Makefile.version @@ -0,0 +1,6 @@ +# $NetBSD: Makefile.version,v 1.1 2013/09/09 13:56:27 wiz Exp $ +# +# used by devel/git/Makefile.common +# used by www/gitweb/Makefile + +GIT_VERSION= 1.8.4 |